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.

Files changed (59) hide show
  1. {viennaps-3.5.0.dist-info → viennaps-3.6.0.dist-info}/METADATA +12 -12
  2. viennaps-3.6.0.dist-info/RECORD +59 -0
  3. {viennaps-3.5.0.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 +378 -216
  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 +360 -202
  57. viennaps-3.5.0.dist-info/RECORD +0 -59
  58. viennaps3d/viennaps3d/gpu.pyi +0 -111
  59. {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 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,19 +614,33 @@ 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: ...
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__(self, rate: float, maskMaterial: list[Material]) -> None: ...
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: int) -> None: ...
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: float) -> Logger: ...
686
+ def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
613
687
  @overload
614
- 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: ...
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: int) -> None: ...
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: int) -> Material: ...
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: float, arg1: Material) -> bool: ...
893
+ def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
818
894
  @staticmethod
819
- def mapToMaterial(arg0: float) -> Material: ...
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: float,
827
- thetaRMin: float = ...,
828
- thetaRMax: float = ...,
829
- minAngle: float = ...,
830
- B_sp: float = ...,
831
- meanEnergy: float = ...,
832
- sigmaEnergy: float = ...,
833
- thresholdEnergy: float = ...,
834
- inflectAngle: float = ...,
835
- 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 = ...,
836
930
  label: str = ...,
837
931
  ) -> None: ...
838
932
  @overload
839
933
  def addNeutralParticle(
840
- self, stickingProbability: float, label: str = ...
934
+ self, stickingProbability: typing.SupportsFloat, label: str = ...
841
935
  ) -> None: ...
842
936
  @overload
843
937
  def addNeutralParticle(
844
938
  self,
845
- materialSticking: dict[Material, float],
846
- defaultStickingProbability: float = ...,
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, arg0: Callable[[list[float], Material], float]
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: int) -> None: ...
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: float,
873
- oxideEtchRate: float,
874
- redepositionRate: float,
875
- redepositionThreshold: float,
876
- redepositionTimeInt: float,
877
- diffusionCoefficient: float,
878
- sinkStrength: float,
879
- scallopVelocity: float,
880
- centerVelocity: float,
881
- topHeight: float,
882
- centerWidth: float,
883
- 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,
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, 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,
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__(self, geometry: Domain, cutoffHeight: float = ...) -> None: ...
1005
+ def __init__(
1006
+ self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
1007
+ ) -> None: ...
901
1008
  def apply(self) -> None: ...
902
- def setCutoffPosition(self, arg0: float) -> None: ...
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: float) -> None: ...
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: int) -> None: ...
973
- def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
974
- 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: ...
975
1089
  def setProcessModel(self, arg0: ProcessModel) -> None: ...
976
- def setRayTracingDiskRadius(self, arg0: float) -> None: ...
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: float) -> None: ...
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: int) -> int: ...
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: int) -> float: ...
1116
+ def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1003
1117
  @overload
1004
- def getScalarData(self, arg0: int) -> float: ...
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: int) -> str: ...
1013
- 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: ...
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: int) -> None: ...
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: float = ...,
1037
- isotropicVelocity: float = ...,
1038
- maskMaterials: list[Material] = ...,
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: float,
1060
- etchantFlux: float,
1061
- oxygenFlux: float,
1062
- meanIonEnergy: float = ...,
1063
- sigmaIonEnergy: float = ...,
1064
- ionExponent: float = ...,
1065
- oxySputterYield: float = ...,
1066
- 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 = ...,
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: float,
1079
- numCycles: float,
1080
- growthPerCycle: float,
1081
- totalCycles: float,
1082
- coverageTimeStep: float,
1083
- evFlux: float,
1084
- inFlux: float,
1085
- s0: float,
1086
- 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,
1087
1229
  ) -> None: ...
1088
1230
 
1089
1231
  class SingleParticleProcess(ProcessModel):
1090
1232
  @overload
1091
1233
  def __init__(
1092
1234
  self,
1093
- rate: float = ...,
1094
- stickingProbability: float = ...,
1095
- sourceExponent: float = ...,
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: float,
1102
- stickingProbability: float,
1103
- sourceExponent: float,
1104
- maskMaterials: list[Material],
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: dict[Material, float],
1110
- stickingProbability: float,
1111
- sourceExponent: float,
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, radius: float, gridDelta: float, mask: viennals3d.viennals3d.Domain
1259
+ self,
1260
+ radius: typing.SupportsFloat,
1261
+ gridDelta: typing.SupportsFloat,
1262
+ mask: viennals3d.viennals3d.Domain,
1118
1263
  ) -> None: ...
1119
1264
  @overload
1120
- def __init__(self, radius: float, gridDelta: float) -> None: ...
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: float,
1126
- rateP1: float,
1127
- orderP1: float,
1128
- stickingProbabilityP2: float = ...,
1129
- rateP2: float = ...,
1130
- 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 = ...,
1131
1278
  ) -> None: ...
1132
1279
 
1133
1280
  class TEOSPECVD(ProcessModel):
1134
1281
  def __init__(
1135
1282
  self,
1136
- stickingProbabilityRadical: float,
1137
- depositionRateRadical: float,
1138
- depositionRateIon: float,
1139
- exponentIon: float,
1140
- stickingProbabilityIon: float = ...,
1141
- reactionOrderRadical: float = ...,
1142
- reactionOrderIon: float = ...,
1143
- 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 = ...,
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
- def setNumThreads(arg0: int) -> None: ...
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: ...