ViennaPS 3.4.0__pp38-pypy38_pp73-win_amd64.whl → 3.5.0__pp38-pypy38_pp73-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ViennaPS might be problematic. Click here for more details.
- {viennaps-3.4.0.dist-info → viennaps-3.5.0.dist-info}/METADATA +3 -3
- viennaps-3.5.0.dist-info/RECORD +63 -0
- viennaps.libs/embree4.dll +0 -0
- viennaps.libs/embree_avx.lib +0 -0
- viennaps.libs/embree_avx2.lib +0 -0
- viennaps.libs/embree_sse42.lib +0 -0
- viennaps.libs/lexers.lib +0 -0
- viennaps.libs/math.lib +0 -0
- viennaps.libs/simd.lib +0 -0
- viennaps.libs/sys.lib +0 -0
- viennaps.libs/tasking.lib +0 -0
- viennaps.libs/tbb12.dll +0 -0
- viennaps.libs/vtkCommonComputationalGeometry-9.3.dll +0 -0
- viennaps.libs/vtkCommonCore-9.3.dll +0 -0
- viennaps.libs/vtkCommonDataModel-9.3.dll +0 -0
- viennaps.libs/vtkCommonExecutionModel-9.3.dll +0 -0
- viennaps.libs/vtkCommonMath-9.3.dll +0 -0
- viennaps.libs/vtkCommonMisc-9.3.dll +0 -0
- viennaps.libs/vtkCommonSystem-9.3.dll +0 -0
- viennaps.libs/vtkCommonTransforms-9.3.dll +0 -0
- viennaps.libs/vtkFiltersCore-9.3.dll +0 -0
- viennaps.libs/vtkFiltersGeneral-9.3.dll +0 -0
- viennaps.libs/vtkFiltersGeometry-9.3.dll +0 -0
- viennaps.libs/vtkFiltersVerdict-9.3.dll +0 -0
- viennaps.libs/vtkIOCore-9.3.dll +0 -0
- viennaps.libs/vtkIOXML-9.3.dll +0 -0
- viennaps.libs/vtkIOXMLParser-9.3.dll +0 -0
- viennaps.libs/vtkdoubleconversion-9.3.dll +0 -0
- viennaps.libs/vtkexpat-9.3.dll +0 -0
- viennaps.libs/vtkfmt-9.3.dll +0 -0
- viennaps.libs/vtkkissfft-9.3.dll +0 -0
- viennaps.libs/vtkloguru-9.3.dll +0 -0
- viennaps.libs/vtklz4-9.3.dll +0 -0
- viennaps.libs/vtklzma-9.3.dll +0 -0
- viennaps.libs/vtkpugixml-9.3.dll +0 -0
- viennaps.libs/vtksys-9.3.dll +0 -0
- viennaps.libs/vtkverdict-9.3.dll +0 -0
- viennaps.libs/vtkzlib-9.3.dll +0 -0
- viennaps2d/Release/viennaps2d.cp310-win_amd64.pyd +0 -0
- viennaps2d/Release/viennaps2d.cp311-win_amd64.pyd +0 -0
- viennaps2d/Release/viennaps2d.cp312-win_amd64.pyd +0 -0
- viennaps2d/Release/viennaps2d.pypy37-pp73-win_amd64.pyd +0 -0
- viennaps2d/Release/viennaps2d.pypy38-pp73-win_amd64.pyd +0 -0
- viennaps2d/__init__.py +15 -2
- viennaps2d/viennaps2d.pyi +225 -87
- viennaps2d/viennaps2d.pypy38-pp73-win_amd64.pyd +0 -0
- viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd +0 -0
- viennaps3d/Release/viennaps3d.cp311-win_amd64.pyd +0 -0
- viennaps3d/Release/viennaps3d.cp312-win_amd64.pyd +0 -0
- viennaps3d/Release/viennaps3d.pypy37-pp73-win_amd64.pyd +0 -0
- viennaps3d/Release/viennaps3d.pypy38-pp73-win_amd64.pyd +0 -0
- viennaps3d/__init__.py +15 -2
- viennaps3d/viennaps3d/gpu.pyi +62 -11
- viennaps3d/viennaps3d.pyi +202 -92
- viennaps3d/viennaps3d.pypy38-pp73-win_amd64.pyd +0 -0
- viennaps-3.4.0.dist-info/RECORD +0 -63
- {viennaps-3.4.0.dist-info → viennaps-3.5.0.dist-info}/WHEEL +0 -0
- {viennaps-3.4.0.dist-info → viennaps-3.5.0.dist-info}/licenses/LICENSE +0 -0
|
Binary file
|
viennaps3d/__init__.py
CHANGED
|
@@ -24,6 +24,15 @@ def _windows_dll_path():
|
|
|
24
24
|
os.add_dll_directory(path)
|
|
25
25
|
os.environ["PATH"] = path + os.pathsep + os.environ["PATH"]
|
|
26
26
|
|
|
27
|
+
def _module_ptx_path():
|
|
28
|
+
from importlib.util import find_spec
|
|
29
|
+
import os
|
|
30
|
+
|
|
31
|
+
spec = find_spec("viennaps3d")
|
|
32
|
+
install_path = os.path.dirname(os.path.abspath(spec.origin))
|
|
33
|
+
return os.path.join(install_path, "ptx")
|
|
34
|
+
|
|
35
|
+
|
|
27
36
|
if sys.platform == "win32":
|
|
28
37
|
_windows_dll_path()
|
|
29
38
|
|
|
@@ -32,6 +41,9 @@ from viennals3d import IntegrationSchemeEnum as IntegrationScheme
|
|
|
32
41
|
from viennals3d import BoundaryConditionEnum as BoundaryType
|
|
33
42
|
from .viennaps3d import *
|
|
34
43
|
|
|
44
|
+
if D == 3:
|
|
45
|
+
ptxPath = _module_ptx_path()
|
|
46
|
+
|
|
35
47
|
# Config file reader helper function
|
|
36
48
|
def ReadConfigFile(fileName: str):
|
|
37
49
|
"""Read a config file in the ViennaPS standard config file format.
|
|
@@ -39,7 +51,7 @@ def ReadConfigFile(fileName: str):
|
|
|
39
51
|
Parameters
|
|
40
52
|
----------
|
|
41
53
|
fileName: str
|
|
42
|
-
|
|
54
|
+
Name of the config file.
|
|
43
55
|
|
|
44
56
|
Returns
|
|
45
57
|
-------
|
|
@@ -60,7 +72,8 @@ def ReadConfigFile(fileName: str):
|
|
|
60
72
|
|
|
61
73
|
try:
|
|
62
74
|
val = float(par_value)
|
|
63
|
-
except:
|
|
75
|
+
except:
|
|
76
|
+
val = par_value
|
|
64
77
|
|
|
65
78
|
par_dict[par_name] = val
|
|
66
79
|
|
viennaps3d/viennaps3d/gpu.pyi
CHANGED
|
@@ -11,12 +11,34 @@ class Context:
|
|
|
11
11
|
|
|
12
12
|
class MultiParticleProcess(ProcessModel):
|
|
13
13
|
def __init__(self) -> None: ...
|
|
14
|
-
def addIonParticle(
|
|
14
|
+
def addIonParticle(
|
|
15
|
+
self,
|
|
16
|
+
sourcePower: float,
|
|
17
|
+
thetaRMin: float = ...,
|
|
18
|
+
thetaRMax: float = ...,
|
|
19
|
+
minAngle: float = ...,
|
|
20
|
+
B_sp: float = ...,
|
|
21
|
+
meanEnergy: float = ...,
|
|
22
|
+
sigmaEnergy: float = ...,
|
|
23
|
+
thresholdEnergy: float = ...,
|
|
24
|
+
inflectAngle: float = ...,
|
|
25
|
+
n: float = ...,
|
|
26
|
+
label: str = ...,
|
|
27
|
+
) -> None: ...
|
|
15
28
|
@overload
|
|
16
|
-
def addNeutralParticle(
|
|
29
|
+
def addNeutralParticle(
|
|
30
|
+
self, stickingProbability: float, label: str = ...
|
|
31
|
+
) -> None: ...
|
|
17
32
|
@overload
|
|
18
|
-
def addNeutralParticle(
|
|
19
|
-
|
|
33
|
+
def addNeutralParticle(
|
|
34
|
+
self,
|
|
35
|
+
materialSticking: dict[viennaps3d.viennaps3d.Material, float],
|
|
36
|
+
defaultStickingProbability: float = ...,
|
|
37
|
+
label: str = ...,
|
|
38
|
+
) -> None: ...
|
|
39
|
+
def setRateFunction(
|
|
40
|
+
self, arg0: Callable[[list[float], viennaps3d.viennaps3d.Material], float]
|
|
41
|
+
) -> None: ...
|
|
20
42
|
|
|
21
43
|
class Path:
|
|
22
44
|
def __init__(self, arg0: str) -> None: ...
|
|
@@ -25,7 +47,13 @@ class Process:
|
|
|
25
47
|
@overload
|
|
26
48
|
def __init__(self, context: Context) -> None: ...
|
|
27
49
|
@overload
|
|
28
|
-
def __init__(
|
|
50
|
+
def __init__(
|
|
51
|
+
self,
|
|
52
|
+
context: Context,
|
|
53
|
+
domain: viennaps3d.viennaps3d.Domain,
|
|
54
|
+
model: ProcessModel,
|
|
55
|
+
duration: float,
|
|
56
|
+
) -> None: ...
|
|
29
57
|
def apply(self) -> None: ...
|
|
30
58
|
def calculateFlux(self) -> viennals3d.viennals3d.Mesh: ...
|
|
31
59
|
def disableAdvectionVelocityOutput(self) -> None: ...
|
|
@@ -35,26 +63,49 @@ class Process:
|
|
|
35
63
|
def getAdvectionParameters(self) -> viennaps3d.viennaps3d.AdvectionParameters: ...
|
|
36
64
|
def getProcessDuration(self) -> float: ...
|
|
37
65
|
def getRayTracingParameters(self) -> viennaps3d.viennaps3d.RayTracingParameters: ...
|
|
38
|
-
def setAdvectionParameters(
|
|
66
|
+
def setAdvectionParameters(
|
|
67
|
+
self, arg0: viennaps3d.viennaps3d.AdvectionParameters
|
|
68
|
+
) -> None: ...
|
|
39
69
|
def setDomain(self, arg0: viennaps3d.viennaps3d.Domain) -> None: ...
|
|
40
70
|
def setIntegrationScheme(self, arg0) -> None: ...
|
|
41
71
|
def setMaxCoverageInitIterations(self, arg0: int) -> None: ...
|
|
42
72
|
def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
|
|
43
73
|
def setProcessDuration(self, arg0: float) -> None: ...
|
|
44
74
|
def setProcessModel(self, arg0: ProcessModel) -> None: ...
|
|
45
|
-
def setRayTracingParameters(
|
|
75
|
+
def setRayTracingParameters(
|
|
76
|
+
self, arg0: viennaps3d.viennaps3d.RayTracingParameters
|
|
77
|
+
) -> None: ...
|
|
46
78
|
def setTimeStepRatio(self, arg0: float) -> None: ...
|
|
47
79
|
|
|
48
80
|
class ProcessModel:
|
|
49
81
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
50
82
|
|
|
51
83
|
class SF6O2Etching(viennaps3d.viennaps3d.ProcessModel):
|
|
52
|
-
def __init__(
|
|
84
|
+
def __init__(
|
|
85
|
+
self, parameters: viennaps3d.viennaps3d.PlasmaEtchingParameters
|
|
86
|
+
) -> None: ...
|
|
53
87
|
|
|
54
88
|
class SingleParticleProcess(ProcessModel):
|
|
55
89
|
@overload
|
|
56
|
-
def __init__(
|
|
90
|
+
def __init__(
|
|
91
|
+
self,
|
|
92
|
+
rate: float = ...,
|
|
93
|
+
stickingProbability: float = ...,
|
|
94
|
+
sourceExponent: float = ...,
|
|
95
|
+
maskMaterial: viennaps3d.viennaps3d.Material = ...,
|
|
96
|
+
) -> None: ...
|
|
57
97
|
@overload
|
|
58
|
-
def __init__(
|
|
98
|
+
def __init__(
|
|
99
|
+
self,
|
|
100
|
+
rate: float,
|
|
101
|
+
stickingProbability: float,
|
|
102
|
+
sourceExponent: float,
|
|
103
|
+
maskMaterials: list[viennaps3d.viennaps3d.Material],
|
|
104
|
+
) -> None: ...
|
|
59
105
|
@overload
|
|
60
|
-
def __init__(
|
|
106
|
+
def __init__(
|
|
107
|
+
self,
|
|
108
|
+
materialRates: dict[viennaps3d.viennaps3d.Material, float],
|
|
109
|
+
stickingProbability: float,
|
|
110
|
+
sourceExponent: float,
|
|
111
|
+
) -> None: ...
|
viennaps3d/viennaps3d.pyi
CHANGED
|
@@ -7,7 +7,7 @@ __version__: str
|
|
|
7
7
|
version: str
|
|
8
8
|
|
|
9
9
|
class AdvectionCallback:
|
|
10
|
-
domain:
|
|
10
|
+
domain: Incomplete
|
|
11
11
|
def __init__(self) -> None: ...
|
|
12
12
|
def applyPostAdvect(self, arg0: float) -> bool: ...
|
|
13
13
|
def applyPreAdvect(self, arg0: float) -> bool: ...
|
|
@@ -51,7 +51,7 @@ class AtomicLayerProcess:
|
|
|
51
51
|
def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
|
|
52
52
|
def setProcessModel(self, arg0: ProcessModel) -> None: ...
|
|
53
53
|
def setPulseTime(self, arg0: float) -> None: ...
|
|
54
|
-
def setSourceDirection(self, arg0
|
|
54
|
+
def setSourceDirection(self, arg0) -> None: ...
|
|
55
55
|
|
|
56
56
|
class BoxDistribution(ProcessModel):
|
|
57
57
|
@overload
|
|
@@ -147,7 +147,73 @@ class CF4O2ParametersSiGe:
|
|
|
147
147
|
def __init__(self) -> None: ...
|
|
148
148
|
def k_sigma_SiGe(self, arg0: float) -> float: ...
|
|
149
149
|
|
|
150
|
-
class
|
|
150
|
+
class CSVFileProcess(ProcessModel):
|
|
151
|
+
def __init__(
|
|
152
|
+
self,
|
|
153
|
+
ratesFile: str,
|
|
154
|
+
direction,
|
|
155
|
+
offset,
|
|
156
|
+
isotropicComponent: float = ...,
|
|
157
|
+
directionalComponent: float = ...,
|
|
158
|
+
maskMaterials: list[Material] = ...,
|
|
159
|
+
calculateVisibility: bool = ...,
|
|
160
|
+
) -> None: ...
|
|
161
|
+
def setCustomInterpolator(self, function: Callable) -> None: ...
|
|
162
|
+
def setIDWNeighbors(self, k: int = ...) -> None: ...
|
|
163
|
+
@overload
|
|
164
|
+
def setInterpolationMode(self, mode: Interpolation) -> None: ...
|
|
165
|
+
@overload
|
|
166
|
+
def setInterpolationMode(self, mode: str) -> None: ...
|
|
167
|
+
def setOffset(self, offset) -> None: ...
|
|
168
|
+
|
|
169
|
+
class DenseCellSet:
|
|
170
|
+
def __init__(self) -> None: ...
|
|
171
|
+
@overload
|
|
172
|
+
def addFillingFraction(self, arg0: int, arg1: float) -> bool: ...
|
|
173
|
+
@overload
|
|
174
|
+
def addFillingFraction(self, arg0, arg1: float) -> bool: ...
|
|
175
|
+
def addFillingFractionInMaterial(self, arg0, arg1: float, arg2: int) -> bool: ...
|
|
176
|
+
def addScalarData(self, arg0: str, arg1: float) -> None: ...
|
|
177
|
+
def buildNeighborhood(self, forceRebuild: bool = ...) -> None: ...
|
|
178
|
+
def clear(self) -> None: ...
|
|
179
|
+
def fromLevelSets(
|
|
180
|
+
self,
|
|
181
|
+
levelSets: list[viennals3d.viennals3d.Domain],
|
|
182
|
+
materialMap: viennals3d.viennals3d.MaterialMap = ...,
|
|
183
|
+
depth: float = ...,
|
|
184
|
+
) -> None: ...
|
|
185
|
+
def getAverageFillingFraction(self, arg0, arg1: float) -> float: ...
|
|
186
|
+
def getBoundingBox(self, *args, **kwargs): ...
|
|
187
|
+
def getCellCenter(self, *args, **kwargs): ...
|
|
188
|
+
def getCellGrid(self) -> viennals3d.viennals3d.Mesh: ...
|
|
189
|
+
def getDepth(self) -> float: ...
|
|
190
|
+
def getElement(self, *args, **kwargs): ...
|
|
191
|
+
def getElements(self, *args, **kwargs): ...
|
|
192
|
+
def getFillingFraction(self, arg0) -> float: ...
|
|
193
|
+
def getFillingFractions(self) -> list[float]: ...
|
|
194
|
+
def getGridDelta(self) -> float: ...
|
|
195
|
+
def getIndex(self, arg0) -> int: ...
|
|
196
|
+
def getNeighbors(self, *args, **kwargs): ...
|
|
197
|
+
def getNode(self, *args, **kwargs): ...
|
|
198
|
+
def getNodes(self, *args, **kwargs): ...
|
|
199
|
+
def getNumberOfCells(self) -> int: ...
|
|
200
|
+
def getScalarData(self, arg0: str) -> list[float]: ...
|
|
201
|
+
def getScalarDataLabels(self) -> list[str]: ...
|
|
202
|
+
def getSurface(self) -> viennals3d.viennals3d.Domain: ...
|
|
203
|
+
def readCellSetData(self, arg0: str) -> None: ...
|
|
204
|
+
def setCellSetPosition(self, arg0: bool) -> None: ...
|
|
205
|
+
def setCoverMaterial(self, arg0: int) -> None: ...
|
|
206
|
+
@overload
|
|
207
|
+
def setFillingFraction(self, arg0: int, arg1: float) -> bool: ...
|
|
208
|
+
@overload
|
|
209
|
+
def setFillingFraction(self, arg0, arg1: float) -> bool: ...
|
|
210
|
+
def setPeriodicBoundary(self, arg0) -> None: ...
|
|
211
|
+
def updateMaterials(self) -> None: ...
|
|
212
|
+
def updateSurface(self) -> None: ...
|
|
213
|
+
def writeCellSetData(self, arg0: str) -> None: ...
|
|
214
|
+
def writeVTU(self, arg0: str) -> None: ...
|
|
215
|
+
|
|
216
|
+
class DirectionalProcess(ProcessModel):
|
|
151
217
|
@overload
|
|
152
218
|
def __init__(
|
|
153
219
|
self,
|
|
@@ -185,9 +251,7 @@ class Domain:
|
|
|
185
251
|
boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
|
|
186
252
|
) -> None: ...
|
|
187
253
|
def applyBooleanOperation(
|
|
188
|
-
self,
|
|
189
|
-
arg0: viennals3d.viennals3d.Domain,
|
|
190
|
-
arg1: viennals3d.viennals3d.BooleanOperationEnum,
|
|
254
|
+
self, arg0: viennals3d.viennals3d.Domain, arg1
|
|
191
255
|
) -> None: ...
|
|
192
256
|
def clear(self) -> None: ...
|
|
193
257
|
def deepCopy(self, arg0: Domain) -> None: ...
|
|
@@ -195,8 +259,8 @@ class Domain:
|
|
|
195
259
|
def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
|
|
196
260
|
def getBoundaryConditions(self, *args, **kwargs): ...
|
|
197
261
|
def getBoundingBox(self, *args, **kwargs): ...
|
|
198
|
-
def getCellSet(self
|
|
199
|
-
def getGrid(self
|
|
262
|
+
def getCellSet(self) -> DenseCellSet: ...
|
|
263
|
+
def getGrid(self) -> viennals3d.viennals3d.hrleGrid: ...
|
|
200
264
|
def getGridDelta(self) -> float: ...
|
|
201
265
|
def getLevelSets(self) -> list[viennals3d.viennals3d.Domain]: ...
|
|
202
266
|
def getMaterialMap(self, *args, **kwargs): ...
|
|
@@ -246,7 +310,7 @@ class DomainSetup:
|
|
|
246
310
|
def boundaryCons(self, *args, **kwargs): ...
|
|
247
311
|
def bounds(self, *args, **kwargs): ...
|
|
248
312
|
def check(self) -> None: ...
|
|
249
|
-
def grid(self
|
|
313
|
+
def grid(self) -> viennals3d.viennals3d.hrleGrid: ...
|
|
250
314
|
def gridDelta(self) -> float: ...
|
|
251
315
|
def halveXAxis(self) -> None: ...
|
|
252
316
|
def halveYAxis(self) -> None: ...
|
|
@@ -369,9 +433,26 @@ class GDSGeometry:
|
|
|
369
433
|
def __init__(self) -> None: ...
|
|
370
434
|
@overload
|
|
371
435
|
def __init__(self, gridDelta: float) -> None: ...
|
|
436
|
+
@overload
|
|
437
|
+
def __init__(self, gridDelta: float, boundaryConditions) -> None: ...
|
|
438
|
+
def addBlur(
|
|
439
|
+
self,
|
|
440
|
+
sigmas: list[float],
|
|
441
|
+
weights: list[float],
|
|
442
|
+
threshold: float = ...,
|
|
443
|
+
delta: float = ...,
|
|
444
|
+
gridRefinement: int = ...,
|
|
445
|
+
) -> None: ...
|
|
446
|
+
def getAllLayers(self) -> set[int]: ...
|
|
372
447
|
def getBounds(self, *args, **kwargs): ...
|
|
448
|
+
def getNumberOfStructures(self) -> int: ...
|
|
373
449
|
def layerToLevelSet(
|
|
374
|
-
self,
|
|
450
|
+
self,
|
|
451
|
+
layer: int,
|
|
452
|
+
baseHeight: float = ...,
|
|
453
|
+
height: float = ...,
|
|
454
|
+
mask: bool = ...,
|
|
455
|
+
blurLayer: bool = ...,
|
|
375
456
|
) -> viennals3d.viennals3d.Domain: ...
|
|
376
457
|
def print(self) -> None: ...
|
|
377
458
|
def setBoundaryConditions(
|
|
@@ -381,13 +462,10 @@ class GDSGeometry:
|
|
|
381
462
|
def setGridDelta(self, arg0: float) -> None: ...
|
|
382
463
|
|
|
383
464
|
class GDSReader:
|
|
384
|
-
@overload
|
|
385
465
|
def __init__(self) -> None: ...
|
|
386
|
-
@overload
|
|
387
|
-
def __init__(self, arg0: GDSGeometry, arg1: str) -> None: ...
|
|
388
466
|
def apply(self) -> None: ...
|
|
389
467
|
def setFileName(self, arg0: str) -> None: ...
|
|
390
|
-
def setGeometry(self,
|
|
468
|
+
def setGeometry(self, *args, **kwargs): ...
|
|
391
469
|
|
|
392
470
|
class GeometryFactory:
|
|
393
471
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
@@ -400,6 +478,28 @@ class GeometryFactory:
|
|
|
400
478
|
def makeMask(self, base: float, height: float) -> viennals3d.viennals3d.Domain: ...
|
|
401
479
|
def makeSubstrate(self, base: float) -> viennals3d.viennals3d.Domain: ...
|
|
402
480
|
|
|
481
|
+
class HBrO2Etching(ProcessModel):
|
|
482
|
+
@overload
|
|
483
|
+
def __init__(self) -> None: ...
|
|
484
|
+
@overload
|
|
485
|
+
def __init__(
|
|
486
|
+
self,
|
|
487
|
+
ionFlux: float,
|
|
488
|
+
etchantFlux: float,
|
|
489
|
+
oxygenFlux: float,
|
|
490
|
+
meanIonEnergy: float = ...,
|
|
491
|
+
sigmaIonEnergy: float = ...,
|
|
492
|
+
ionExponent: float = ...,
|
|
493
|
+
oxySputterYield: float = ...,
|
|
494
|
+
etchStopDepth: float = ...,
|
|
495
|
+
) -> None: ...
|
|
496
|
+
@overload
|
|
497
|
+
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
|
|
498
|
+
@staticmethod
|
|
499
|
+
def defaultParameters() -> PlasmaEtchingParameters: ...
|
|
500
|
+
def getParameters(self) -> PlasmaEtchingParameters: ...
|
|
501
|
+
def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
|
|
502
|
+
|
|
403
503
|
class HoleShape:
|
|
404
504
|
__members__: ClassVar[dict] = ... # read-only
|
|
405
505
|
Full: ClassVar[HoleShape] = ...
|
|
@@ -433,6 +533,23 @@ class IBEParameters:
|
|
|
433
533
|
yieldFunction: Callable[[float], float]
|
|
434
534
|
def __init__(self) -> None: ...
|
|
435
535
|
|
|
536
|
+
class Interpolation:
|
|
537
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
538
|
+
CUSTOM: ClassVar[Interpolation] = ...
|
|
539
|
+
IDW: ClassVar[Interpolation] = ...
|
|
540
|
+
LINEAR: ClassVar[Interpolation] = ...
|
|
541
|
+
__entries: ClassVar[dict] = ...
|
|
542
|
+
def __init__(self, value: int) -> None: ...
|
|
543
|
+
def __eq__(self, other: object) -> bool: ...
|
|
544
|
+
def __hash__(self) -> int: ...
|
|
545
|
+
def __index__(self) -> int: ...
|
|
546
|
+
def __int__(self) -> int: ...
|
|
547
|
+
def __ne__(self, other: object) -> bool: ...
|
|
548
|
+
@property
|
|
549
|
+
def name(self) -> str: ...
|
|
550
|
+
@property
|
|
551
|
+
def value(self) -> int: ...
|
|
552
|
+
|
|
436
553
|
class IonBeamEtching(ProcessModel):
|
|
437
554
|
@overload
|
|
438
555
|
def __init__(self) -> None: ...
|
|
@@ -770,8 +887,10 @@ class Particle:
|
|
|
770
887
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
771
888
|
def getLocalDataLabels(self) -> list[str]: ...
|
|
772
889
|
def getSourceDistributionPower(self) -> float: ...
|
|
773
|
-
def initNew(self,
|
|
774
|
-
def surfaceCollision(
|
|
890
|
+
def initNew(self, arg0) -> None: ...
|
|
891
|
+
def surfaceCollision(
|
|
892
|
+
self, arg0: float, arg1, arg2, arg3: int, arg4: int, arg5, arg6, arg7
|
|
893
|
+
) -> None: ...
|
|
775
894
|
def surfaceReflection(self, *args, **kwargs): ...
|
|
776
895
|
|
|
777
896
|
class Planarize:
|
|
@@ -783,6 +902,54 @@ class Planarize:
|
|
|
783
902
|
def setCutoffPosition(self, arg0: float) -> None: ...
|
|
784
903
|
def setDomain(self, arg0: Domain) -> None: ...
|
|
785
904
|
|
|
905
|
+
class PlasmaEtchingParameters:
|
|
906
|
+
Ions: PlasmaEtchingParametersIons
|
|
907
|
+
Mask: PlasmaEtchingParametersMask
|
|
908
|
+
Passivation: PlasmaEtchingParametersPassivation
|
|
909
|
+
Substrate: PlasmaEtchingParametersSubstrate
|
|
910
|
+
beta_E: dict[int, float]
|
|
911
|
+
beta_P: dict[int, float]
|
|
912
|
+
etchStopDepth: float
|
|
913
|
+
etchantFlux: float
|
|
914
|
+
ionFlux: float
|
|
915
|
+
passivationFlux: float
|
|
916
|
+
def __init__(self) -> None: ...
|
|
917
|
+
|
|
918
|
+
class PlasmaEtchingParametersIons:
|
|
919
|
+
exponent: float
|
|
920
|
+
inflectAngle: float
|
|
921
|
+
meanEnergy: float
|
|
922
|
+
minAngle: float
|
|
923
|
+
n_l: float
|
|
924
|
+
sigmaEnergy: float
|
|
925
|
+
thetaRMax: float
|
|
926
|
+
thetaRMin: float
|
|
927
|
+
def __init__(self) -> None: ...
|
|
928
|
+
|
|
929
|
+
class PlasmaEtchingParametersMask:
|
|
930
|
+
A_sp: float
|
|
931
|
+
B_sp: float
|
|
932
|
+
Eth_sp: float
|
|
933
|
+
rho: float
|
|
934
|
+
def __init__(self) -> None: ...
|
|
935
|
+
|
|
936
|
+
class PlasmaEtchingParametersPassivation:
|
|
937
|
+
A_ie: float
|
|
938
|
+
Eth_ie: float
|
|
939
|
+
def __init__(self) -> None: ...
|
|
940
|
+
|
|
941
|
+
class PlasmaEtchingParametersSubstrate:
|
|
942
|
+
A_ie: float
|
|
943
|
+
A_sp: float
|
|
944
|
+
B_ie: float
|
|
945
|
+
B_sp: float
|
|
946
|
+
Eth_ie: float
|
|
947
|
+
Eth_sp: float
|
|
948
|
+
beta_sigma: float
|
|
949
|
+
k_sigma: float
|
|
950
|
+
rho: float
|
|
951
|
+
def __init__(self) -> None: ...
|
|
952
|
+
|
|
786
953
|
class Process:
|
|
787
954
|
def __init__(self) -> None: ...
|
|
788
955
|
def apply(self) -> None: ...
|
|
@@ -808,7 +975,7 @@ class Process:
|
|
|
808
975
|
def setProcessModel(self, arg0: ProcessModel) -> None: ...
|
|
809
976
|
def setRayTracingDiskRadius(self, arg0: float) -> None: ...
|
|
810
977
|
def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
|
|
811
|
-
def setSourceDirection(self, arg0
|
|
978
|
+
def setSourceDirection(self, arg0) -> None: ...
|
|
812
979
|
def setTimeStepRatio(self, arg0: float) -> None: ...
|
|
813
980
|
|
|
814
981
|
class ProcessModel:
|
|
@@ -845,6 +1012,18 @@ class ProcessParams:
|
|
|
845
1012
|
def getScalarDataLabel(self, arg0: int) -> str: ...
|
|
846
1013
|
def insertNextScalar(self, arg0: float, arg1: str) -> None: ...
|
|
847
1014
|
|
|
1015
|
+
class RateGrid:
|
|
1016
|
+
def __init__(self) -> None: ...
|
|
1017
|
+
def interpolate(self, coord) -> float: ...
|
|
1018
|
+
def loadFromCSV(self, filename: str) -> bool: ...
|
|
1019
|
+
def setCustomInterpolator(self, function: Callable) -> None: ...
|
|
1020
|
+
def setIDWNeighbors(self, k: int) -> None: ...
|
|
1021
|
+
@overload
|
|
1022
|
+
def setInterpolationMode(self, mode: Interpolation) -> None: ...
|
|
1023
|
+
@overload
|
|
1024
|
+
def setInterpolationMode(self, mode: str) -> None: ...
|
|
1025
|
+
def setOffset(self, offset) -> None: ...
|
|
1026
|
+
|
|
848
1027
|
class RateSet:
|
|
849
1028
|
calculateVisibility: bool
|
|
850
1029
|
direction: Incomplete
|
|
@@ -867,7 +1046,7 @@ class RayTracingParameters:
|
|
|
867
1046
|
normalizationType: NormalizationType
|
|
868
1047
|
raysPerPoint: int
|
|
869
1048
|
smoothingNeighbors: int
|
|
870
|
-
sourceDirection:
|
|
1049
|
+
sourceDirection: Incomplete
|
|
871
1050
|
useRandomSeeds: bool
|
|
872
1051
|
def __init__(self) -> None: ...
|
|
873
1052
|
|
|
@@ -887,60 +1066,11 @@ class SF6O2Etching(ProcessModel):
|
|
|
887
1066
|
etchStopDepth: float = ...,
|
|
888
1067
|
) -> None: ...
|
|
889
1068
|
@overload
|
|
890
|
-
def __init__(self, parameters:
|
|
891
|
-
|
|
892
|
-
def
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
Ions: SF6O2ParametersIons
|
|
896
|
-
Mask: SF6O2ParametersMask
|
|
897
|
-
Passivation: SF6O2ParametersPassivation
|
|
898
|
-
Si: SF6O2ParametersSi
|
|
899
|
-
beta_F: dict[int, float]
|
|
900
|
-
beta_O: dict[int, float]
|
|
901
|
-
etchStopDepth: float
|
|
902
|
-
etchantFlux: float
|
|
903
|
-
fluxIncludeSticking: bool
|
|
904
|
-
ionFlux: float
|
|
905
|
-
oxygenFlux: float
|
|
906
|
-
def __init__(self) -> None: ...
|
|
907
|
-
|
|
908
|
-
class SF6O2ParametersIons:
|
|
909
|
-
exponent: float
|
|
910
|
-
inflectAngle: float
|
|
911
|
-
meanEnergy: float
|
|
912
|
-
minAngle: float
|
|
913
|
-
n_l: float
|
|
914
|
-
sigmaEnergy: float
|
|
915
|
-
thetaRMin: float
|
|
916
|
-
thetaRMax: float
|
|
917
|
-
def __init__(self) -> None: ...
|
|
918
|
-
|
|
919
|
-
class SF6O2ParametersMask:
|
|
920
|
-
A_sp: float
|
|
921
|
-
B_sp: float
|
|
922
|
-
Eth_sp: float
|
|
923
|
-
rho: float
|
|
924
|
-
def __init__(self) -> None: ...
|
|
925
|
-
|
|
926
|
-
class SF6O2ParametersPassivation:
|
|
927
|
-
A_ie: float
|
|
928
|
-
Eth_ie: float
|
|
929
|
-
def __init__(self) -> None: ...
|
|
930
|
-
|
|
931
|
-
class SF6O2ParametersSi:
|
|
932
|
-
A_ie: float
|
|
933
|
-
A_sp: float
|
|
934
|
-
B_ie: float
|
|
935
|
-
B_sp: float
|
|
936
|
-
Eth_ie: float
|
|
937
|
-
Eth_sp: float
|
|
938
|
-
beta_sigma: float
|
|
939
|
-
k_sigma: float
|
|
940
|
-
rho: float
|
|
941
|
-
theta_g_ie: float
|
|
942
|
-
theta_g_sp: float
|
|
943
|
-
def __init__(self) -> None: ...
|
|
1069
|
+
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
|
|
1070
|
+
@staticmethod
|
|
1071
|
+
def defaultParameters() -> PlasmaEtchingParameters: ...
|
|
1072
|
+
def getParameters(self) -> PlasmaEtchingParameters: ...
|
|
1073
|
+
def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
|
|
944
1074
|
|
|
945
1075
|
class SingleParticleALD(ProcessModel):
|
|
946
1076
|
def __init__(
|
|
@@ -1033,24 +1163,4 @@ class ToDiskMesh:
|
|
|
1033
1163
|
def setDomain(self, arg0: Domain) -> None: ...
|
|
1034
1164
|
def setMesh(self, arg0: viennals3d.viennals3d.Mesh) -> None: ...
|
|
1035
1165
|
|
|
1036
|
-
class rayTraceDirection:
|
|
1037
|
-
__members__: ClassVar[dict] = ... # read-only
|
|
1038
|
-
NEG_X: ClassVar[rayTraceDirection] = ...
|
|
1039
|
-
NEG_Y: ClassVar[rayTraceDirection] = ...
|
|
1040
|
-
NEG_Z: ClassVar[rayTraceDirection] = ...
|
|
1041
|
-
POS_X: ClassVar[rayTraceDirection] = ...
|
|
1042
|
-
POS_Y: ClassVar[rayTraceDirection] = ...
|
|
1043
|
-
POS_Z: ClassVar[rayTraceDirection] = ...
|
|
1044
|
-
__entries: ClassVar[dict] = ...
|
|
1045
|
-
def __init__(self, value: int) -> None: ...
|
|
1046
|
-
def __eq__(self, other: object) -> bool: ...
|
|
1047
|
-
def __hash__(self) -> int: ...
|
|
1048
|
-
def __index__(self) -> int: ...
|
|
1049
|
-
def __int__(self) -> int: ...
|
|
1050
|
-
def __ne__(self, other: object) -> bool: ...
|
|
1051
|
-
@property
|
|
1052
|
-
def name(self) -> str: ...
|
|
1053
|
-
@property
|
|
1054
|
-
def value(self) -> int: ...
|
|
1055
|
-
|
|
1056
1166
|
def setNumThreads(arg0: int) -> None: ...
|
|
Binary file
|
viennaps-3.4.0.dist-info/RECORD
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
viennaps.libs/embree4.dll,sha256=_75b8mI71uQbk85ydrD0JISpHuHbbDubfhqjpmo7z-c,24705024
|
|
2
|
-
viennaps.libs/embree4.exp,sha256=yEveGkxobt96pg8J4ZCO4IfFYpRo-D2FGhG7oOESj6s,17003
|
|
3
|
-
viennaps.libs/embree4.lib,sha256=8alXjQ2_f8tRvDeXkR4QychcEHCqlgkkttkt51zjaAo,28462
|
|
4
|
-
viennaps.libs/embree_avx.lib,sha256=ux8V6ihtTeYHeRKoBXJgVc-4SCMuP4Q3T7llN7_kEPQ,48649506
|
|
5
|
-
viennaps.libs/embree_avx2.lib,sha256=RTek_L9UYnAuWGKmpVqaaI9t2109p9AUEH6ZNOOe4pk,46907266
|
|
6
|
-
viennaps.libs/embree_sse42.lib,sha256=3N3qG4WBjV3WQsPCtsyoppmX9E4UdVHHSuXEcM4-gM0,5618148
|
|
7
|
-
viennaps.libs/lexers.lib,sha256=6nNXI9VvpIMFvZueAmi592NmkTi7bXYaY9CrpVNyy9k,279552
|
|
8
|
-
viennaps.libs/math.lib,sha256=nEBH1sZFGLaY1gjI3VTtQi26sUejhCWNHGGwifGYRRY,5430
|
|
9
|
-
viennaps.libs/simd.lib,sha256=TETO9tayo8ZqPRVkDsaALIy4avc0_FdN7p6DDP6mEMQ,10944
|
|
10
|
-
viennaps.libs/sys.lib,sha256=KDFRyoFiUMaOKwc0BN2FhuXFECkgpXTzRVnyKLiUw5Y,378472
|
|
11
|
-
viennaps.libs/tasking.lib,sha256=jmoPew24RvA3chpwa6S2xyN8BGmSE5zmWESScKGl_hI,63170
|
|
12
|
-
viennaps.libs/tbb12.dll,sha256=EfmEJX2wSY0xotsFspLwQMoQMMq5J5B6-m__EFnF-nA,337920
|
|
13
|
-
viennaps.libs/tbb12.exp,sha256=xKM9_i4tq71NUi2crojfLBWhbHLZIfIqeouNKK9Bj9Y,27773
|
|
14
|
-
viennaps.libs/tbb12.lib,sha256=npIEoA7s2b0Eiakm3VAubMi51J6VYW1zmcsmlwRCnq4,46030
|
|
15
|
-
viennaps.libs/vtkCommonComputationalGeometry-9.3.dll,sha256=vGcXID4H_7epXBxW-3mgF-lh9QKCOsnqU8o8Sw8zfHM,174080
|
|
16
|
-
viennaps.libs/vtkCommonCore-9.3.dll,sha256=bI5RRWRZ0R8sD2pCgUI0Zwh1cSYea6RBid_2GZoqK4M,10911744
|
|
17
|
-
viennaps.libs/vtkCommonDataModel-9.3.dll,sha256=GYpiDH1H1YScg2Nm4aD84RNsbmge9QdTxY2F6qh9SyM,4310528
|
|
18
|
-
viennaps.libs/vtkCommonExecutionModel-9.3.dll,sha256=S8-rbzN1OUSt56rrMzJ72AATuNN30jqJsn1alqG_TXY,797696
|
|
19
|
-
viennaps.libs/vtkCommonMath-9.3.dll,sha256=Fp5aye39A4FwdRmum3rYTiXanXCFogS3yH25JTCXzEo,153600
|
|
20
|
-
viennaps.libs/vtkCommonMisc-9.3.dll,sha256=ky4OibLD3quBXnKhlyiQn4orVvKfvFf3HLsuh4KJNVw,2795008
|
|
21
|
-
viennaps.libs/vtkCommonSystem-9.3.dll,sha256=nFe1chiIN-wun-Qw2ImTby6h7UmjnjL3QQdzEWHEBUQ,124928
|
|
22
|
-
viennaps.libs/vtkCommonTransforms-9.3.dll,sha256=D0mKbj5Fj5WZ4JIcInRm5JVIgZkjRbb3G6wbRt7W1WA,204800
|
|
23
|
-
viennaps.libs/vtkdoubleconversion-9.3.dll,sha256=UEAkq2iQd7QIfSHEl9-jIeSzO6DC8qpDpYSKCCQE__s,64512
|
|
24
|
-
viennaps.libs/vtkexpat-9.3.dll,sha256=pXDOcxypoPGTzgPKMPfNpvgCT-hyjVl8jO2lpIhhQYQ,158208
|
|
25
|
-
viennaps.libs/vtkFiltersCore-9.3.dll,sha256=ZLYkroI8DpfYpNlX7lAys5BjAjYLJ6E4z5zNCeasuzo,5890048
|
|
26
|
-
viennaps.libs/vtkFiltersGeneral-9.3.dll,sha256=_GWIoBB6_Q2dGAD8R2Y5lS3Zhx_KpecOWT2NuL-dIR0,3282944
|
|
27
|
-
viennaps.libs/vtkFiltersGeometry-9.3.dll,sha256=QfK8zYj31OlH0s5OKrcIe9cWJQ0LQ4rRgCtNaQ2wz30,965120
|
|
28
|
-
viennaps.libs/vtkFiltersVerdict-9.3.dll,sha256=f-ktUwj1_TV0d6N-uwQrjBEd417aBFJ8juu4ybo-YFc,199680
|
|
29
|
-
viennaps.libs/vtkfmt-9.3.dll,sha256=xMTAypBqil-bYjRxDISvmgZyqZDfRfmRO6oTWD2_T2E,139264
|
|
30
|
-
viennaps.libs/vtkIOCore-9.3.dll,sha256=6u7zpcpPMx44VlwLLPf4CAlIlkOuYUcJXE2XSjcmytk,450560
|
|
31
|
-
viennaps.libs/vtkIOXML-9.3.dll,sha256=DRNrglCgDrlI22SUJT96_fp-ap6G9T5q1sWYXUBld4k,846848
|
|
32
|
-
viennaps.libs/vtkIOXMLParser-9.3.dll,sha256=kjz-IJFy-mwYdithq5FOWfcwKqUaV1LpE77S_UbKAVY,111616
|
|
33
|
-
viennaps.libs/vtkkissfft-9.3.dll,sha256=Ctz23tB2D6BQMDG-rWsSblGaI3K-jz856KQfQ5HdwCA,22016
|
|
34
|
-
viennaps.libs/vtkloguru-9.3.dll,sha256=983KzbUdUIi6rjTbeUBjAcYN-E7LpACULXa8thagx-k,76288
|
|
35
|
-
viennaps.libs/vtklz4-9.3.dll,sha256=-wXNMa2aH3Ee6ndD-l9dwmcGw4gaehAaxlBbjvI-Uog,115200
|
|
36
|
-
viennaps.libs/vtklzma-9.3.dll,sha256=DTBYEVpHD5rdUQ6WmzR0ybNDa76VHrq0RpD5hmq3GZg,154624
|
|
37
|
-
viennaps.libs/vtkpugixml-9.3.dll,sha256=5r2vxLitSoyDSLGO25cjpJrmne4FiJFaTjj-0OcUx_M,207360
|
|
38
|
-
viennaps.libs/vtksys-9.3.dll,sha256=woZwbj0UsmrHXyByHSbje0biKRKccLwWD1O3s0W9gWQ,325120
|
|
39
|
-
viennaps.libs/vtkverdict-9.3.dll,sha256=FppYBDt4eSVyFnxPSYG79y96TZaElz_pIKN04BkJXQ4,192512
|
|
40
|
-
viennaps.libs/vtkzlib-9.3.dll,sha256=l6-XwWoJM_KU1NjHPYNvsooQqfS8klqvsJ2MJyrLQTg,84480
|
|
41
|
-
viennaps2d/__init__.py,sha256=rAuO-G4NSO0dDKh2IsZoDqurSdbgyh77lMUkJb8jhdU,1742
|
|
42
|
-
viennaps2d/__init__.pyi,sha256=Wl1OsUFkxdU7PgcnJ0PCumKHyTDf9rF-zc0lQ7CLOgY,69
|
|
43
|
-
viennaps2d/Release/viennaps2d.cp310-win_amd64.pyd,sha256=WksqyjUk5kho_F1E9CfU4bIOo83a5s5gOvVp_cS4dc0,1762816
|
|
44
|
-
viennaps2d/Release/viennaps2d.cp311-win_amd64.pyd,sha256=w_tMb7KI7f--yBENmveVFYgm-XCLWahfdU2-LIIT2tk,1764864
|
|
45
|
-
viennaps2d/Release/viennaps2d.cp312-win_amd64.pyd,sha256=fQcQ2b9D-awSy_zAgcp2eFQf734AMOOec55kFPQnmNI,1788416
|
|
46
|
-
viennaps2d/Release/viennaps2d.pypy37-pp73-win_amd64.pyd,sha256=isPu5yjlh7yJQABGO0c2ty_A_fvqxZqqOss48sLyoQw,1761280
|
|
47
|
-
viennaps2d/Release/viennaps2d.pypy38-pp73-win_amd64.pyd,sha256=Dt4OE0pr5D41uCaw2sswcjwpJK_PyPh09sI5mNDGCDQ,1762304
|
|
48
|
-
viennaps2d/viennaps2d.pyi,sha256=e0SNdNwLbXEPIT41nKi4AHKgANYDmQLAtgN98d1RPpc,34953
|
|
49
|
-
viennaps2d/viennaps2d.pypy38-pp73-win_amd64.pyd,sha256=Dt4OE0pr5D41uCaw2sswcjwpJK_PyPh09sI5mNDGCDQ,1762304
|
|
50
|
-
viennaps3d/__init__.py,sha256=mHtxr3JdBtHLm1ofjYgYbaQF_jNTPp3-j7dH6S_NBcQ,1742
|
|
51
|
-
viennaps3d/__init__.pyi,sha256=jhoJRHabClmxl-u7CzRVlWPLlVbdQf9sxTFb2vQXExo,69
|
|
52
|
-
viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd,sha256=ev7mny7v7B8TEcAuESGizuEnILJrRgnT6enhfQPsQ0Y,1658368
|
|
53
|
-
viennaps3d/Release/viennaps3d.cp311-win_amd64.pyd,sha256=Yz9i5o0hwcTDmXeDO8zr5FL7BL6JbXlEpgvzNJnqgIA,1660416
|
|
54
|
-
viennaps3d/Release/viennaps3d.cp312-win_amd64.pyd,sha256=pRsaVCoqqSj8ECR3F3ii8mzjXAC0imMZfW8mgO1SVi0,1682944
|
|
55
|
-
viennaps3d/Release/viennaps3d.pypy37-pp73-win_amd64.pyd,sha256=HwEUJLQIrK1MBxamueTr9F7qY9KXF8DKFN5lxupuM5k,1656832
|
|
56
|
-
viennaps3d/Release/viennaps3d.pypy38-pp73-win_amd64.pyd,sha256=d4iK31ELgzqvfuhOD9Wzhgq4eAJ0dDaGSQ_PYyXQRu4,1657344
|
|
57
|
-
viennaps3d/viennaps3d/gpu.pyi,sha256=LuaAYy5NPET-iaORSKI8hj3olacnIrWJB-W7dePOOZc,3384
|
|
58
|
-
viennaps3d/viennaps3d.pyi,sha256=znWMT1B-IWdTriIvgOeeHKtLpreba5waB2pSbwl03W0,33243
|
|
59
|
-
viennaps3d/viennaps3d.pypy38-pp73-win_amd64.pyd,sha256=d4iK31ELgzqvfuhOD9Wzhgq4eAJ0dDaGSQ_PYyXQRu4,1657344
|
|
60
|
-
viennaps-3.4.0.dist-info/METADATA,sha256=likKE3piUWUQBKTd4hhkT9fvgCS9rb7uSuucKGLC5CM,13585
|
|
61
|
-
viennaps-3.4.0.dist-info/WHEEL,sha256=i1GExBSYY12rEgCOOXHdWOOM4XOi8umQBEDKzEM4ao0,111
|
|
62
|
-
viennaps-3.4.0.dist-info/licenses/LICENSE,sha256=yymSujHnPkkZp_XdtiDIcgdgd2fpygXGPRGIH3ReUPA,1296
|
|
63
|
-
viennaps-3.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|