ViennaPS 3.5.1__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.

Files changed (59) hide show
  1. {viennaps-3.5.1.dist-info → viennaps-3.6.0.dist-info}/METADATA +9 -9
  2. viennaps-3.6.0.dist-info/RECORD +59 -0
  3. {viennaps-3.5.1.dist-info → viennaps-3.6.0.dist-info}/WHEEL +1 -1
  4. viennaps.libs/embree4.dll +0 -0
  5. viennaps.libs/embree4.exp +0 -0
  6. viennaps.libs/embree4.lib +0 -0
  7. viennaps.libs/embree_avx.lib +0 -0
  8. viennaps.libs/embree_avx2.lib +0 -0
  9. viennaps.libs/embree_sse42.lib +0 -0
  10. viennaps.libs/lexers.lib +0 -0
  11. viennaps.libs/math.lib +0 -0
  12. viennaps.libs/simd.lib +0 -0
  13. viennaps.libs/sys.lib +0 -0
  14. viennaps.libs/tasking.lib +0 -0
  15. viennaps.libs/tbb12.dll +0 -0
  16. viennaps.libs/tbb12.exp +0 -0
  17. viennaps.libs/tbb12.lib +0 -0
  18. viennaps.libs/vtkCommonComputationalGeometry-9.3.dll +0 -0
  19. viennaps.libs/vtkCommonCore-9.3.dll +0 -0
  20. viennaps.libs/vtkCommonDataModel-9.3.dll +0 -0
  21. viennaps.libs/vtkCommonExecutionModel-9.3.dll +0 -0
  22. viennaps.libs/vtkCommonMath-9.3.dll +0 -0
  23. viennaps.libs/vtkCommonMisc-9.3.dll +0 -0
  24. viennaps.libs/vtkCommonSystem-9.3.dll +0 -0
  25. viennaps.libs/vtkCommonTransforms-9.3.dll +0 -0
  26. viennaps.libs/vtkFiltersCore-9.3.dll +0 -0
  27. viennaps.libs/vtkFiltersGeneral-9.3.dll +0 -0
  28. viennaps.libs/vtkFiltersGeometry-9.3.dll +0 -0
  29. viennaps.libs/vtkFiltersVerdict-9.3.dll +0 -0
  30. viennaps.libs/vtkIOCore-9.3.dll +0 -0
  31. viennaps.libs/vtkIOXML-9.3.dll +0 -0
  32. viennaps.libs/vtkIOXMLParser-9.3.dll +0 -0
  33. viennaps.libs/vtkdoubleconversion-9.3.dll +0 -0
  34. viennaps.libs/vtkexpat-9.3.dll +0 -0
  35. viennaps.libs/vtkfmt-9.3.dll +0 -0
  36. viennaps.libs/vtkkissfft-9.3.dll +0 -0
  37. viennaps.libs/vtkloguru-9.3.dll +0 -0
  38. viennaps.libs/vtklz4-9.3.dll +0 -0
  39. viennaps.libs/vtklzma-9.3.dll +0 -0
  40. viennaps.libs/vtkpugixml-9.3.dll +0 -0
  41. viennaps.libs/vtksys-9.3.dll +0 -0
  42. viennaps.libs/vtkverdict-9.3.dll +0 -0
  43. viennaps.libs/vtkzlib-9.3.dll +0 -0
  44. viennaps2d/Release/viennaps2d.cp310-win_amd64.pyd +0 -0
  45. viennaps2d/Release/viennaps2d.cp311-win_amd64.pyd +0 -0
  46. viennaps2d/Release/viennaps2d.cp312-win_amd64.pyd +0 -0
  47. viennaps2d/__init__.pyi +3 -0
  48. viennaps2d/viennaps2d.cp312-win_amd64.pyd +0 -0
  49. viennaps2d/viennaps2d.pyi +366 -227
  50. viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd +0 -0
  51. viennaps3d/Release/viennaps3d.cp311-win_amd64.pyd +0 -0
  52. viennaps3d/Release/viennaps3d.cp312-win_amd64.pyd +0 -0
  53. viennaps3d/__init__.pyi +3 -0
  54. viennaps3d/gpu.pyi +147 -0
  55. viennaps3d/viennaps3d.cp312-win_amd64.pyd +0 -0
  56. viennaps3d/viennaps3d.pyi +348 -213
  57. viennaps-3.5.1.dist-info/RECORD +0 -59
  58. viennaps3d/viennaps3d/gpu.pyi +0 -111
  59. {viennaps-3.5.1.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 Callable, ClassVar, overload
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: float) -> bool: ...
13
- def applyPreAdvect(self, arg0: float) -> bool: ...
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__(self, materials: list[tuple[Material, float]]) -> None: ...
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: float,
33
- rate110: float,
34
- rate111: float,
35
- rate311: float,
36
- materials: list[tuple[Material, float]],
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: float) -> None: ...
45
- def setDesorptionRates(self, arg0: list[float]) -> None: ...
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: int) -> None: ...
51
- def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
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: float) -> None: ...
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, halfAxes, gridDelta: float, mask: viennals3d.viennals3d.Domain
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: float) -> None: ...
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: float,
71
- etchantFlux: float,
72
- oxygenFlux: float,
73
- polymerFlux: float,
74
- meanIonEnergy: float = ...,
75
- sigmaIonEnergy: float = ...,
76
- ionExponent: float = ...,
77
- oxySputterYield: float = ...,
78
- polySputterYield: float = ...,
79
- etchStopDepth: float = ...,
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: float) -> float: ...
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: float = ...,
157
- directionalComponent: float = ...,
158
- maskMaterials: list[Material] = ...,
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: int = ...) -> None: ...
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(self, arg0: int, arg1: float) -> bool: ...
181
+ def addFillingFraction(
182
+ self, arg0: typing.SupportsInt, arg1: typing.SupportsFloat
183
+ ) -> bool: ...
173
184
  @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: ...
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: list[viennals3d.viennals3d.Domain],
194
+ levelSets: collections.abc.Sequence[viennals3d.viennals3d.Domain],
182
195
  materialMap: viennals3d.viennals3d.MaterialMap = ...,
183
- depth: float = ...,
196
+ depth: typing.SupportsFloat = ...,
184
197
  ) -> None: ...
185
- def getAverageFillingFraction(self, arg0, arg1: float) -> float: ...
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: int) -> None: ...
218
+ def setCoverMaterial(self, arg0: typing.SupportsInt) -> None: ...
206
219
  @overload
207
- def setFillingFraction(self, arg0: int, arg1: float) -> bool: ...
220
+ def setFillingFraction(
221
+ self, arg0: typing.SupportsInt, arg1: typing.SupportsFloat
222
+ ) -> bool: ...
208
223
  @overload
209
- def setFillingFraction(self, arg0, arg1: float) -> bool: ...
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: float,
222
- isotropicVelocity: float = ...,
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: float,
231
- isotropicVelocity: float,
232
- maskMaterial: list[Material],
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: list[RateSet]) -> None: ...
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: float,
249
- xExtent: float,
250
- yExtent: float,
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
- def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
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: int, arg1: bool) -> None: ...
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: float = ...
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: float = ...
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: float,
294
- xExtent: float,
295
- yExtent: float = ...,
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: float,
306
- xExtent: float,
307
- yExtent: float,
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: list[Material]) -> None: ...
369
+ def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
328
370
  @overload
329
371
  def __init__(
330
- self, maskMaterials: list[Material], parameters: FaradayCageParameters
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: float,
347
- etchantFlux: float,
348
- polyFlux: float,
349
- meanIonEnergy: float = ...,
350
- sigmaIonEnergy: float = ...,
351
- ionExponent: float = ...,
352
- deltaP: float = ...,
353
- etchStopDepth: float = ...,
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: float) -> None: ...
479
+ def __init__(self, gridDelta: typing.SupportsFloat) -> None: ...
436
480
  @overload
437
- def __init__(self, gridDelta: float, boundaryConditions) -> None: ...
481
+ def __init__(self, gridDelta: typing.SupportsFloat, boundaryConditions) -> None: ...
438
482
  def addBlur(
439
483
  self,
440
- sigmas: list[float],
441
- weights: list[float],
442
- threshold: float = ...,
443
- delta: float = ...,
444
- gridRefinement: int = ...,
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: int,
452
- baseHeight: float = ...,
453
- height: float = ...,
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, arg0: list[viennals3d.viennals3d.BoundaryConditionEnum]
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 setBoundaryPadding(self, arg0: float, arg1: float) -> None: ...
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, position, width: float, height: float, angle: float
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, position, radius: float, height: float, angle: float
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: float,
488
- etchantFlux: float,
489
- oxygenFlux: float,
490
- meanIonEnergy: float = ...,
491
- sigmaIonEnergy: float = ...,
492
- ionExponent: float = ...,
493
- oxySputterYield: float = ...,
494
- etchStopDepth: float = ...,
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: int) -> None: ...
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[[float], float]
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: int) -> None: ...
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: list[Material]) -> None: ...
617
+ def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
558
618
  @overload
559
619
  def __init__(
560
- self, maskMaterials: list[Material], parameters: IBEParameters
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__(self, rate: float = ..., maskMaterial: Material = ...) -> None: ...
629
+ def __init__(
630
+ self, rate: typing.SupportsFloat = ..., maskMaterial: Material = ...
631
+ ) -> None: ...
568
632
  @overload
569
- def __init__(self, rate: float, maskMaterial: list[Material]) -> None: ...
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, materialRates: dict[Material, float], defaultRate: float = ...
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: int) -> None: ...
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: float) -> Logger: ...
686
+ def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
617
687
  @overload
618
- def addTiming(self, arg0: str, arg1: float, arg2: float) -> Logger: ...
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: int) -> None: ...
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: int) -> Material: ...
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: float, arg1: Material) -> bool: ...
893
+ def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
822
894
  @staticmethod
823
- def mapToMaterial(arg0: float) -> Material: ...
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: float,
831
- thetaRMin: float = ...,
832
- thetaRMax: float = ...,
833
- minAngle: float = ...,
834
- B_sp: float = ...,
835
- meanEnergy: float = ...,
836
- sigmaEnergy: float = ...,
837
- thresholdEnergy: float = ...,
838
- inflectAngle: float = ...,
839
- n: float = ...,
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: float, label: str = ...
934
+ self, stickingProbability: typing.SupportsFloat, label: str = ...
845
935
  ) -> None: ...
846
936
  @overload
847
937
  def addNeutralParticle(
848
938
  self,
849
- materialSticking: dict[Material, float],
850
- defaultStickingProbability: float = ...,
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, arg0: Callable[[list[float], Material], float]
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: int) -> None: ...
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: float,
877
- oxideEtchRate: float,
878
- redepositionRate: float,
879
- redepositionThreshold: float,
880
- redepositionTimeInt: float,
881
- diffusionCoefficient: float,
882
- sinkStrength: float,
883
- scallopVelocity: float,
884
- centerVelocity: float,
885
- topHeight: float,
886
- centerWidth: float,
887
- stabilityFactor: float,
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, arg0: float, arg1, arg2, arg3: int, arg4: int, arg5, arg6, arg7
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__(self, geometry: Domain, cutoffHeight: float = ...) -> None: ...
1005
+ def __init__(
1006
+ self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
1007
+ ) -> None: ...
905
1008
  def apply(self) -> None: ...
906
- def setCutoffPosition(self, arg0: float) -> None: ...
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: float) -> None: ...
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: int) -> None: ...
977
- def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
978
- def setProcessDuration(self, arg0: float) -> None: ...
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: float) -> None: ...
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: float) -> None: ...
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: int) -> int: ...
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: int) -> float: ...
1116
+ def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1007
1117
  @overload
1008
- def getScalarData(self, arg0: int) -> float: ...
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: int) -> str: ...
1017
- def insertNextScalar(self, arg0: float, arg1: str) -> None: ...
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: int) -> None: ...
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: float = ...,
1041
- isotropicVelocity: float = ...,
1042
- maskMaterials: list[Material] = ...,
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: float,
1064
- etchantFlux: float,
1065
- oxygenFlux: float,
1066
- meanIonEnergy: float = ...,
1067
- sigmaIonEnergy: float = ...,
1068
- ionExponent: float = ...,
1069
- oxySputterYield: float = ...,
1070
- etchStopDepth: float = ...,
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: float,
1083
- numCycles: float,
1084
- growthPerCycle: float,
1085
- totalCycles: float,
1086
- coverageTimeStep: float,
1087
- evFlux: float,
1088
- inFlux: float,
1089
- s0: float,
1090
- gasMFP: float,
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: float = ...,
1098
- stickingProbability: float = ...,
1099
- sourceExponent: float = ...,
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: float,
1106
- stickingProbability: float,
1107
- sourceExponent: float,
1108
- maskMaterials: list[Material],
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: dict[Material, float],
1114
- stickingProbability: float,
1115
- sourceExponent: float,
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, radius: float, gridDelta: float, mask: viennals3d.viennals3d.Domain
1259
+ self,
1260
+ radius: typing.SupportsFloat,
1261
+ gridDelta: typing.SupportsFloat,
1262
+ mask: viennals3d.viennals3d.Domain,
1122
1263
  ) -> None: ...
1123
1264
  @overload
1124
- def __init__(self, radius: float, gridDelta: float) -> None: ...
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: float,
1130
- rateP1: float,
1131
- orderP1: float,
1132
- stickingProbabilityP2: float = ...,
1133
- rateP2: float = ...,
1134
- orderP2: float = ...,
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: float,
1141
- depositionRateRadical: float,
1142
- depositionRateIon: float,
1143
- exponentIon: float,
1144
- stickingProbabilityIon: float = ...,
1145
- reactionOrderRadical: float = ...,
1146
- reactionOrderIon: float = ...,
1147
- minAngleIon: float = ...,
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
- class Reader:
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: ...