ViennaPS 3.5.0__cp312-cp312-win_amd64.whl → 3.6.0__cp312-cp312-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.5.0.dist-info → viennaps-3.6.0.dist-info}/METADATA +12 -12
- viennaps-3.6.0.dist-info/RECORD +59 -0
- {viennaps-3.5.0.dist-info → viennaps-3.6.0.dist-info}/WHEEL +1 -1
- viennaps.libs/embree4.dll +0 -0
- viennaps.libs/embree4.exp +0 -0
- viennaps.libs/embree4.lib +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/tbb12.exp +0 -0
- viennaps.libs/tbb12.lib +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/__init__.pyi +3 -0
- viennaps2d/viennaps2d.cp312-win_amd64.pyd +0 -0
- viennaps2d/viennaps2d.pyi +378 -216
- 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/__init__.pyi +3 -0
- viennaps3d/gpu.pyi +147 -0
- viennaps3d/viennaps3d.cp312-win_amd64.pyd +0 -0
- viennaps3d/viennaps3d.pyi +360 -202
- viennaps-3.5.0.dist-info/RECORD +0 -59
- viennaps3d/viennaps3d/gpu.pyi +0 -111
- {viennaps-3.5.0.dist-info → viennaps-3.6.0.dist-info}/licenses/LICENSE +0 -0
viennaps3d/viennaps3d.pyi
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import collections.abc
|
|
2
|
+
import typing
|
|
1
3
|
import viennals3d.viennals3d
|
|
2
4
|
from _typeshed import Incomplete
|
|
3
|
-
from typing import
|
|
5
|
+
from typing import ClassVar, overload
|
|
4
6
|
|
|
5
7
|
D: int
|
|
6
8
|
__version__: str
|
|
@@ -9,8 +11,8 @@ version: str
|
|
|
9
11
|
class AdvectionCallback:
|
|
10
12
|
domain: Incomplete
|
|
11
13
|
def __init__(self) -> None: ...
|
|
12
|
-
def applyPostAdvect(self, arg0:
|
|
13
|
-
def applyPreAdvect(self, arg0:
|
|
14
|
+
def applyPostAdvect(self, arg0: typing.SupportsFloat) -> bool: ...
|
|
15
|
+
def applyPreAdvect(self, arg0: typing.SupportsFloat) -> bool: ...
|
|
14
16
|
|
|
15
17
|
class AdvectionParameters:
|
|
16
18
|
checkDissipation: bool
|
|
@@ -23,17 +25,19 @@ class AdvectionParameters:
|
|
|
23
25
|
|
|
24
26
|
class AnisotropicProcess(ProcessModel):
|
|
25
27
|
@overload
|
|
26
|
-
def __init__(
|
|
28
|
+
def __init__(
|
|
29
|
+
self, materials: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]]
|
|
30
|
+
) -> None: ...
|
|
27
31
|
@overload
|
|
28
32
|
def __init__(
|
|
29
33
|
self,
|
|
30
34
|
direction100,
|
|
31
35
|
direction010,
|
|
32
|
-
rate100:
|
|
33
|
-
rate110:
|
|
34
|
-
rate111:
|
|
35
|
-
rate311:
|
|
36
|
-
materials:
|
|
36
|
+
rate100: typing.SupportsFloat,
|
|
37
|
+
rate110: typing.SupportsFloat,
|
|
38
|
+
rate111: typing.SupportsFloat,
|
|
39
|
+
rate311: typing.SupportsFloat,
|
|
40
|
+
materials: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
|
|
37
41
|
) -> None: ...
|
|
38
42
|
|
|
39
43
|
class AtomicLayerProcess:
|
|
@@ -41,25 +45,30 @@ class AtomicLayerProcess:
|
|
|
41
45
|
def apply(self) -> None: ...
|
|
42
46
|
def disableRandomSeeds(self) -> None: ...
|
|
43
47
|
def enableRandomSeeds(self) -> None: ...
|
|
44
|
-
def setCoverageTimeStep(self, arg0:
|
|
45
|
-
def setDesorptionRates(
|
|
48
|
+
def setCoverageTimeStep(self, arg0: typing.SupportsFloat) -> None: ...
|
|
49
|
+
def setDesorptionRates(
|
|
50
|
+
self, arg0: collections.abc.Sequence[typing.SupportsFloat]
|
|
51
|
+
) -> None: ...
|
|
46
52
|
def setDomain(self, *args, **kwargs): ...
|
|
47
53
|
def setIntegrationScheme(
|
|
48
54
|
self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
|
|
49
55
|
) -> None: ...
|
|
50
|
-
def setNumCycles(self, arg0:
|
|
51
|
-
def setNumberOfRaysPerPoint(self, arg0:
|
|
56
|
+
def setNumCycles(self, arg0: typing.SupportsInt) -> None: ...
|
|
57
|
+
def setNumberOfRaysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
|
|
52
58
|
def setProcessModel(self, arg0: ProcessModel) -> None: ...
|
|
53
|
-
def setPulseTime(self, arg0:
|
|
59
|
+
def setPulseTime(self, arg0: typing.SupportsFloat) -> None: ...
|
|
54
60
|
def setSourceDirection(self, arg0) -> None: ...
|
|
55
61
|
|
|
56
62
|
class BoxDistribution(ProcessModel):
|
|
57
63
|
@overload
|
|
58
64
|
def __init__(
|
|
59
|
-
self,
|
|
65
|
+
self,
|
|
66
|
+
halfAxes,
|
|
67
|
+
gridDelta: typing.SupportsFloat,
|
|
68
|
+
mask: viennals3d.viennals3d.Domain,
|
|
60
69
|
) -> None: ...
|
|
61
70
|
@overload
|
|
62
|
-
def __init__(self, halfAxes, gridDelta:
|
|
71
|
+
def __init__(self, halfAxes, gridDelta: typing.SupportsFloat) -> None: ...
|
|
63
72
|
|
|
64
73
|
class CF4O2Etching(ProcessModel):
|
|
65
74
|
@overload
|
|
@@ -67,16 +76,16 @@ class CF4O2Etching(ProcessModel):
|
|
|
67
76
|
@overload
|
|
68
77
|
def __init__(
|
|
69
78
|
self,
|
|
70
|
-
ionFlux:
|
|
71
|
-
etchantFlux:
|
|
72
|
-
oxygenFlux:
|
|
73
|
-
polymerFlux:
|
|
74
|
-
meanIonEnergy:
|
|
75
|
-
sigmaIonEnergy:
|
|
76
|
-
ionExponent:
|
|
77
|
-
oxySputterYield:
|
|
78
|
-
polySputterYield:
|
|
79
|
-
etchStopDepth:
|
|
79
|
+
ionFlux: typing.SupportsFloat,
|
|
80
|
+
etchantFlux: typing.SupportsFloat,
|
|
81
|
+
oxygenFlux: typing.SupportsFloat,
|
|
82
|
+
polymerFlux: typing.SupportsFloat,
|
|
83
|
+
meanIonEnergy: typing.SupportsFloat = ...,
|
|
84
|
+
sigmaIonEnergy: typing.SupportsFloat = ...,
|
|
85
|
+
ionExponent: typing.SupportsFloat = ...,
|
|
86
|
+
oxySputterYield: typing.SupportsFloat = ...,
|
|
87
|
+
polySputterYield: typing.SupportsFloat = ...,
|
|
88
|
+
etchStopDepth: typing.SupportsFloat = ...,
|
|
80
89
|
) -> None: ...
|
|
81
90
|
@overload
|
|
82
91
|
def __init__(self, parameters: CF4O2Parameters) -> None: ...
|
|
@@ -145,7 +154,7 @@ class CF4O2ParametersSiGe:
|
|
|
145
154
|
rho: float
|
|
146
155
|
x: float
|
|
147
156
|
def __init__(self) -> None: ...
|
|
148
|
-
def k_sigma_SiGe(self, arg0:
|
|
157
|
+
def k_sigma_SiGe(self, arg0: typing.SupportsFloat) -> float: ...
|
|
149
158
|
|
|
150
159
|
class CSVFileProcess(ProcessModel):
|
|
151
160
|
def __init__(
|
|
@@ -153,13 +162,13 @@ class CSVFileProcess(ProcessModel):
|
|
|
153
162
|
ratesFile: str,
|
|
154
163
|
direction,
|
|
155
164
|
offset,
|
|
156
|
-
isotropicComponent:
|
|
157
|
-
directionalComponent:
|
|
158
|
-
maskMaterials:
|
|
165
|
+
isotropicComponent: typing.SupportsFloat = ...,
|
|
166
|
+
directionalComponent: typing.SupportsFloat = ...,
|
|
167
|
+
maskMaterials: collections.abc.Sequence[Material] = ...,
|
|
159
168
|
calculateVisibility: bool = ...,
|
|
160
169
|
) -> None: ...
|
|
161
|
-
def setCustomInterpolator(self, function: Callable) -> None: ...
|
|
162
|
-
def setIDWNeighbors(self, k:
|
|
170
|
+
def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
|
|
171
|
+
def setIDWNeighbors(self, k: typing.SupportsInt = ...) -> None: ...
|
|
163
172
|
@overload
|
|
164
173
|
def setInterpolationMode(self, mode: Interpolation) -> None: ...
|
|
165
174
|
@overload
|
|
@@ -169,20 +178,24 @@ class CSVFileProcess(ProcessModel):
|
|
|
169
178
|
class DenseCellSet:
|
|
170
179
|
def __init__(self) -> None: ...
|
|
171
180
|
@overload
|
|
172
|
-
def addFillingFraction(
|
|
181
|
+
def addFillingFraction(
|
|
182
|
+
self, arg0: typing.SupportsInt, arg1: typing.SupportsFloat
|
|
183
|
+
) -> bool: ...
|
|
173
184
|
@overload
|
|
174
|
-
def addFillingFraction(self, arg0, arg1:
|
|
175
|
-
def addFillingFractionInMaterial(
|
|
176
|
-
|
|
185
|
+
def addFillingFraction(self, arg0, arg1: typing.SupportsFloat) -> bool: ...
|
|
186
|
+
def addFillingFractionInMaterial(
|
|
187
|
+
self, arg0, arg1: typing.SupportsFloat, arg2: typing.SupportsInt
|
|
188
|
+
) -> bool: ...
|
|
189
|
+
def addScalarData(self, arg0: str, arg1: typing.SupportsFloat) -> None: ...
|
|
177
190
|
def buildNeighborhood(self, forceRebuild: bool = ...) -> None: ...
|
|
178
191
|
def clear(self) -> None: ...
|
|
179
192
|
def fromLevelSets(
|
|
180
193
|
self,
|
|
181
|
-
levelSets:
|
|
194
|
+
levelSets: collections.abc.Sequence[viennals3d.viennals3d.Domain],
|
|
182
195
|
materialMap: viennals3d.viennals3d.MaterialMap = ...,
|
|
183
|
-
depth:
|
|
196
|
+
depth: typing.SupportsFloat = ...,
|
|
184
197
|
) -> None: ...
|
|
185
|
-
def getAverageFillingFraction(self, arg0, arg1:
|
|
198
|
+
def getAverageFillingFraction(self, arg0, arg1: typing.SupportsFloat) -> float: ...
|
|
186
199
|
def getBoundingBox(self, *args, **kwargs): ...
|
|
187
200
|
def getCellCenter(self, *args, **kwargs): ...
|
|
188
201
|
def getCellGrid(self) -> viennals3d.viennals3d.Mesh: ...
|
|
@@ -202,11 +215,13 @@ class DenseCellSet:
|
|
|
202
215
|
def getSurface(self) -> viennals3d.viennals3d.Domain: ...
|
|
203
216
|
def readCellSetData(self, arg0: str) -> None: ...
|
|
204
217
|
def setCellSetPosition(self, arg0: bool) -> None: ...
|
|
205
|
-
def setCoverMaterial(self, arg0:
|
|
218
|
+
def setCoverMaterial(self, arg0: typing.SupportsInt) -> None: ...
|
|
206
219
|
@overload
|
|
207
|
-
def setFillingFraction(
|
|
220
|
+
def setFillingFraction(
|
|
221
|
+
self, arg0: typing.SupportsInt, arg1: typing.SupportsFloat
|
|
222
|
+
) -> bool: ...
|
|
208
223
|
@overload
|
|
209
|
-
def setFillingFraction(self, arg0, arg1:
|
|
224
|
+
def setFillingFraction(self, arg0, arg1: typing.SupportsFloat) -> bool: ...
|
|
210
225
|
def setPeriodicBoundary(self, arg0) -> None: ...
|
|
211
226
|
def updateMaterials(self) -> None: ...
|
|
212
227
|
def updateSurface(self) -> None: ...
|
|
@@ -218,8 +233,8 @@ class DirectionalProcess(ProcessModel):
|
|
|
218
233
|
def __init__(
|
|
219
234
|
self,
|
|
220
235
|
direction,
|
|
221
|
-
directionalVelocity:
|
|
222
|
-
isotropicVelocity:
|
|
236
|
+
directionalVelocity: typing.SupportsFloat,
|
|
237
|
+
isotropicVelocity: typing.SupportsFloat = ...,
|
|
223
238
|
maskMaterial: Material = ...,
|
|
224
239
|
calculateVisibility: bool = ...,
|
|
225
240
|
) -> None: ...
|
|
@@ -227,13 +242,13 @@ class DirectionalProcess(ProcessModel):
|
|
|
227
242
|
def __init__(
|
|
228
243
|
self,
|
|
229
244
|
direction,
|
|
230
|
-
directionalVelocity:
|
|
231
|
-
isotropicVelocity:
|
|
232
|
-
maskMaterial:
|
|
245
|
+
directionalVelocity: typing.SupportsFloat,
|
|
246
|
+
isotropicVelocity: typing.SupportsFloat,
|
|
247
|
+
maskMaterial: collections.abc.Sequence[Material],
|
|
233
248
|
calculateVisibility: bool = ...,
|
|
234
249
|
) -> None: ...
|
|
235
250
|
@overload
|
|
236
|
-
def __init__(self, rateSets:
|
|
251
|
+
def __init__(self, rateSets: collections.abc.Sequence[RateSet]) -> None: ...
|
|
237
252
|
@overload
|
|
238
253
|
def __init__(self, rateSet: RateSet) -> None: ...
|
|
239
254
|
|
|
@@ -245,18 +260,42 @@ class Domain:
|
|
|
245
260
|
@overload
|
|
246
261
|
def __init__(
|
|
247
262
|
self,
|
|
248
|
-
gridDelta:
|
|
249
|
-
xExtent:
|
|
250
|
-
yExtent:
|
|
263
|
+
gridDelta: typing.SupportsFloat,
|
|
264
|
+
xExtent: typing.SupportsFloat,
|
|
265
|
+
yExtent: typing.SupportsFloat,
|
|
251
266
|
boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
|
|
252
267
|
) -> None: ...
|
|
268
|
+
@overload
|
|
269
|
+
def __init__(
|
|
270
|
+
self, bounds, boundaryConditions, gridDelta: typing.SupportsFloat = ...
|
|
271
|
+
) -> None: ...
|
|
272
|
+
@overload
|
|
273
|
+
def addMetaData(self, arg0: str, arg1: typing.SupportsFloat) -> None: ...
|
|
274
|
+
@overload
|
|
275
|
+
def addMetaData(
|
|
276
|
+
self, arg0: str, arg1: collections.abc.Sequence[typing.SupportsFloat]
|
|
277
|
+
) -> None: ...
|
|
278
|
+
@overload
|
|
279
|
+
def addMetaData(
|
|
280
|
+
self,
|
|
281
|
+
arg0: collections.abc.Mapping[
|
|
282
|
+
str, collections.abc.Sequence[typing.SupportsFloat]
|
|
283
|
+
],
|
|
284
|
+
) -> None: ...
|
|
253
285
|
def applyBooleanOperation(
|
|
254
286
|
self, arg0: viennals3d.viennals3d.Domain, arg1
|
|
255
287
|
) -> None: ...
|
|
256
288
|
def clear(self) -> None: ...
|
|
289
|
+
def clearMetaData(self, clearDomainData: bool = ...) -> None: ...
|
|
257
290
|
def deepCopy(self, arg0: Domain) -> None: ...
|
|
291
|
+
@staticmethod
|
|
292
|
+
def disableMetaData() -> None: ...
|
|
258
293
|
def duplicateTopLevelSet(self, arg0: Material) -> None: ...
|
|
259
|
-
|
|
294
|
+
@staticmethod
|
|
295
|
+
def enableMetaData(level: MetaDataLevel = ...) -> None: ...
|
|
296
|
+
def generateCellSet(
|
|
297
|
+
self, arg0: typing.SupportsFloat, arg1: Material, arg2: bool
|
|
298
|
+
) -> None: ...
|
|
260
299
|
def getBoundaryConditions(self, *args, **kwargs): ...
|
|
261
300
|
def getBoundingBox(self, *args, **kwargs): ...
|
|
262
301
|
def getCellSet(self) -> DenseCellSet: ...
|
|
@@ -264,6 +303,7 @@ class Domain:
|
|
|
264
303
|
def getGridDelta(self) -> float: ...
|
|
265
304
|
def getLevelSets(self) -> list[viennals3d.viennals3d.Domain]: ...
|
|
266
305
|
def getMaterialMap(self, *args, **kwargs): ...
|
|
306
|
+
def getMetaData(self) -> dict[str, list[float]]: ...
|
|
267
307
|
def getSetup(self, *args, **kwargs): ...
|
|
268
308
|
def insertNextLevelSet(
|
|
269
309
|
self, levelset: viennals3d.viennals3d.Domain, wrapLowerLevelSet: bool = ...
|
|
@@ -274,25 +314,27 @@ class Domain:
|
|
|
274
314
|
material: Material,
|
|
275
315
|
wrapLowerLevelSet: bool = ...,
|
|
276
316
|
) -> None: ...
|
|
277
|
-
def print(self) -> None: ...
|
|
278
|
-
def removeLevelSet(self, arg0:
|
|
317
|
+
def print(self, arg0, arg1: bool) -> None: ...
|
|
318
|
+
def removeLevelSet(self, arg0: typing.SupportsInt, arg1: bool) -> None: ...
|
|
279
319
|
def removeMaterial(self, arg0: Material) -> None: ...
|
|
280
320
|
def removeTopLevelSet(self) -> None: ...
|
|
281
321
|
def saveHullMesh(
|
|
282
|
-
self, filename: str, wrappingLayerEpsilon:
|
|
322
|
+
self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
|
|
323
|
+
) -> None: ...
|
|
324
|
+
def saveLevelSetMesh(
|
|
325
|
+
self, filename: str, width: typing.SupportsInt = ...
|
|
283
326
|
) -> None: ...
|
|
284
|
-
def saveLevelSetMesh(self, filename: str, width: int = ...) -> None: ...
|
|
285
327
|
def saveLevelSets(self, filename: str) -> None: ...
|
|
286
328
|
def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
|
|
287
329
|
def saveVolumeMesh(
|
|
288
|
-
self, filename: str, wrappingLayerEpsilon:
|
|
330
|
+
self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
|
|
289
331
|
) -> None: ...
|
|
290
332
|
def setMaterialMap(self, arg0) -> None: ...
|
|
291
333
|
def setup(
|
|
292
334
|
self,
|
|
293
|
-
gridDelta:
|
|
294
|
-
xExtent:
|
|
295
|
-
yExtent:
|
|
335
|
+
gridDelta: typing.SupportsFloat,
|
|
336
|
+
xExtent: typing.SupportsFloat,
|
|
337
|
+
yExtent: typing.SupportsFloat = ...,
|
|
296
338
|
boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
|
|
297
339
|
) -> None: ...
|
|
298
340
|
|
|
@@ -302,9 +344,9 @@ class DomainSetup:
|
|
|
302
344
|
@overload
|
|
303
345
|
def __init__(
|
|
304
346
|
self,
|
|
305
|
-
gridDelta:
|
|
306
|
-
xExtent:
|
|
307
|
-
yExtent:
|
|
347
|
+
gridDelta: typing.SupportsFloat,
|
|
348
|
+
xExtent: typing.SupportsFloat,
|
|
349
|
+
yExtent: typing.SupportsFloat,
|
|
308
350
|
boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
|
|
309
351
|
) -> None: ...
|
|
310
352
|
def boundaryCons(self, *args, **kwargs): ...
|
|
@@ -324,10 +366,12 @@ class FaradayCageEtching(ProcessModel):
|
|
|
324
366
|
@overload
|
|
325
367
|
def __init__(self) -> None: ...
|
|
326
368
|
@overload
|
|
327
|
-
def __init__(self, maskMaterials:
|
|
369
|
+
def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
|
|
328
370
|
@overload
|
|
329
371
|
def __init__(
|
|
330
|
-
self,
|
|
372
|
+
self,
|
|
373
|
+
maskMaterials: collections.abc.Sequence[Material],
|
|
374
|
+
parameters: FaradayCageParameters,
|
|
331
375
|
) -> None: ...
|
|
332
376
|
def getParameters(self) -> FaradayCageParameters: ...
|
|
333
377
|
def setParameters(self, arg0: FaradayCageParameters) -> None: ...
|
|
@@ -343,14 +387,14 @@ class FluorocarbonEtching(ProcessModel):
|
|
|
343
387
|
@overload
|
|
344
388
|
def __init__(
|
|
345
389
|
self,
|
|
346
|
-
ionFlux:
|
|
347
|
-
etchantFlux:
|
|
348
|
-
polyFlux:
|
|
349
|
-
meanIonEnergy:
|
|
350
|
-
sigmaIonEnergy:
|
|
351
|
-
ionExponent:
|
|
352
|
-
deltaP:
|
|
353
|
-
etchStopDepth:
|
|
390
|
+
ionFlux: typing.SupportsFloat,
|
|
391
|
+
etchantFlux: typing.SupportsFloat,
|
|
392
|
+
polyFlux: typing.SupportsFloat,
|
|
393
|
+
meanIonEnergy: typing.SupportsFloat = ...,
|
|
394
|
+
sigmaIonEnergy: typing.SupportsFloat = ...,
|
|
395
|
+
ionExponent: typing.SupportsFloat = ...,
|
|
396
|
+
deltaP: typing.SupportsFloat = ...,
|
|
397
|
+
etchStopDepth: typing.SupportsFloat = ...,
|
|
354
398
|
) -> None: ...
|
|
355
399
|
@overload
|
|
356
400
|
def __init__(self, parameters: FluorocarbonParameters) -> None: ...
|
|
@@ -432,34 +476,37 @@ class GDSGeometry:
|
|
|
432
476
|
@overload
|
|
433
477
|
def __init__(self) -> None: ...
|
|
434
478
|
@overload
|
|
435
|
-
def __init__(self, gridDelta:
|
|
479
|
+
def __init__(self, gridDelta: typing.SupportsFloat) -> None: ...
|
|
436
480
|
@overload
|
|
437
|
-
def __init__(self, gridDelta:
|
|
481
|
+
def __init__(self, gridDelta: typing.SupportsFloat, boundaryConditions) -> None: ...
|
|
438
482
|
def addBlur(
|
|
439
483
|
self,
|
|
440
|
-
sigmas:
|
|
441
|
-
weights:
|
|
442
|
-
threshold:
|
|
443
|
-
delta:
|
|
444
|
-
gridRefinement:
|
|
484
|
+
sigmas: collections.abc.Sequence[typing.SupportsFloat],
|
|
485
|
+
weights: collections.abc.Sequence[typing.SupportsFloat],
|
|
486
|
+
threshold: typing.SupportsFloat = ...,
|
|
487
|
+
delta: typing.SupportsFloat = ...,
|
|
488
|
+
gridRefinement: typing.SupportsInt = ...,
|
|
445
489
|
) -> None: ...
|
|
446
490
|
def getAllLayers(self) -> set[int]: ...
|
|
447
491
|
def getBounds(self, *args, **kwargs): ...
|
|
448
492
|
def getNumberOfStructures(self) -> int: ...
|
|
449
493
|
def layerToLevelSet(
|
|
450
494
|
self,
|
|
451
|
-
layer:
|
|
452
|
-
baseHeight:
|
|
453
|
-
height:
|
|
495
|
+
layer: typing.SupportsInt,
|
|
496
|
+
baseHeight: typing.SupportsFloat = ...,
|
|
497
|
+
height: typing.SupportsFloat = ...,
|
|
454
498
|
mask: bool = ...,
|
|
455
499
|
blurLayer: bool = ...,
|
|
456
500
|
) -> viennals3d.viennals3d.Domain: ...
|
|
457
501
|
def print(self) -> None: ...
|
|
458
502
|
def setBoundaryConditions(
|
|
459
|
-
self,
|
|
503
|
+
self,
|
|
504
|
+
arg0: collections.abc.Sequence[viennals3d.viennals3d.BoundaryConditionEnum],
|
|
505
|
+
) -> None: ...
|
|
506
|
+
def setBoundaryPadding(
|
|
507
|
+
self, arg0: typing.SupportsFloat, arg1: typing.SupportsFloat
|
|
460
508
|
) -> None: ...
|
|
461
|
-
def
|
|
462
|
-
def setGridDelta(self, arg0: float) -> None: ...
|
|
509
|
+
def setGridDelta(self, arg0: typing.SupportsFloat) -> None: ...
|
|
463
510
|
|
|
464
511
|
class GDSReader:
|
|
465
512
|
def __init__(self) -> None: ...
|
|
@@ -470,13 +517,26 @@ class GDSReader:
|
|
|
470
517
|
class GeometryFactory:
|
|
471
518
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
472
519
|
def makeBoxStencil(
|
|
473
|
-
self,
|
|
520
|
+
self,
|
|
521
|
+
position,
|
|
522
|
+
width: typing.SupportsFloat,
|
|
523
|
+
height: typing.SupportsFloat,
|
|
524
|
+
angle: typing.SupportsFloat = ...,
|
|
525
|
+
length: typing.SupportsFloat = ...,
|
|
474
526
|
) -> viennals3d.viennals3d.Domain: ...
|
|
475
527
|
def makeCylinderStencil(
|
|
476
|
-
self,
|
|
528
|
+
self,
|
|
529
|
+
position,
|
|
530
|
+
radius: typing.SupportsFloat,
|
|
531
|
+
height: typing.SupportsFloat,
|
|
532
|
+
angle: typing.SupportsFloat = ...,
|
|
533
|
+
) -> viennals3d.viennals3d.Domain: ...
|
|
534
|
+
def makeMask(
|
|
535
|
+
self, base: typing.SupportsFloat, height: typing.SupportsFloat
|
|
536
|
+
) -> viennals3d.viennals3d.Domain: ...
|
|
537
|
+
def makeSubstrate(
|
|
538
|
+
self, base: typing.SupportsFloat
|
|
477
539
|
) -> viennals3d.viennals3d.Domain: ...
|
|
478
|
-
def makeMask(self, base: float, height: float) -> viennals3d.viennals3d.Domain: ...
|
|
479
|
-
def makeSubstrate(self, base: float) -> viennals3d.viennals3d.Domain: ...
|
|
480
540
|
|
|
481
541
|
class HBrO2Etching(ProcessModel):
|
|
482
542
|
@overload
|
|
@@ -484,14 +544,14 @@ class HBrO2Etching(ProcessModel):
|
|
|
484
544
|
@overload
|
|
485
545
|
def __init__(
|
|
486
546
|
self,
|
|
487
|
-
ionFlux:
|
|
488
|
-
etchantFlux:
|
|
489
|
-
oxygenFlux:
|
|
490
|
-
meanIonEnergy:
|
|
491
|
-
sigmaIonEnergy:
|
|
492
|
-
ionExponent:
|
|
493
|
-
oxySputterYield:
|
|
494
|
-
etchStopDepth:
|
|
547
|
+
ionFlux: typing.SupportsFloat,
|
|
548
|
+
etchantFlux: typing.SupportsFloat,
|
|
549
|
+
oxygenFlux: typing.SupportsFloat,
|
|
550
|
+
meanIonEnergy: typing.SupportsFloat = ...,
|
|
551
|
+
sigmaIonEnergy: typing.SupportsFloat = ...,
|
|
552
|
+
ionExponent: typing.SupportsFloat = ...,
|
|
553
|
+
oxySputterYield: typing.SupportsFloat = ...,
|
|
554
|
+
etchStopDepth: typing.SupportsFloat = ...,
|
|
495
555
|
) -> None: ...
|
|
496
556
|
@overload
|
|
497
557
|
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
|
|
@@ -506,7 +566,7 @@ class HoleShape:
|
|
|
506
566
|
Half: ClassVar[HoleShape] = ...
|
|
507
567
|
Quarter: ClassVar[HoleShape] = ...
|
|
508
568
|
__entries: ClassVar[dict] = ...
|
|
509
|
-
def __init__(self, value:
|
|
569
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
510
570
|
def __eq__(self, other: object) -> bool: ...
|
|
511
571
|
def __hash__(self) -> int: ...
|
|
512
572
|
def __index__(self) -> int: ...
|
|
@@ -530,7 +590,7 @@ class IBEParameters:
|
|
|
530
590
|
sigmaEnergy: float
|
|
531
591
|
thresholdEnergy: float
|
|
532
592
|
tiltAngle: float
|
|
533
|
-
yieldFunction: Callable[[
|
|
593
|
+
yieldFunction: collections.abc.Callable[[typing.SupportsFloat], float]
|
|
534
594
|
def __init__(self) -> None: ...
|
|
535
595
|
|
|
536
596
|
class Interpolation:
|
|
@@ -539,7 +599,7 @@ class Interpolation:
|
|
|
539
599
|
IDW: ClassVar[Interpolation] = ...
|
|
540
600
|
LINEAR: ClassVar[Interpolation] = ...
|
|
541
601
|
__entries: ClassVar[dict] = ...
|
|
542
|
-
def __init__(self, value:
|
|
602
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
543
603
|
def __eq__(self, other: object) -> bool: ...
|
|
544
604
|
def __hash__(self) -> int: ...
|
|
545
605
|
def __index__(self) -> int: ...
|
|
@@ -554,19 +614,33 @@ class IonBeamEtching(ProcessModel):
|
|
|
554
614
|
@overload
|
|
555
615
|
def __init__(self) -> None: ...
|
|
556
616
|
@overload
|
|
557
|
-
def __init__(self, maskMaterials:
|
|
617
|
+
def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
|
|
558
618
|
@overload
|
|
559
619
|
def __init__(
|
|
560
|
-
self,
|
|
620
|
+
self,
|
|
621
|
+
maskMaterials: collections.abc.Sequence[Material],
|
|
622
|
+
parameters: IBEParameters,
|
|
561
623
|
) -> None: ...
|
|
562
624
|
def getParameters(self) -> IBEParameters: ...
|
|
563
625
|
def setParameters(self, arg0: IBEParameters) -> None: ...
|
|
564
626
|
|
|
565
627
|
class IsotropicProcess(ProcessModel):
|
|
566
628
|
@overload
|
|
567
|
-
def __init__(
|
|
629
|
+
def __init__(
|
|
630
|
+
self, rate: typing.SupportsFloat = ..., maskMaterial: Material = ...
|
|
631
|
+
) -> None: ...
|
|
632
|
+
@overload
|
|
633
|
+
def __init__(
|
|
634
|
+
self,
|
|
635
|
+
rate: typing.SupportsFloat,
|
|
636
|
+
maskMaterial: collections.abc.Sequence[Material],
|
|
637
|
+
) -> None: ...
|
|
568
638
|
@overload
|
|
569
|
-
def __init__(
|
|
639
|
+
def __init__(
|
|
640
|
+
self,
|
|
641
|
+
materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
|
|
642
|
+
defaultRate: typing.SupportsFloat = ...,
|
|
643
|
+
) -> None: ...
|
|
570
644
|
|
|
571
645
|
class Length:
|
|
572
646
|
def __init__(self, *args, **kwargs) -> None: ...
|
|
@@ -592,7 +666,7 @@ class LogLevel:
|
|
|
592
666
|
TIMING: ClassVar[LogLevel] = ...
|
|
593
667
|
WARNING: ClassVar[LogLevel] = ...
|
|
594
668
|
__entries: ClassVar[dict] = ...
|
|
595
|
-
def __init__(self, value:
|
|
669
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
596
670
|
def __eq__(self, other: object) -> bool: ...
|
|
597
671
|
def __hash__(self) -> int: ...
|
|
598
672
|
def __index__(self) -> int: ...
|
|
@@ -609,9 +683,11 @@ class Logger:
|
|
|
609
683
|
def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
|
|
610
684
|
def addInfo(self, arg0: str) -> Logger: ...
|
|
611
685
|
@overload
|
|
612
|
-
def addTiming(self, arg0: str, arg1:
|
|
686
|
+
def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
|
|
613
687
|
@overload
|
|
614
|
-
def addTiming(
|
|
688
|
+
def addTiming(
|
|
689
|
+
self, arg0: str, arg1: typing.SupportsFloat, arg2: typing.SupportsFloat
|
|
690
|
+
) -> Logger: ...
|
|
615
691
|
def addWarning(self, arg0: str) -> Logger: ...
|
|
616
692
|
@staticmethod
|
|
617
693
|
def getInstance() -> Logger: ...
|
|
@@ -795,7 +871,7 @@ class Material:
|
|
|
795
871
|
Undefined: ClassVar[Material] = ...
|
|
796
872
|
W: ClassVar[Material] = ...
|
|
797
873
|
__entries: ClassVar[dict] = ...
|
|
798
|
-
def __init__(self, value:
|
|
874
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
799
875
|
def __eq__(self, other: object) -> bool: ...
|
|
800
876
|
def __hash__(self) -> int: ...
|
|
801
877
|
def __index__(self) -> int: ...
|
|
@@ -808,46 +884,67 @@ class Material:
|
|
|
808
884
|
|
|
809
885
|
class MaterialMap:
|
|
810
886
|
def __init__(self) -> None: ...
|
|
811
|
-
def getMaterialAtIdx(self, arg0:
|
|
887
|
+
def getMaterialAtIdx(self, arg0: typing.SupportsInt) -> Material: ...
|
|
812
888
|
def getMaterialMap(self) -> viennals3d.viennals3d.MaterialMap: ...
|
|
813
889
|
@staticmethod
|
|
814
890
|
def getMaterialName(arg0: Material) -> str: ...
|
|
815
891
|
def insertNextMaterial(self, material: Material = ...) -> None: ...
|
|
816
892
|
@staticmethod
|
|
817
|
-
def isMaterial(arg0:
|
|
893
|
+
def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
|
|
818
894
|
@staticmethod
|
|
819
|
-
def mapToMaterial(arg0:
|
|
895
|
+
def mapToMaterial(arg0: typing.SupportsFloat) -> Material: ...
|
|
820
896
|
def size(self) -> int: ...
|
|
821
897
|
|
|
898
|
+
class MetaDataLevel:
|
|
899
|
+
__members__: ClassVar[dict] = ... # read-only
|
|
900
|
+
DOMAIN: ClassVar[MetaDataLevel] = ...
|
|
901
|
+
FULL: ClassVar[MetaDataLevel] = ...
|
|
902
|
+
NONE: ClassVar[MetaDataLevel] = ...
|
|
903
|
+
PROCESS: ClassVar[MetaDataLevel] = ...
|
|
904
|
+
__entries: ClassVar[dict] = ...
|
|
905
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
906
|
+
def __eq__(self, other: object) -> bool: ...
|
|
907
|
+
def __hash__(self) -> int: ...
|
|
908
|
+
def __index__(self) -> int: ...
|
|
909
|
+
def __int__(self) -> int: ...
|
|
910
|
+
def __ne__(self, other: object) -> bool: ...
|
|
911
|
+
@property
|
|
912
|
+
def name(self) -> str: ...
|
|
913
|
+
@property
|
|
914
|
+
def value(self) -> int: ...
|
|
915
|
+
|
|
822
916
|
class MultiParticleProcess(ProcessModel):
|
|
823
917
|
def __init__(self) -> None: ...
|
|
824
918
|
def addIonParticle(
|
|
825
919
|
self,
|
|
826
|
-
sourcePower:
|
|
827
|
-
thetaRMin:
|
|
828
|
-
thetaRMax:
|
|
829
|
-
minAngle:
|
|
830
|
-
B_sp:
|
|
831
|
-
meanEnergy:
|
|
832
|
-
sigmaEnergy:
|
|
833
|
-
thresholdEnergy:
|
|
834
|
-
inflectAngle:
|
|
835
|
-
n:
|
|
920
|
+
sourcePower: typing.SupportsFloat,
|
|
921
|
+
thetaRMin: typing.SupportsFloat = ...,
|
|
922
|
+
thetaRMax: typing.SupportsFloat = ...,
|
|
923
|
+
minAngle: typing.SupportsFloat = ...,
|
|
924
|
+
B_sp: typing.SupportsFloat = ...,
|
|
925
|
+
meanEnergy: typing.SupportsFloat = ...,
|
|
926
|
+
sigmaEnergy: typing.SupportsFloat = ...,
|
|
927
|
+
thresholdEnergy: typing.SupportsFloat = ...,
|
|
928
|
+
inflectAngle: typing.SupportsFloat = ...,
|
|
929
|
+
n: typing.SupportsFloat = ...,
|
|
836
930
|
label: str = ...,
|
|
837
931
|
) -> None: ...
|
|
838
932
|
@overload
|
|
839
933
|
def addNeutralParticle(
|
|
840
|
-
self, stickingProbability:
|
|
934
|
+
self, stickingProbability: typing.SupportsFloat, label: str = ...
|
|
841
935
|
) -> None: ...
|
|
842
936
|
@overload
|
|
843
937
|
def addNeutralParticle(
|
|
844
938
|
self,
|
|
845
|
-
materialSticking:
|
|
846
|
-
defaultStickingProbability:
|
|
939
|
+
materialSticking: collections.abc.Mapping[Material, typing.SupportsFloat],
|
|
940
|
+
defaultStickingProbability: typing.SupportsFloat = ...,
|
|
847
941
|
label: str = ...,
|
|
848
942
|
) -> None: ...
|
|
849
943
|
def setRateFunction(
|
|
850
|
-
self,
|
|
944
|
+
self,
|
|
945
|
+
arg0: collections.abc.Callable[
|
|
946
|
+
[collections.abc.Sequence[typing.SupportsFloat], Material], float
|
|
947
|
+
],
|
|
851
948
|
) -> None: ...
|
|
852
949
|
|
|
853
950
|
class NormalizationType:
|
|
@@ -855,7 +952,7 @@ class NormalizationType:
|
|
|
855
952
|
MAX: ClassVar[NormalizationType] = ...
|
|
856
953
|
SOURCE: ClassVar[NormalizationType] = ...
|
|
857
954
|
__entries: ClassVar[dict] = ...
|
|
858
|
-
def __init__(self, value:
|
|
955
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
859
956
|
def __eq__(self, other: object) -> bool: ...
|
|
860
957
|
def __hash__(self) -> int: ...
|
|
861
958
|
def __index__(self) -> int: ...
|
|
@@ -869,18 +966,18 @@ class NormalizationType:
|
|
|
869
966
|
class OxideRegrowth(ProcessModel):
|
|
870
967
|
def __init__(
|
|
871
968
|
self,
|
|
872
|
-
nitrideEtchRate:
|
|
873
|
-
oxideEtchRate:
|
|
874
|
-
redepositionRate:
|
|
875
|
-
redepositionThreshold:
|
|
876
|
-
redepositionTimeInt:
|
|
877
|
-
diffusionCoefficient:
|
|
878
|
-
sinkStrength:
|
|
879
|
-
scallopVelocity:
|
|
880
|
-
centerVelocity:
|
|
881
|
-
topHeight:
|
|
882
|
-
centerWidth:
|
|
883
|
-
stabilityFactor:
|
|
969
|
+
nitrideEtchRate: typing.SupportsFloat,
|
|
970
|
+
oxideEtchRate: typing.SupportsFloat,
|
|
971
|
+
redepositionRate: typing.SupportsFloat,
|
|
972
|
+
redepositionThreshold: typing.SupportsFloat,
|
|
973
|
+
redepositionTimeInt: typing.SupportsFloat,
|
|
974
|
+
diffusionCoefficient: typing.SupportsFloat,
|
|
975
|
+
sinkStrength: typing.SupportsFloat,
|
|
976
|
+
scallopVelocity: typing.SupportsFloat,
|
|
977
|
+
centerVelocity: typing.SupportsFloat,
|
|
978
|
+
topHeight: typing.SupportsFloat,
|
|
979
|
+
centerWidth: typing.SupportsFloat,
|
|
980
|
+
stabilityFactor: typing.SupportsFloat,
|
|
884
981
|
) -> None: ...
|
|
885
982
|
|
|
886
983
|
class Particle:
|
|
@@ -889,7 +986,15 @@ class Particle:
|
|
|
889
986
|
def getSourceDistributionPower(self) -> float: ...
|
|
890
987
|
def initNew(self, arg0) -> None: ...
|
|
891
988
|
def surfaceCollision(
|
|
892
|
-
self,
|
|
989
|
+
self,
|
|
990
|
+
arg0: typing.SupportsFloat,
|
|
991
|
+
arg1,
|
|
992
|
+
arg2,
|
|
993
|
+
arg3: typing.SupportsInt,
|
|
994
|
+
arg4: typing.SupportsInt,
|
|
995
|
+
arg5,
|
|
996
|
+
arg6,
|
|
997
|
+
arg7,
|
|
893
998
|
) -> None: ...
|
|
894
999
|
def surfaceReflection(self, *args, **kwargs): ...
|
|
895
1000
|
|
|
@@ -897,9 +1002,11 @@ class Planarize:
|
|
|
897
1002
|
@overload
|
|
898
1003
|
def __init__(self) -> None: ...
|
|
899
1004
|
@overload
|
|
900
|
-
def __init__(
|
|
1005
|
+
def __init__(
|
|
1006
|
+
self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
|
|
1007
|
+
) -> None: ...
|
|
901
1008
|
def apply(self) -> None: ...
|
|
902
|
-
def setCutoffPosition(self, arg0:
|
|
1009
|
+
def setCutoffPosition(self, arg0: typing.SupportsFloat) -> None: ...
|
|
903
1010
|
def setDomain(self, arg0: Domain) -> None: ...
|
|
904
1011
|
|
|
905
1012
|
class PlasmaEtchingParameters:
|
|
@@ -938,6 +1045,13 @@ class PlasmaEtchingParametersPassivation:
|
|
|
938
1045
|
Eth_ie: float
|
|
939
1046
|
def __init__(self) -> None: ...
|
|
940
1047
|
|
|
1048
|
+
class PlasmaEtchingParametersPolymer:
|
|
1049
|
+
A_sp: float
|
|
1050
|
+
B_sp: float
|
|
1051
|
+
Eth_sp: float
|
|
1052
|
+
rho: float
|
|
1053
|
+
def __init__(self) -> None: ...
|
|
1054
|
+
|
|
941
1055
|
class PlasmaEtchingParametersSubstrate:
|
|
942
1056
|
A_ie: float
|
|
943
1057
|
A_sp: float
|
|
@@ -964,25 +1078,25 @@ class Process:
|
|
|
964
1078
|
def getProcessDuration(self) -> float: ...
|
|
965
1079
|
def getRayTracingParameters(self) -> RayTracingParameters: ...
|
|
966
1080
|
def setAdvectionParameters(self, arg0: AdvectionParameters) -> None: ...
|
|
967
|
-
def setCoverageDeltaThreshold(self, arg0:
|
|
1081
|
+
def setCoverageDeltaThreshold(self, arg0: typing.SupportsFloat) -> None: ...
|
|
968
1082
|
def setDomain(self, *args, **kwargs): ...
|
|
969
1083
|
def setIntegrationScheme(
|
|
970
1084
|
self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
|
|
971
1085
|
) -> None: ...
|
|
972
|
-
def setMaxCoverageInitIterations(self, arg0:
|
|
973
|
-
def setNumberOfRaysPerPoint(self, arg0:
|
|
974
|
-
def setProcessDuration(self, arg0:
|
|
1086
|
+
def setMaxCoverageInitIterations(self, arg0: typing.SupportsInt) -> None: ...
|
|
1087
|
+
def setNumberOfRaysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
|
|
1088
|
+
def setProcessDuration(self, arg0: typing.SupportsFloat) -> None: ...
|
|
975
1089
|
def setProcessModel(self, arg0: ProcessModel) -> None: ...
|
|
976
|
-
def setRayTracingDiskRadius(self, arg0:
|
|
1090
|
+
def setRayTracingDiskRadius(self, arg0: typing.SupportsFloat) -> None: ...
|
|
977
1091
|
def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
|
|
978
1092
|
def setSourceDirection(self, arg0) -> None: ...
|
|
979
|
-
def setTimeStepRatio(self, arg0:
|
|
1093
|
+
def setTimeStepRatio(self, arg0: typing.SupportsFloat) -> None: ...
|
|
980
1094
|
|
|
981
1095
|
class ProcessModel:
|
|
982
1096
|
def __init__(self) -> None: ...
|
|
983
1097
|
def getAdvectionCallback(self, *args, **kwargs): ...
|
|
984
1098
|
def getGeometricModel(self, *args, **kwargs): ...
|
|
985
|
-
def getParticleLogSize(self, arg0:
|
|
1099
|
+
def getParticleLogSize(self, arg0: typing.SupportsInt) -> int: ...
|
|
986
1100
|
def getParticleTypes(self, *args, **kwargs): ...
|
|
987
1101
|
def getPrimaryDirection(self, *args, **kwargs): ...
|
|
988
1102
|
def getProcessName(self) -> str | None: ...
|
|
@@ -999,9 +1113,9 @@ class ProcessModel:
|
|
|
999
1113
|
class ProcessParams:
|
|
1000
1114
|
def __init__(self) -> None: ...
|
|
1001
1115
|
@overload
|
|
1002
|
-
def getScalarData(self, arg0:
|
|
1116
|
+
def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
|
|
1003
1117
|
@overload
|
|
1004
|
-
def getScalarData(self, arg0:
|
|
1118
|
+
def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
|
|
1005
1119
|
@overload
|
|
1006
1120
|
def getScalarData(self, arg0: str) -> float: ...
|
|
1007
1121
|
@overload
|
|
@@ -1009,15 +1123,15 @@ class ProcessParams:
|
|
|
1009
1123
|
@overload
|
|
1010
1124
|
def getScalarData(self) -> list[float]: ...
|
|
1011
1125
|
def getScalarDataIndex(self, arg0: str) -> int: ...
|
|
1012
|
-
def getScalarDataLabel(self, arg0:
|
|
1013
|
-
def insertNextScalar(self, arg0:
|
|
1126
|
+
def getScalarDataLabel(self, arg0: typing.SupportsInt) -> str: ...
|
|
1127
|
+
def insertNextScalar(self, arg0: typing.SupportsFloat, arg1: str) -> None: ...
|
|
1014
1128
|
|
|
1015
1129
|
class RateGrid:
|
|
1016
1130
|
def __init__(self) -> None: ...
|
|
1017
1131
|
def interpolate(self, coord) -> float: ...
|
|
1018
1132
|
def loadFromCSV(self, filename: str) -> bool: ...
|
|
1019
|
-
def setCustomInterpolator(self, function: Callable) -> None: ...
|
|
1020
|
-
def setIDWNeighbors(self, k:
|
|
1133
|
+
def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
|
|
1134
|
+
def setIDWNeighbors(self, k: typing.SupportsInt) -> None: ...
|
|
1021
1135
|
@overload
|
|
1022
1136
|
def setInterpolationMode(self, mode: Interpolation) -> None: ...
|
|
1023
1137
|
@overload
|
|
@@ -1033,9 +1147,9 @@ class RateSet:
|
|
|
1033
1147
|
def __init__(
|
|
1034
1148
|
self,
|
|
1035
1149
|
direction=...,
|
|
1036
|
-
directionalVelocity:
|
|
1037
|
-
isotropicVelocity:
|
|
1038
|
-
maskMaterials:
|
|
1150
|
+
directionalVelocity: typing.SupportsFloat = ...,
|
|
1151
|
+
isotropicVelocity: typing.SupportsFloat = ...,
|
|
1152
|
+
maskMaterials: collections.abc.Sequence[Material] = ...,
|
|
1039
1153
|
calculateVisibility: bool = ...,
|
|
1040
1154
|
) -> None: ...
|
|
1041
1155
|
def print(self) -> None: ...
|
|
@@ -1050,20 +1164,48 @@ class RayTracingParameters:
|
|
|
1050
1164
|
useRandomSeeds: bool
|
|
1051
1165
|
def __init__(self) -> None: ...
|
|
1052
1166
|
|
|
1167
|
+
class Reader:
|
|
1168
|
+
@overload
|
|
1169
|
+
def __init__(self) -> None: ...
|
|
1170
|
+
@overload
|
|
1171
|
+
def __init__(self, fileName: str) -> None: ...
|
|
1172
|
+
def apply(self) -> Domain: ...
|
|
1173
|
+
def setFileName(self, arg0: str) -> None: ...
|
|
1174
|
+
|
|
1175
|
+
class SF6C4F8Etching(ProcessModel):
|
|
1176
|
+
@overload
|
|
1177
|
+
def __init__(self) -> None: ...
|
|
1178
|
+
@overload
|
|
1179
|
+
def __init__(
|
|
1180
|
+
self,
|
|
1181
|
+
ionFlux: typing.SupportsFloat,
|
|
1182
|
+
etchantFlux: typing.SupportsFloat,
|
|
1183
|
+
meanEnergy: typing.SupportsFloat,
|
|
1184
|
+
sigmaEnergy: typing.SupportsFloat,
|
|
1185
|
+
ionExponent: typing.SupportsFloat = ...,
|
|
1186
|
+
etchStopDepth: typing.SupportsFloat = ...,
|
|
1187
|
+
) -> None: ...
|
|
1188
|
+
@overload
|
|
1189
|
+
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
|
|
1190
|
+
@staticmethod
|
|
1191
|
+
def defaultParameters() -> PlasmaEtchingParameters: ...
|
|
1192
|
+
def getParameters(self) -> PlasmaEtchingParameters: ...
|
|
1193
|
+
def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
|
|
1194
|
+
|
|
1053
1195
|
class SF6O2Etching(ProcessModel):
|
|
1054
1196
|
@overload
|
|
1055
1197
|
def __init__(self) -> None: ...
|
|
1056
1198
|
@overload
|
|
1057
1199
|
def __init__(
|
|
1058
1200
|
self,
|
|
1059
|
-
ionFlux:
|
|
1060
|
-
etchantFlux:
|
|
1061
|
-
oxygenFlux:
|
|
1062
|
-
meanIonEnergy:
|
|
1063
|
-
sigmaIonEnergy:
|
|
1064
|
-
ionExponent:
|
|
1065
|
-
oxySputterYield:
|
|
1066
|
-
etchStopDepth:
|
|
1201
|
+
ionFlux: typing.SupportsFloat,
|
|
1202
|
+
etchantFlux: typing.SupportsFloat,
|
|
1203
|
+
oxygenFlux: typing.SupportsFloat,
|
|
1204
|
+
meanIonEnergy: typing.SupportsFloat = ...,
|
|
1205
|
+
sigmaIonEnergy: typing.SupportsFloat = ...,
|
|
1206
|
+
ionExponent: typing.SupportsFloat = ...,
|
|
1207
|
+
oxySputterYield: typing.SupportsFloat = ...,
|
|
1208
|
+
etchStopDepth: typing.SupportsFloat = ...,
|
|
1067
1209
|
) -> None: ...
|
|
1068
1210
|
@overload
|
|
1069
1211
|
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
|
|
@@ -1075,72 +1217,77 @@ class SF6O2Etching(ProcessModel):
|
|
|
1075
1217
|
class SingleParticleALD(ProcessModel):
|
|
1076
1218
|
def __init__(
|
|
1077
1219
|
self,
|
|
1078
|
-
stickingProbability:
|
|
1079
|
-
numCycles:
|
|
1080
|
-
growthPerCycle:
|
|
1081
|
-
totalCycles:
|
|
1082
|
-
coverageTimeStep:
|
|
1083
|
-
evFlux:
|
|
1084
|
-
inFlux:
|
|
1085
|
-
s0:
|
|
1086
|
-
gasMFP:
|
|
1220
|
+
stickingProbability: typing.SupportsFloat,
|
|
1221
|
+
numCycles: typing.SupportsFloat,
|
|
1222
|
+
growthPerCycle: typing.SupportsFloat,
|
|
1223
|
+
totalCycles: typing.SupportsFloat,
|
|
1224
|
+
coverageTimeStep: typing.SupportsFloat,
|
|
1225
|
+
evFlux: typing.SupportsFloat,
|
|
1226
|
+
inFlux: typing.SupportsFloat,
|
|
1227
|
+
s0: typing.SupportsFloat,
|
|
1228
|
+
gasMFP: typing.SupportsFloat,
|
|
1087
1229
|
) -> None: ...
|
|
1088
1230
|
|
|
1089
1231
|
class SingleParticleProcess(ProcessModel):
|
|
1090
1232
|
@overload
|
|
1091
1233
|
def __init__(
|
|
1092
1234
|
self,
|
|
1093
|
-
rate:
|
|
1094
|
-
stickingProbability:
|
|
1095
|
-
sourceExponent:
|
|
1235
|
+
rate: typing.SupportsFloat = ...,
|
|
1236
|
+
stickingProbability: typing.SupportsFloat = ...,
|
|
1237
|
+
sourceExponent: typing.SupportsFloat = ...,
|
|
1096
1238
|
maskMaterial: Material = ...,
|
|
1097
1239
|
) -> None: ...
|
|
1098
1240
|
@overload
|
|
1099
1241
|
def __init__(
|
|
1100
1242
|
self,
|
|
1101
|
-
rate:
|
|
1102
|
-
stickingProbability:
|
|
1103
|
-
sourceExponent:
|
|
1104
|
-
maskMaterials:
|
|
1243
|
+
rate: typing.SupportsFloat,
|
|
1244
|
+
stickingProbability: typing.SupportsFloat,
|
|
1245
|
+
sourceExponent: typing.SupportsFloat,
|
|
1246
|
+
maskMaterials: collections.abc.Sequence[Material],
|
|
1105
1247
|
) -> None: ...
|
|
1106
1248
|
@overload
|
|
1107
1249
|
def __init__(
|
|
1108
1250
|
self,
|
|
1109
|
-
materialRates:
|
|
1110
|
-
stickingProbability:
|
|
1111
|
-
sourceExponent:
|
|
1251
|
+
materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
|
|
1252
|
+
stickingProbability: typing.SupportsFloat,
|
|
1253
|
+
sourceExponent: typing.SupportsFloat,
|
|
1112
1254
|
) -> None: ...
|
|
1113
1255
|
|
|
1114
1256
|
class SphereDistribution(ProcessModel):
|
|
1115
1257
|
@overload
|
|
1116
1258
|
def __init__(
|
|
1117
|
-
self,
|
|
1259
|
+
self,
|
|
1260
|
+
radius: typing.SupportsFloat,
|
|
1261
|
+
gridDelta: typing.SupportsFloat,
|
|
1262
|
+
mask: viennals3d.viennals3d.Domain,
|
|
1118
1263
|
) -> None: ...
|
|
1119
1264
|
@overload
|
|
1120
|
-
def __init__(
|
|
1265
|
+
def __init__(
|
|
1266
|
+
self, radius: typing.SupportsFloat, gridDelta: typing.SupportsFloat
|
|
1267
|
+
) -> None: ...
|
|
1121
1268
|
|
|
1122
1269
|
class TEOSDeposition(ProcessModel):
|
|
1123
1270
|
def __init__(
|
|
1124
1271
|
self,
|
|
1125
|
-
stickingProbabilityP1:
|
|
1126
|
-
rateP1:
|
|
1127
|
-
orderP1:
|
|
1128
|
-
stickingProbabilityP2:
|
|
1129
|
-
rateP2:
|
|
1130
|
-
orderP2:
|
|
1272
|
+
stickingProbabilityP1: typing.SupportsFloat,
|
|
1273
|
+
rateP1: typing.SupportsFloat,
|
|
1274
|
+
orderP1: typing.SupportsFloat,
|
|
1275
|
+
stickingProbabilityP2: typing.SupportsFloat = ...,
|
|
1276
|
+
rateP2: typing.SupportsFloat = ...,
|
|
1277
|
+
orderP2: typing.SupportsFloat = ...,
|
|
1131
1278
|
) -> None: ...
|
|
1132
1279
|
|
|
1133
1280
|
class TEOSPECVD(ProcessModel):
|
|
1134
1281
|
def __init__(
|
|
1135
1282
|
self,
|
|
1136
|
-
stickingProbabilityRadical:
|
|
1137
|
-
depositionRateRadical:
|
|
1138
|
-
depositionRateIon:
|
|
1139
|
-
exponentIon:
|
|
1140
|
-
stickingProbabilityIon:
|
|
1141
|
-
reactionOrderRadical:
|
|
1142
|
-
reactionOrderIon:
|
|
1143
|
-
minAngleIon:
|
|
1283
|
+
stickingProbabilityRadical: typing.SupportsFloat,
|
|
1284
|
+
depositionRateRadical: typing.SupportsFloat,
|
|
1285
|
+
depositionRateIon: typing.SupportsFloat,
|
|
1286
|
+
exponentIon: typing.SupportsFloat,
|
|
1287
|
+
stickingProbabilityIon: typing.SupportsFloat = ...,
|
|
1288
|
+
reactionOrderRadical: typing.SupportsFloat = ...,
|
|
1289
|
+
reactionOrderIon: typing.SupportsFloat = ...,
|
|
1290
|
+
minAngleIon: typing.SupportsFloat = ...,
|
|
1144
1291
|
) -> None: ...
|
|
1145
1292
|
|
|
1146
1293
|
class Time:
|
|
@@ -1163,4 +1310,15 @@ class ToDiskMesh:
|
|
|
1163
1310
|
def setDomain(self, arg0: Domain) -> None: ...
|
|
1164
1311
|
def setMesh(self, arg0: viennals3d.viennals3d.Mesh) -> None: ...
|
|
1165
1312
|
|
|
1166
|
-
|
|
1313
|
+
class Writer:
|
|
1314
|
+
@overload
|
|
1315
|
+
def __init__(self) -> None: ...
|
|
1316
|
+
@overload
|
|
1317
|
+
def __init__(self, domain: Domain) -> None: ...
|
|
1318
|
+
@overload
|
|
1319
|
+
def __init__(self, domain: Domain, fileName: str) -> None: ...
|
|
1320
|
+
def apply(self) -> None: ...
|
|
1321
|
+
def setDomain(self, arg0: Domain) -> None: ...
|
|
1322
|
+
def setFileName(self, arg0: str) -> None: ...
|
|
1323
|
+
|
|
1324
|
+
def setNumThreads(arg0: typing.SupportsInt) -> None: ...
|