ViennaPS 3.5.1__cp311-cp311-win_amd64.whl → 3.6.1__cp311-cp311-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.1.dist-info → viennaps-3.6.1.dist-info}/METADATA +9 -9
- viennaps-3.6.1.dist-info/RECORD +57 -0
- {viennaps-3.5.1.dist-info → viennaps-3.6.1.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/__init__.pyi +3 -0
- viennaps2d/viennaps2d.cp311-win_amd64.pyd +0 -0
- viennaps2d/viennaps2d.pyi +366 -227
- viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd +0 -0
- viennaps3d/Release/viennaps3d.cp311-win_amd64.pyd +0 -0
- viennaps3d/__init__.pyi +3 -0
- viennaps3d/gpu.pyi +147 -0
- viennaps3d/viennaps3d.cp311-win_amd64.pyd +0 -0
- viennaps3d/viennaps3d.pyi +348 -213
- viennaps-3.5.1.dist-info/RECORD +0 -57
- viennaps3d/viennaps3d/gpu.pyi +0 -111
- {viennaps-3.5.1.dist-info → viennaps-3.6.1.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,22 +614,32 @@ 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: ...
|
|
568
632
|
@overload
|
|
569
|
-
def __init__(
|
|
633
|
+
def __init__(
|
|
634
|
+
self,
|
|
635
|
+
rate: typing.SupportsFloat,
|
|
636
|
+
maskMaterial: collections.abc.Sequence[Material],
|
|
637
|
+
) -> None: ...
|
|
570
638
|
@overload
|
|
571
639
|
def __init__(
|
|
572
|
-
self,
|
|
640
|
+
self,
|
|
641
|
+
materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
|
|
642
|
+
defaultRate: typing.SupportsFloat = ...,
|
|
573
643
|
) -> None: ...
|
|
574
644
|
|
|
575
645
|
class Length:
|
|
@@ -596,7 +666,7 @@ class LogLevel:
|
|
|
596
666
|
TIMING: ClassVar[LogLevel] = ...
|
|
597
667
|
WARNING: ClassVar[LogLevel] = ...
|
|
598
668
|
__entries: ClassVar[dict] = ...
|
|
599
|
-
def __init__(self, value:
|
|
669
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
600
670
|
def __eq__(self, other: object) -> bool: ...
|
|
601
671
|
def __hash__(self) -> int: ...
|
|
602
672
|
def __index__(self) -> int: ...
|
|
@@ -613,9 +683,11 @@ class Logger:
|
|
|
613
683
|
def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
|
|
614
684
|
def addInfo(self, arg0: str) -> Logger: ...
|
|
615
685
|
@overload
|
|
616
|
-
def addTiming(self, arg0: str, arg1:
|
|
686
|
+
def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
|
|
617
687
|
@overload
|
|
618
|
-
def addTiming(
|
|
688
|
+
def addTiming(
|
|
689
|
+
self, arg0: str, arg1: typing.SupportsFloat, arg2: typing.SupportsFloat
|
|
690
|
+
) -> Logger: ...
|
|
619
691
|
def addWarning(self, arg0: str) -> Logger: ...
|
|
620
692
|
@staticmethod
|
|
621
693
|
def getInstance() -> Logger: ...
|
|
@@ -799,7 +871,7 @@ class Material:
|
|
|
799
871
|
Undefined: ClassVar[Material] = ...
|
|
800
872
|
W: ClassVar[Material] = ...
|
|
801
873
|
__entries: ClassVar[dict] = ...
|
|
802
|
-
def __init__(self, value:
|
|
874
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
803
875
|
def __eq__(self, other: object) -> bool: ...
|
|
804
876
|
def __hash__(self) -> int: ...
|
|
805
877
|
def __index__(self) -> int: ...
|
|
@@ -812,46 +884,67 @@ class Material:
|
|
|
812
884
|
|
|
813
885
|
class MaterialMap:
|
|
814
886
|
def __init__(self) -> None: ...
|
|
815
|
-
def getMaterialAtIdx(self, arg0:
|
|
887
|
+
def getMaterialAtIdx(self, arg0: typing.SupportsInt) -> Material: ...
|
|
816
888
|
def getMaterialMap(self) -> viennals3d.viennals3d.MaterialMap: ...
|
|
817
889
|
@staticmethod
|
|
818
890
|
def getMaterialName(arg0: Material) -> str: ...
|
|
819
891
|
def insertNextMaterial(self, material: Material = ...) -> None: ...
|
|
820
892
|
@staticmethod
|
|
821
|
-
def isMaterial(arg0:
|
|
893
|
+
def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
|
|
822
894
|
@staticmethod
|
|
823
|
-
def mapToMaterial(arg0:
|
|
895
|
+
def mapToMaterial(arg0: typing.SupportsFloat) -> Material: ...
|
|
824
896
|
def size(self) -> int: ...
|
|
825
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
|
+
|
|
826
916
|
class MultiParticleProcess(ProcessModel):
|
|
827
917
|
def __init__(self) -> None: ...
|
|
828
918
|
def addIonParticle(
|
|
829
919
|
self,
|
|
830
|
-
sourcePower:
|
|
831
|
-
thetaRMin:
|
|
832
|
-
thetaRMax:
|
|
833
|
-
minAngle:
|
|
834
|
-
B_sp:
|
|
835
|
-
meanEnergy:
|
|
836
|
-
sigmaEnergy:
|
|
837
|
-
thresholdEnergy:
|
|
838
|
-
inflectAngle:
|
|
839
|
-
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 = ...,
|
|
840
930
|
label: str = ...,
|
|
841
931
|
) -> None: ...
|
|
842
932
|
@overload
|
|
843
933
|
def addNeutralParticle(
|
|
844
|
-
self, stickingProbability:
|
|
934
|
+
self, stickingProbability: typing.SupportsFloat, label: str = ...
|
|
845
935
|
) -> None: ...
|
|
846
936
|
@overload
|
|
847
937
|
def addNeutralParticle(
|
|
848
938
|
self,
|
|
849
|
-
materialSticking:
|
|
850
|
-
defaultStickingProbability:
|
|
939
|
+
materialSticking: collections.abc.Mapping[Material, typing.SupportsFloat],
|
|
940
|
+
defaultStickingProbability: typing.SupportsFloat = ...,
|
|
851
941
|
label: str = ...,
|
|
852
942
|
) -> None: ...
|
|
853
943
|
def setRateFunction(
|
|
854
|
-
self,
|
|
944
|
+
self,
|
|
945
|
+
arg0: collections.abc.Callable[
|
|
946
|
+
[collections.abc.Sequence[typing.SupportsFloat], Material], float
|
|
947
|
+
],
|
|
855
948
|
) -> None: ...
|
|
856
949
|
|
|
857
950
|
class NormalizationType:
|
|
@@ -859,7 +952,7 @@ class NormalizationType:
|
|
|
859
952
|
MAX: ClassVar[NormalizationType] = ...
|
|
860
953
|
SOURCE: ClassVar[NormalizationType] = ...
|
|
861
954
|
__entries: ClassVar[dict] = ...
|
|
862
|
-
def __init__(self, value:
|
|
955
|
+
def __init__(self, value: typing.SupportsInt) -> None: ...
|
|
863
956
|
def __eq__(self, other: object) -> bool: ...
|
|
864
957
|
def __hash__(self) -> int: ...
|
|
865
958
|
def __index__(self) -> int: ...
|
|
@@ -873,18 +966,18 @@ class NormalizationType:
|
|
|
873
966
|
class OxideRegrowth(ProcessModel):
|
|
874
967
|
def __init__(
|
|
875
968
|
self,
|
|
876
|
-
nitrideEtchRate:
|
|
877
|
-
oxideEtchRate:
|
|
878
|
-
redepositionRate:
|
|
879
|
-
redepositionThreshold:
|
|
880
|
-
redepositionTimeInt:
|
|
881
|
-
diffusionCoefficient:
|
|
882
|
-
sinkStrength:
|
|
883
|
-
scallopVelocity:
|
|
884
|
-
centerVelocity:
|
|
885
|
-
topHeight:
|
|
886
|
-
centerWidth:
|
|
887
|
-
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,
|
|
888
981
|
) -> None: ...
|
|
889
982
|
|
|
890
983
|
class Particle:
|
|
@@ -893,7 +986,15 @@ class Particle:
|
|
|
893
986
|
def getSourceDistributionPower(self) -> float: ...
|
|
894
987
|
def initNew(self, arg0) -> None: ...
|
|
895
988
|
def surfaceCollision(
|
|
896
|
-
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,
|
|
897
998
|
) -> None: ...
|
|
898
999
|
def surfaceReflection(self, *args, **kwargs): ...
|
|
899
1000
|
|
|
@@ -901,9 +1002,11 @@ class Planarize:
|
|
|
901
1002
|
@overload
|
|
902
1003
|
def __init__(self) -> None: ...
|
|
903
1004
|
@overload
|
|
904
|
-
def __init__(
|
|
1005
|
+
def __init__(
|
|
1006
|
+
self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
|
|
1007
|
+
) -> None: ...
|
|
905
1008
|
def apply(self) -> None: ...
|
|
906
|
-
def setCutoffPosition(self, arg0:
|
|
1009
|
+
def setCutoffPosition(self, arg0: typing.SupportsFloat) -> None: ...
|
|
907
1010
|
def setDomain(self, arg0: Domain) -> None: ...
|
|
908
1011
|
|
|
909
1012
|
class PlasmaEtchingParameters:
|
|
@@ -942,6 +1045,13 @@ class PlasmaEtchingParametersPassivation:
|
|
|
942
1045
|
Eth_ie: float
|
|
943
1046
|
def __init__(self) -> None: ...
|
|
944
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
|
+
|
|
945
1055
|
class PlasmaEtchingParametersSubstrate:
|
|
946
1056
|
A_ie: float
|
|
947
1057
|
A_sp: float
|
|
@@ -968,25 +1078,25 @@ class Process:
|
|
|
968
1078
|
def getProcessDuration(self) -> float: ...
|
|
969
1079
|
def getRayTracingParameters(self) -> RayTracingParameters: ...
|
|
970
1080
|
def setAdvectionParameters(self, arg0: AdvectionParameters) -> None: ...
|
|
971
|
-
def setCoverageDeltaThreshold(self, arg0:
|
|
1081
|
+
def setCoverageDeltaThreshold(self, arg0: typing.SupportsFloat) -> None: ...
|
|
972
1082
|
def setDomain(self, *args, **kwargs): ...
|
|
973
1083
|
def setIntegrationScheme(
|
|
974
1084
|
self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
|
|
975
1085
|
) -> None: ...
|
|
976
|
-
def setMaxCoverageInitIterations(self, arg0:
|
|
977
|
-
def setNumberOfRaysPerPoint(self, arg0:
|
|
978
|
-
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: ...
|
|
979
1089
|
def setProcessModel(self, arg0: ProcessModel) -> None: ...
|
|
980
|
-
def setRayTracingDiskRadius(self, arg0:
|
|
1090
|
+
def setRayTracingDiskRadius(self, arg0: typing.SupportsFloat) -> None: ...
|
|
981
1091
|
def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
|
|
982
1092
|
def setSourceDirection(self, arg0) -> None: ...
|
|
983
|
-
def setTimeStepRatio(self, arg0:
|
|
1093
|
+
def setTimeStepRatio(self, arg0: typing.SupportsFloat) -> None: ...
|
|
984
1094
|
|
|
985
1095
|
class ProcessModel:
|
|
986
1096
|
def __init__(self) -> None: ...
|
|
987
1097
|
def getAdvectionCallback(self, *args, **kwargs): ...
|
|
988
1098
|
def getGeometricModel(self, *args, **kwargs): ...
|
|
989
|
-
def getParticleLogSize(self, arg0:
|
|
1099
|
+
def getParticleLogSize(self, arg0: typing.SupportsInt) -> int: ...
|
|
990
1100
|
def getParticleTypes(self, *args, **kwargs): ...
|
|
991
1101
|
def getPrimaryDirection(self, *args, **kwargs): ...
|
|
992
1102
|
def getProcessName(self) -> str | None: ...
|
|
@@ -1003,9 +1113,9 @@ class ProcessModel:
|
|
|
1003
1113
|
class ProcessParams:
|
|
1004
1114
|
def __init__(self) -> None: ...
|
|
1005
1115
|
@overload
|
|
1006
|
-
def getScalarData(self, arg0:
|
|
1116
|
+
def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
|
|
1007
1117
|
@overload
|
|
1008
|
-
def getScalarData(self, arg0:
|
|
1118
|
+
def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
|
|
1009
1119
|
@overload
|
|
1010
1120
|
def getScalarData(self, arg0: str) -> float: ...
|
|
1011
1121
|
@overload
|
|
@@ -1013,15 +1123,15 @@ class ProcessParams:
|
|
|
1013
1123
|
@overload
|
|
1014
1124
|
def getScalarData(self) -> list[float]: ...
|
|
1015
1125
|
def getScalarDataIndex(self, arg0: str) -> int: ...
|
|
1016
|
-
def getScalarDataLabel(self, arg0:
|
|
1017
|
-
def insertNextScalar(self, arg0:
|
|
1126
|
+
def getScalarDataLabel(self, arg0: typing.SupportsInt) -> str: ...
|
|
1127
|
+
def insertNextScalar(self, arg0: typing.SupportsFloat, arg1: str) -> None: ...
|
|
1018
1128
|
|
|
1019
1129
|
class RateGrid:
|
|
1020
1130
|
def __init__(self) -> None: ...
|
|
1021
1131
|
def interpolate(self, coord) -> float: ...
|
|
1022
1132
|
def loadFromCSV(self, filename: str) -> bool: ...
|
|
1023
|
-
def setCustomInterpolator(self, function: Callable) -> None: ...
|
|
1024
|
-
def setIDWNeighbors(self, k:
|
|
1133
|
+
def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
|
|
1134
|
+
def setIDWNeighbors(self, k: typing.SupportsInt) -> None: ...
|
|
1025
1135
|
@overload
|
|
1026
1136
|
def setInterpolationMode(self, mode: Interpolation) -> None: ...
|
|
1027
1137
|
@overload
|
|
@@ -1037,9 +1147,9 @@ class RateSet:
|
|
|
1037
1147
|
def __init__(
|
|
1038
1148
|
self,
|
|
1039
1149
|
direction=...,
|
|
1040
|
-
directionalVelocity:
|
|
1041
|
-
isotropicVelocity:
|
|
1042
|
-
maskMaterials:
|
|
1150
|
+
directionalVelocity: typing.SupportsFloat = ...,
|
|
1151
|
+
isotropicVelocity: typing.SupportsFloat = ...,
|
|
1152
|
+
maskMaterials: collections.abc.Sequence[Material] = ...,
|
|
1043
1153
|
calculateVisibility: bool = ...,
|
|
1044
1154
|
) -> None: ...
|
|
1045
1155
|
def print(self) -> None: ...
|
|
@@ -1054,20 +1164,48 @@ class RayTracingParameters:
|
|
|
1054
1164
|
useRandomSeeds: bool
|
|
1055
1165
|
def __init__(self) -> None: ...
|
|
1056
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
|
+
|
|
1057
1195
|
class SF6O2Etching(ProcessModel):
|
|
1058
1196
|
@overload
|
|
1059
1197
|
def __init__(self) -> None: ...
|
|
1060
1198
|
@overload
|
|
1061
1199
|
def __init__(
|
|
1062
1200
|
self,
|
|
1063
|
-
ionFlux:
|
|
1064
|
-
etchantFlux:
|
|
1065
|
-
oxygenFlux:
|
|
1066
|
-
meanIonEnergy:
|
|
1067
|
-
sigmaIonEnergy:
|
|
1068
|
-
ionExponent:
|
|
1069
|
-
oxySputterYield:
|
|
1070
|
-
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 = ...,
|
|
1071
1209
|
) -> None: ...
|
|
1072
1210
|
@overload
|
|
1073
1211
|
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
|
|
@@ -1079,72 +1217,77 @@ class SF6O2Etching(ProcessModel):
|
|
|
1079
1217
|
class SingleParticleALD(ProcessModel):
|
|
1080
1218
|
def __init__(
|
|
1081
1219
|
self,
|
|
1082
|
-
stickingProbability:
|
|
1083
|
-
numCycles:
|
|
1084
|
-
growthPerCycle:
|
|
1085
|
-
totalCycles:
|
|
1086
|
-
coverageTimeStep:
|
|
1087
|
-
evFlux:
|
|
1088
|
-
inFlux:
|
|
1089
|
-
s0:
|
|
1090
|
-
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,
|
|
1091
1229
|
) -> None: ...
|
|
1092
1230
|
|
|
1093
1231
|
class SingleParticleProcess(ProcessModel):
|
|
1094
1232
|
@overload
|
|
1095
1233
|
def __init__(
|
|
1096
1234
|
self,
|
|
1097
|
-
rate:
|
|
1098
|
-
stickingProbability:
|
|
1099
|
-
sourceExponent:
|
|
1235
|
+
rate: typing.SupportsFloat = ...,
|
|
1236
|
+
stickingProbability: typing.SupportsFloat = ...,
|
|
1237
|
+
sourceExponent: typing.SupportsFloat = ...,
|
|
1100
1238
|
maskMaterial: Material = ...,
|
|
1101
1239
|
) -> None: ...
|
|
1102
1240
|
@overload
|
|
1103
1241
|
def __init__(
|
|
1104
1242
|
self,
|
|
1105
|
-
rate:
|
|
1106
|
-
stickingProbability:
|
|
1107
|
-
sourceExponent:
|
|
1108
|
-
maskMaterials:
|
|
1243
|
+
rate: typing.SupportsFloat,
|
|
1244
|
+
stickingProbability: typing.SupportsFloat,
|
|
1245
|
+
sourceExponent: typing.SupportsFloat,
|
|
1246
|
+
maskMaterials: collections.abc.Sequence[Material],
|
|
1109
1247
|
) -> None: ...
|
|
1110
1248
|
@overload
|
|
1111
1249
|
def __init__(
|
|
1112
1250
|
self,
|
|
1113
|
-
materialRates:
|
|
1114
|
-
stickingProbability:
|
|
1115
|
-
sourceExponent:
|
|
1251
|
+
materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
|
|
1252
|
+
stickingProbability: typing.SupportsFloat,
|
|
1253
|
+
sourceExponent: typing.SupportsFloat,
|
|
1116
1254
|
) -> None: ...
|
|
1117
1255
|
|
|
1118
1256
|
class SphereDistribution(ProcessModel):
|
|
1119
1257
|
@overload
|
|
1120
1258
|
def __init__(
|
|
1121
|
-
self,
|
|
1259
|
+
self,
|
|
1260
|
+
radius: typing.SupportsFloat,
|
|
1261
|
+
gridDelta: typing.SupportsFloat,
|
|
1262
|
+
mask: viennals3d.viennals3d.Domain,
|
|
1122
1263
|
) -> None: ...
|
|
1123
1264
|
@overload
|
|
1124
|
-
def __init__(
|
|
1265
|
+
def __init__(
|
|
1266
|
+
self, radius: typing.SupportsFloat, gridDelta: typing.SupportsFloat
|
|
1267
|
+
) -> None: ...
|
|
1125
1268
|
|
|
1126
1269
|
class TEOSDeposition(ProcessModel):
|
|
1127
1270
|
def __init__(
|
|
1128
1271
|
self,
|
|
1129
|
-
stickingProbabilityP1:
|
|
1130
|
-
rateP1:
|
|
1131
|
-
orderP1:
|
|
1132
|
-
stickingProbabilityP2:
|
|
1133
|
-
rateP2:
|
|
1134
|
-
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 = ...,
|
|
1135
1278
|
) -> None: ...
|
|
1136
1279
|
|
|
1137
1280
|
class TEOSPECVD(ProcessModel):
|
|
1138
1281
|
def __init__(
|
|
1139
1282
|
self,
|
|
1140
|
-
stickingProbabilityRadical:
|
|
1141
|
-
depositionRateRadical:
|
|
1142
|
-
depositionRateIon:
|
|
1143
|
-
exponentIon:
|
|
1144
|
-
stickingProbabilityIon:
|
|
1145
|
-
reactionOrderRadical:
|
|
1146
|
-
reactionOrderIon:
|
|
1147
|
-
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 = ...,
|
|
1148
1291
|
) -> None: ...
|
|
1149
1292
|
|
|
1150
1293
|
class Time:
|
|
@@ -1174,16 +1317,8 @@ class Writer:
|
|
|
1174
1317
|
def __init__(self, domain: Domain) -> None: ...
|
|
1175
1318
|
@overload
|
|
1176
1319
|
def __init__(self, domain: Domain, fileName: str) -> None: ...
|
|
1177
|
-
def setDomain(self, domain: Domain) -> None: ...
|
|
1178
|
-
def setFileName(self, fileName: str) -> None: ...
|
|
1179
1320
|
def apply(self) -> None: ...
|
|
1321
|
+
def setDomain(self, arg0: Domain) -> None: ...
|
|
1322
|
+
def setFileName(self, arg0: str) -> None: ...
|
|
1180
1323
|
|
|
1181
|
-
|
|
1182
|
-
@overload
|
|
1183
|
-
def __init__(self) -> None: ...
|
|
1184
|
-
@overload
|
|
1185
|
-
def __init__(self, fileName: str) -> None: ...
|
|
1186
|
-
def setFileName(self, fileName: str) -> None: ...
|
|
1187
|
-
def apply(self) -> Domain: ...
|
|
1188
|
-
|
|
1189
|
-
def setNumThreads(arg0: int) -> None: ...
|
|
1324
|
+
def setNumThreads(arg0: typing.SupportsInt) -> None: ...
|