ViennaPS 3.5.0__cp312-cp312-macosx_11_0_arm64.whl → 3.6.0__cp312-cp312-macosx_11_0_arm64.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.

viennaps2d/viennaps2d.pyi CHANGED
@@ -1,6 +1,8 @@
1
+ import collections.abc
2
+ import typing
1
3
  import viennals2d.viennals2d
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: viennals2d.viennals2d.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: viennals2d.viennals2d.Domain
65
+ self,
66
+ halfAxes,
67
+ gridDelta: typing.SupportsFloat,
68
+ mask: viennals2d.viennals2d.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[viennals2d.viennals2d.Domain],
194
+ levelSets: collections.abc.Sequence[viennals2d.viennals2d.Domain],
182
195
  materialMap: viennals2d.viennals2d.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) -> viennals2d.viennals2d.Mesh: ...
@@ -202,11 +215,13 @@ class DenseCellSet:
202
215
  def getSurface(self) -> viennals2d.viennals2d.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,25 +260,49 @@ 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: viennals2d.viennals2d.BoundaryConditionEnum = ...,
252
267
  ) -> None: ...
253
268
  @overload
254
269
  def __init__(
255
270
  self,
256
- gridDelta: float,
257
- xExtent: float,
271
+ gridDelta: typing.SupportsFloat,
272
+ xExtent: typing.SupportsFloat,
258
273
  boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
259
274
  ) -> None: ...
275
+ @overload
276
+ def __init__(
277
+ self, bounds, boundaryConditions, gridDelta: typing.SupportsFloat = ...
278
+ ) -> None: ...
279
+ @overload
280
+ def addMetaData(self, arg0: str, arg1: typing.SupportsFloat) -> None: ...
281
+ @overload
282
+ def addMetaData(
283
+ self, arg0: str, arg1: collections.abc.Sequence[typing.SupportsFloat]
284
+ ) -> None: ...
285
+ @overload
286
+ def addMetaData(
287
+ self,
288
+ arg0: collections.abc.Mapping[
289
+ str, collections.abc.Sequence[typing.SupportsFloat]
290
+ ],
291
+ ) -> None: ...
260
292
  def applyBooleanOperation(
261
293
  self, arg0: viennals2d.viennals2d.Domain, arg1
262
294
  ) -> None: ...
263
295
  def clear(self) -> None: ...
296
+ def clearMetaData(self, clearDomainData: bool = ...) -> None: ...
264
297
  def deepCopy(self, arg0: Domain) -> None: ...
298
+ @staticmethod
299
+ def disableMetaData() -> None: ...
265
300
  def duplicateTopLevelSet(self, arg0: Material) -> None: ...
266
- def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
301
+ @staticmethod
302
+ def enableMetaData(level: MetaDataLevel = ...) -> None: ...
303
+ def generateCellSet(
304
+ self, arg0: typing.SupportsFloat, arg1: Material, arg2: bool
305
+ ) -> None: ...
267
306
  def getBoundaryConditions(self, *args, **kwargs): ...
268
307
  def getBoundingBox(self, *args, **kwargs): ...
269
308
  def getCellSet(self) -> DenseCellSet: ...
@@ -271,6 +310,7 @@ class Domain:
271
310
  def getGridDelta(self) -> float: ...
272
311
  def getLevelSets(self) -> list[viennals2d.viennals2d.Domain]: ...
273
312
  def getMaterialMap(self, *args, **kwargs): ...
313
+ def getMetaData(self) -> dict[str, list[float]]: ...
274
314
  def getSetup(self, *args, **kwargs): ...
275
315
  def insertNextLevelSet(
276
316
  self, levelset: viennals2d.viennals2d.Domain, wrapLowerLevelSet: bool = ...
@@ -281,25 +321,27 @@ class Domain:
281
321
  material: Material,
282
322
  wrapLowerLevelSet: bool = ...,
283
323
  ) -> None: ...
284
- def print(self) -> None: ...
285
- def removeLevelSet(self, arg0: int, arg1: bool) -> None: ...
324
+ def print(self, arg0, arg1: bool) -> None: ...
325
+ def removeLevelSet(self, arg0: typing.SupportsInt, arg1: bool) -> None: ...
286
326
  def removeMaterial(self, arg0: Material) -> None: ...
287
327
  def removeTopLevelSet(self) -> None: ...
288
328
  def saveHullMesh(
289
- self, filename: str, wrappingLayerEpsilon: float = ...
329
+ self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
330
+ ) -> None: ...
331
+ def saveLevelSetMesh(
332
+ self, filename: str, width: typing.SupportsInt = ...
290
333
  ) -> None: ...
291
- def saveLevelSetMesh(self, filename: str, width: int = ...) -> None: ...
292
334
  def saveLevelSets(self, filename: str) -> None: ...
293
335
  def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
294
336
  def saveVolumeMesh(
295
- self, filename: str, wrappingLayerEpsilon: float = ...
337
+ self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
296
338
  ) -> None: ...
297
339
  def setMaterialMap(self, arg0) -> None: ...
298
340
  def setup(
299
341
  self,
300
- gridDelta: float,
301
- xExtent: float,
302
- yExtent: float = ...,
342
+ gridDelta: typing.SupportsFloat,
343
+ xExtent: typing.SupportsFloat,
344
+ yExtent: typing.SupportsFloat = ...,
303
345
  boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
304
346
  ) -> None: ...
305
347
 
@@ -311,16 +353,18 @@ class Domain3D:
311
353
  @overload
312
354
  def __init__(
313
355
  self,
314
- gridDelta: float,
315
- xExtent: float,
316
- yExtent: float,
356
+ gridDelta: typing.SupportsFloat,
357
+ xExtent: typing.SupportsFloat,
358
+ yExtent: typing.SupportsFloat,
317
359
  boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
318
360
  ) -> None: ...
319
361
  def applyBooleanOperation(self, *args, **kwargs): ...
320
362
  def clear(self) -> None: ...
321
363
  def deepCopy(self, arg0: Domain3D) -> None: ...
322
364
  def duplicateTopLevelSet(self, arg0: Material) -> None: ...
323
- def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
365
+ def generateCellSet(
366
+ self, arg0: typing.SupportsFloat, arg1: Material, arg2: bool
367
+ ) -> None: ...
324
368
  def getBoundaryConditions(self, *args, **kwargs): ...
325
369
  def getBoundingBox(self, *args, **kwargs): ...
326
370
  def getCellSet(self, *args, **kwargs): ...
@@ -331,25 +375,27 @@ class Domain3D:
331
375
  def getSetup(self, *args, **kwargs): ...
332
376
  def insertNextLevelSet(self, *args, **kwargs): ...
333
377
  def insertNextLevelSetAsMaterial(self, *args, **kwargs): ...
334
- def print(self) -> None: ...
335
- def removeLevelSet(self, arg0: int, arg1: bool) -> None: ...
378
+ def print(self, arg0, arg1: bool) -> None: ...
379
+ def removeLevelSet(self, arg0: typing.SupportsInt, arg1: bool) -> None: ...
336
380
  def removeMaterial(self, arg0: Material) -> None: ...
337
381
  def removeTopLevelSet(self) -> None: ...
338
382
  def saveHullMesh(
339
- self, filename: str, wrappingLayerEpsilon: float = ...
383
+ self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
384
+ ) -> None: ...
385
+ def saveLevelSetMesh(
386
+ self, filename: str, width: typing.SupportsInt = ...
340
387
  ) -> None: ...
341
- def saveLevelSetMesh(self, filename: str, width: int = ...) -> None: ...
342
388
  def saveLevelSets(self, arg0: str) -> None: ...
343
389
  def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
344
390
  def saveVolumeMesh(
345
- self, filename: str, wrappingLayerEpsilon: float = ...
391
+ self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
346
392
  ) -> None: ...
347
393
  def setMaterialMap(self, arg0: MaterialMap) -> None: ...
348
394
  def setup(
349
395
  self,
350
- gridDelta: float,
351
- xExtent: float,
352
- yExtent: float,
396
+ gridDelta: typing.SupportsFloat,
397
+ xExtent: typing.SupportsFloat,
398
+ yExtent: typing.SupportsFloat,
353
399
  boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
354
400
  ) -> None: ...
355
401
 
@@ -359,9 +405,9 @@ class DomainSetup:
359
405
  @overload
360
406
  def __init__(
361
407
  self,
362
- gridDelta: float,
363
- xExtent: float,
364
- yExtent: float,
408
+ gridDelta: typing.SupportsFloat,
409
+ xExtent: typing.SupportsFloat,
410
+ yExtent: typing.SupportsFloat,
365
411
  boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
366
412
  ) -> None: ...
367
413
  def boundaryCons(self, *args, **kwargs): ...
@@ -386,13 +432,13 @@ class Extrude:
386
432
  inputDomain: Domain,
387
433
  outputDomain: Domain3D,
388
434
  extent,
389
- extrudeDimension: int,
435
+ extrudeDimension: typing.SupportsInt,
390
436
  boundaryConditions,
391
437
  ) -> None: ...
392
438
  def apply(self) -> None: ...
393
439
  def setBoundaryConditions(self, arg0) -> None: ...
394
440
  def setExtent(self, arg0) -> None: ...
395
- def setExtrudeDimension(self, arg0: int) -> None: ...
441
+ def setExtrudeDimension(self, arg0: typing.SupportsInt) -> None: ...
396
442
  def setInputDomain(self, arg0: Domain) -> None: ...
397
443
  def setOutputDomain(self, arg0: Domain3D) -> None: ...
398
444
 
@@ -400,10 +446,12 @@ class FaradayCageEtching(ProcessModel):
400
446
  @overload
401
447
  def __init__(self) -> None: ...
402
448
  @overload
403
- def __init__(self, maskMaterials: list[Material]) -> None: ...
449
+ def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
404
450
  @overload
405
451
  def __init__(
406
- self, maskMaterials: list[Material], parameters: FaradayCageParameters
452
+ self,
453
+ maskMaterials: collections.abc.Sequence[Material],
454
+ parameters: FaradayCageParameters,
407
455
  ) -> None: ...
408
456
  def getParameters(self) -> FaradayCageParameters: ...
409
457
  def setParameters(self, arg0: FaradayCageParameters) -> None: ...
@@ -419,14 +467,14 @@ class FluorocarbonEtching(ProcessModel):
419
467
  @overload
420
468
  def __init__(
421
469
  self,
422
- ionFlux: float,
423
- etchantFlux: float,
424
- polyFlux: float,
425
- meanIonEnergy: float = ...,
426
- sigmaIonEnergy: float = ...,
427
- ionExponent: float = ...,
428
- deltaP: float = ...,
429
- etchStopDepth: float = ...,
470
+ ionFlux: typing.SupportsFloat,
471
+ etchantFlux: typing.SupportsFloat,
472
+ polyFlux: typing.SupportsFloat,
473
+ meanIonEnergy: typing.SupportsFloat = ...,
474
+ sigmaIonEnergy: typing.SupportsFloat = ...,
475
+ ionExponent: typing.SupportsFloat = ...,
476
+ deltaP: typing.SupportsFloat = ...,
477
+ etchStopDepth: typing.SupportsFloat = ...,
430
478
  ) -> None: ...
431
479
  @overload
432
480
  def __init__(self, parameters: FluorocarbonParameters) -> None: ...
@@ -508,29 +556,32 @@ class GDSGeometry:
508
556
  @overload
509
557
  def __init__(self) -> None: ...
510
558
  @overload
511
- def __init__(self, gridDelta: float) -> None: ...
559
+ def __init__(self, gridDelta: typing.SupportsFloat) -> None: ...
512
560
  @overload
513
- def __init__(self, gridDelta: float, boundaryConditions) -> None: ...
561
+ def __init__(self, gridDelta: typing.SupportsFloat, boundaryConditions) -> None: ...
514
562
  def addBlur(
515
563
  self,
516
- sigmas: list[float],
517
- weights: list[float],
518
- threshold: float = ...,
519
- delta: float = ...,
520
- gridRefinement: int = ...,
564
+ sigmas: collections.abc.Sequence[typing.SupportsFloat],
565
+ weights: collections.abc.Sequence[typing.SupportsFloat],
566
+ threshold: typing.SupportsFloat = ...,
567
+ delta: typing.SupportsFloat = ...,
568
+ gridRefinement: typing.SupportsInt = ...,
521
569
  ) -> None: ...
522
570
  def getAllLayers(self) -> set[int]: ...
523
571
  def getBounds(self, *args, **kwargs): ...
524
572
  def getNumberOfStructures(self) -> int: ...
525
573
  def layerToLevelSet(
526
- self, layer: int, blurLayer: bool = ...
574
+ self, layer: typing.SupportsInt, blurLayer: bool = ...
527
575
  ) -> viennals2d.viennals2d.Domain: ...
528
576
  def print(self) -> None: ...
529
577
  def setBoundaryConditions(
530
- self, arg0: list[viennals2d.viennals2d.BoundaryConditionEnum]
578
+ self,
579
+ arg0: collections.abc.Sequence[viennals2d.viennals2d.BoundaryConditionEnum],
580
+ ) -> None: ...
581
+ def setBoundaryPadding(
582
+ self, arg0: typing.SupportsFloat, arg1: typing.SupportsFloat
531
583
  ) -> None: ...
532
- def setBoundaryPadding(self, arg0: float, arg1: float) -> None: ...
533
- def setGridDelta(self, arg0: float) -> None: ...
584
+ def setGridDelta(self, arg0: typing.SupportsFloat) -> None: ...
534
585
 
535
586
  class GDSReader:
536
587
  def __init__(self) -> None: ...
@@ -541,13 +592,26 @@ class GDSReader:
541
592
  class GeometryFactory:
542
593
  def __init__(self, *args, **kwargs) -> None: ...
543
594
  def makeBoxStencil(
544
- self, position, width: float, height: float, angle: float
595
+ self,
596
+ position,
597
+ width: typing.SupportsFloat,
598
+ height: typing.SupportsFloat,
599
+ angle: typing.SupportsFloat = ...,
600
+ length: typing.SupportsFloat = ...,
545
601
  ) -> viennals2d.viennals2d.Domain: ...
546
602
  def makeCylinderStencil(
547
- self, position, radius: float, height: float, angle: float
603
+ self,
604
+ position,
605
+ radius: typing.SupportsFloat,
606
+ height: typing.SupportsFloat,
607
+ angle: typing.SupportsFloat = ...,
608
+ ) -> viennals2d.viennals2d.Domain: ...
609
+ def makeMask(
610
+ self, base: typing.SupportsFloat, height: typing.SupportsFloat
611
+ ) -> viennals2d.viennals2d.Domain: ...
612
+ def makeSubstrate(
613
+ self, base: typing.SupportsFloat
548
614
  ) -> viennals2d.viennals2d.Domain: ...
549
- def makeMask(self, base: float, height: float) -> viennals2d.viennals2d.Domain: ...
550
- def makeSubstrate(self, base: float) -> viennals2d.viennals2d.Domain: ...
551
615
 
552
616
  class HBrO2Etching(ProcessModel):
553
617
  @overload
@@ -555,14 +619,14 @@ class HBrO2Etching(ProcessModel):
555
619
  @overload
556
620
  def __init__(
557
621
  self,
558
- ionFlux: float,
559
- etchantFlux: float,
560
- oxygenFlux: float,
561
- meanIonEnergy: float = ...,
562
- sigmaIonEnergy: float = ...,
563
- ionExponent: float = ...,
564
- oxySputterYield: float = ...,
565
- etchStopDepth: float = ...,
622
+ ionFlux: typing.SupportsFloat,
623
+ etchantFlux: typing.SupportsFloat,
624
+ oxygenFlux: typing.SupportsFloat,
625
+ meanIonEnergy: typing.SupportsFloat = ...,
626
+ sigmaIonEnergy: typing.SupportsFloat = ...,
627
+ ionExponent: typing.SupportsFloat = ...,
628
+ oxySputterYield: typing.SupportsFloat = ...,
629
+ etchStopDepth: typing.SupportsFloat = ...,
566
630
  ) -> None: ...
567
631
  @overload
568
632
  def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
@@ -577,7 +641,7 @@ class HoleShape:
577
641
  Half: ClassVar[HoleShape] = ...
578
642
  Quarter: ClassVar[HoleShape] = ...
579
643
  __entries: ClassVar[dict] = ...
580
- def __init__(self, value: int) -> None: ...
644
+ def __init__(self, value: typing.SupportsInt) -> None: ...
581
645
  def __eq__(self, other: object) -> bool: ...
582
646
  def __hash__(self) -> int: ...
583
647
  def __index__(self) -> int: ...
@@ -601,7 +665,7 @@ class IBEParameters:
601
665
  sigmaEnergy: float
602
666
  thresholdEnergy: float
603
667
  tiltAngle: float
604
- yieldFunction: Callable[[float], float]
668
+ yieldFunction: collections.abc.Callable[[typing.SupportsFloat], float]
605
669
  def __init__(self) -> None: ...
606
670
 
607
671
  class Interpolation:
@@ -610,7 +674,7 @@ class Interpolation:
610
674
  IDW: ClassVar[Interpolation] = ...
611
675
  LINEAR: ClassVar[Interpolation] = ...
612
676
  __entries: ClassVar[dict] = ...
613
- def __init__(self, value: int) -> None: ...
677
+ def __init__(self, value: typing.SupportsInt) -> None: ...
614
678
  def __eq__(self, other: object) -> bool: ...
615
679
  def __hash__(self) -> int: ...
616
680
  def __index__(self) -> int: ...
@@ -625,19 +689,33 @@ class IonBeamEtching(ProcessModel):
625
689
  @overload
626
690
  def __init__(self) -> None: ...
627
691
  @overload
628
- def __init__(self, maskMaterials: list[Material]) -> None: ...
692
+ def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
629
693
  @overload
630
694
  def __init__(
631
- self, maskMaterials: list[Material], parameters: IBEParameters
695
+ self,
696
+ maskMaterials: collections.abc.Sequence[Material],
697
+ parameters: IBEParameters,
632
698
  ) -> None: ...
633
699
  def getParameters(self) -> IBEParameters: ...
634
700
  def setParameters(self, arg0: IBEParameters) -> None: ...
635
701
 
636
702
  class IsotropicProcess(ProcessModel):
637
703
  @overload
638
- def __init__(self, rate: float = ..., maskMaterial: Material = ...) -> None: ...
704
+ def __init__(
705
+ self, rate: typing.SupportsFloat = ..., maskMaterial: Material = ...
706
+ ) -> None: ...
639
707
  @overload
640
- def __init__(self, rate: float, maskMaterial: list[Material]) -> None: ...
708
+ def __init__(
709
+ self,
710
+ rate: typing.SupportsFloat,
711
+ maskMaterial: collections.abc.Sequence[Material],
712
+ ) -> None: ...
713
+ @overload
714
+ def __init__(
715
+ self,
716
+ materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
717
+ defaultRate: typing.SupportsFloat = ...,
718
+ ) -> None: ...
641
719
 
642
720
  class Length:
643
721
  def __init__(self, *args, **kwargs) -> None: ...
@@ -663,7 +741,7 @@ class LogLevel:
663
741
  TIMING: ClassVar[LogLevel] = ...
664
742
  WARNING: ClassVar[LogLevel] = ...
665
743
  __entries: ClassVar[dict] = ...
666
- def __init__(self, value: int) -> None: ...
744
+ def __init__(self, value: typing.SupportsInt) -> None: ...
667
745
  def __eq__(self, other: object) -> bool: ...
668
746
  def __hash__(self) -> int: ...
669
747
  def __index__(self) -> int: ...
@@ -680,9 +758,11 @@ class Logger:
680
758
  def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
681
759
  def addInfo(self, arg0: str) -> Logger: ...
682
760
  @overload
683
- def addTiming(self, arg0: str, arg1: float) -> Logger: ...
761
+ def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
684
762
  @overload
685
- def addTiming(self, arg0: str, arg1: float, arg2: float) -> Logger: ...
763
+ def addTiming(
764
+ self, arg0: str, arg1: typing.SupportsFloat, arg2: typing.SupportsFloat
765
+ ) -> Logger: ...
686
766
  def addWarning(self, arg0: str) -> Logger: ...
687
767
  @staticmethod
688
768
  def getInstance() -> Logger: ...
@@ -866,7 +946,7 @@ class Material:
866
946
  Undefined: ClassVar[Material] = ...
867
947
  W: ClassVar[Material] = ...
868
948
  __entries: ClassVar[dict] = ...
869
- def __init__(self, value: int) -> None: ...
949
+ def __init__(self, value: typing.SupportsInt) -> None: ...
870
950
  def __eq__(self, other: object) -> bool: ...
871
951
  def __hash__(self) -> int: ...
872
952
  def __index__(self) -> int: ...
@@ -879,46 +959,67 @@ class Material:
879
959
 
880
960
  class MaterialMap:
881
961
  def __init__(self) -> None: ...
882
- def getMaterialAtIdx(self, arg0: int) -> Material: ...
962
+ def getMaterialAtIdx(self, arg0: typing.SupportsInt) -> Material: ...
883
963
  def getMaterialMap(self) -> viennals2d.viennals2d.MaterialMap: ...
884
964
  @staticmethod
885
965
  def getMaterialName(arg0: Material) -> str: ...
886
966
  def insertNextMaterial(self, material: Material = ...) -> None: ...
887
967
  @staticmethod
888
- def isMaterial(arg0: float, arg1: Material) -> bool: ...
968
+ def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
889
969
  @staticmethod
890
- def mapToMaterial(arg0: float) -> Material: ...
970
+ def mapToMaterial(arg0: typing.SupportsFloat) -> Material: ...
891
971
  def size(self) -> int: ...
892
972
 
973
+ class MetaDataLevel:
974
+ __members__: ClassVar[dict] = ... # read-only
975
+ DOMAIN: ClassVar[MetaDataLevel] = ...
976
+ FULL: ClassVar[MetaDataLevel] = ...
977
+ NONE: ClassVar[MetaDataLevel] = ...
978
+ PROCESS: ClassVar[MetaDataLevel] = ...
979
+ __entries: ClassVar[dict] = ...
980
+ def __init__(self, value: typing.SupportsInt) -> None: ...
981
+ def __eq__(self, other: object) -> bool: ...
982
+ def __hash__(self) -> int: ...
983
+ def __index__(self) -> int: ...
984
+ def __int__(self) -> int: ...
985
+ def __ne__(self, other: object) -> bool: ...
986
+ @property
987
+ def name(self) -> str: ...
988
+ @property
989
+ def value(self) -> int: ...
990
+
893
991
  class MultiParticleProcess(ProcessModel):
894
992
  def __init__(self) -> None: ...
895
993
  def addIonParticle(
896
994
  self,
897
- sourcePower: float,
898
- thetaRMin: float = ...,
899
- thetaRMax: float = ...,
900
- minAngle: float = ...,
901
- B_sp: float = ...,
902
- meanEnergy: float = ...,
903
- sigmaEnergy: float = ...,
904
- thresholdEnergy: float = ...,
905
- inflectAngle: float = ...,
906
- n: float = ...,
995
+ sourcePower: typing.SupportsFloat,
996
+ thetaRMin: typing.SupportsFloat = ...,
997
+ thetaRMax: typing.SupportsFloat = ...,
998
+ minAngle: typing.SupportsFloat = ...,
999
+ B_sp: typing.SupportsFloat = ...,
1000
+ meanEnergy: typing.SupportsFloat = ...,
1001
+ sigmaEnergy: typing.SupportsFloat = ...,
1002
+ thresholdEnergy: typing.SupportsFloat = ...,
1003
+ inflectAngle: typing.SupportsFloat = ...,
1004
+ n: typing.SupportsFloat = ...,
907
1005
  label: str = ...,
908
1006
  ) -> None: ...
909
1007
  @overload
910
1008
  def addNeutralParticle(
911
- self, stickingProbability: float, label: str = ...
1009
+ self, stickingProbability: typing.SupportsFloat, label: str = ...
912
1010
  ) -> None: ...
913
1011
  @overload
914
1012
  def addNeutralParticle(
915
1013
  self,
916
- materialSticking: dict[Material, float],
917
- defaultStickingProbability: float = ...,
1014
+ materialSticking: collections.abc.Mapping[Material, typing.SupportsFloat],
1015
+ defaultStickingProbability: typing.SupportsFloat = ...,
918
1016
  label: str = ...,
919
1017
  ) -> None: ...
920
1018
  def setRateFunction(
921
- self, arg0: Callable[[list[float], Material], float]
1019
+ self,
1020
+ arg0: collections.abc.Callable[
1021
+ [collections.abc.Sequence[typing.SupportsFloat], Material], float
1022
+ ],
922
1023
  ) -> None: ...
923
1024
 
924
1025
  class NormalizationType:
@@ -926,7 +1027,7 @@ class NormalizationType:
926
1027
  MAX: ClassVar[NormalizationType] = ...
927
1028
  SOURCE: ClassVar[NormalizationType] = ...
928
1029
  __entries: ClassVar[dict] = ...
929
- def __init__(self, value: int) -> None: ...
1030
+ def __init__(self, value: typing.SupportsInt) -> None: ...
930
1031
  def __eq__(self, other: object) -> bool: ...
931
1032
  def __hash__(self) -> int: ...
932
1033
  def __index__(self) -> int: ...
@@ -940,18 +1041,18 @@ class NormalizationType:
940
1041
  class OxideRegrowth(ProcessModel):
941
1042
  def __init__(
942
1043
  self,
943
- nitrideEtchRate: float,
944
- oxideEtchRate: float,
945
- redepositionRate: float,
946
- redepositionThreshold: float,
947
- redepositionTimeInt: float,
948
- diffusionCoefficient: float,
949
- sinkStrength: float,
950
- scallopVelocity: float,
951
- centerVelocity: float,
952
- topHeight: float,
953
- centerWidth: float,
954
- stabilityFactor: float,
1044
+ nitrideEtchRate: typing.SupportsFloat,
1045
+ oxideEtchRate: typing.SupportsFloat,
1046
+ redepositionRate: typing.SupportsFloat,
1047
+ redepositionThreshold: typing.SupportsFloat,
1048
+ redepositionTimeInt: typing.SupportsFloat,
1049
+ diffusionCoefficient: typing.SupportsFloat,
1050
+ sinkStrength: typing.SupportsFloat,
1051
+ scallopVelocity: typing.SupportsFloat,
1052
+ centerVelocity: typing.SupportsFloat,
1053
+ topHeight: typing.SupportsFloat,
1054
+ centerWidth: typing.SupportsFloat,
1055
+ stabilityFactor: typing.SupportsFloat,
955
1056
  ) -> None: ...
956
1057
 
957
1058
  class Particle:
@@ -960,7 +1061,15 @@ class Particle:
960
1061
  def getSourceDistributionPower(self) -> float: ...
961
1062
  def initNew(self, arg0) -> None: ...
962
1063
  def surfaceCollision(
963
- self, arg0: float, arg1, arg2, arg3: int, arg4: int, arg5, arg6, arg7
1064
+ self,
1065
+ arg0: typing.SupportsFloat,
1066
+ arg1,
1067
+ arg2,
1068
+ arg3: typing.SupportsInt,
1069
+ arg4: typing.SupportsInt,
1070
+ arg5,
1071
+ arg6,
1072
+ arg7,
964
1073
  ) -> None: ...
965
1074
  def surfaceReflection(self, *args, **kwargs): ...
966
1075
 
@@ -968,9 +1077,11 @@ class Planarize:
968
1077
  @overload
969
1078
  def __init__(self) -> None: ...
970
1079
  @overload
971
- def __init__(self, geometry: Domain, cutoffHeight: float = ...) -> None: ...
1080
+ def __init__(
1081
+ self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
1082
+ ) -> None: ...
972
1083
  def apply(self) -> None: ...
973
- def setCutoffPosition(self, arg0: float) -> None: ...
1084
+ def setCutoffPosition(self, arg0: typing.SupportsFloat) -> None: ...
974
1085
  def setDomain(self, arg0: Domain) -> None: ...
975
1086
 
976
1087
  class PlasmaEtchingParameters:
@@ -1009,6 +1120,13 @@ class PlasmaEtchingParametersPassivation:
1009
1120
  Eth_ie: float
1010
1121
  def __init__(self) -> None: ...
1011
1122
 
1123
+ class PlasmaEtchingParametersPolymer:
1124
+ A_sp: float
1125
+ B_sp: float
1126
+ Eth_sp: float
1127
+ rho: float
1128
+ def __init__(self) -> None: ...
1129
+
1012
1130
  class PlasmaEtchingParametersSubstrate:
1013
1131
  A_ie: float
1014
1132
  A_sp: float
@@ -1035,25 +1153,25 @@ class Process:
1035
1153
  def getProcessDuration(self) -> float: ...
1036
1154
  def getRayTracingParameters(self) -> RayTracingParameters: ...
1037
1155
  def setAdvectionParameters(self, arg0: AdvectionParameters) -> None: ...
1038
- def setCoverageDeltaThreshold(self, arg0: float) -> None: ...
1156
+ def setCoverageDeltaThreshold(self, arg0: typing.SupportsFloat) -> None: ...
1039
1157
  def setDomain(self, *args, **kwargs): ...
1040
1158
  def setIntegrationScheme(
1041
1159
  self, arg0: viennals2d.viennals2d.IntegrationSchemeEnum
1042
1160
  ) -> None: ...
1043
- def setMaxCoverageInitIterations(self, arg0: int) -> None: ...
1044
- def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
1045
- def setProcessDuration(self, arg0: float) -> None: ...
1161
+ def setMaxCoverageInitIterations(self, arg0: typing.SupportsInt) -> None: ...
1162
+ def setNumberOfRaysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
1163
+ def setProcessDuration(self, arg0: typing.SupportsFloat) -> None: ...
1046
1164
  def setProcessModel(self, arg0: ProcessModel) -> None: ...
1047
- def setRayTracingDiskRadius(self, arg0: float) -> None: ...
1165
+ def setRayTracingDiskRadius(self, arg0: typing.SupportsFloat) -> None: ...
1048
1166
  def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
1049
1167
  def setSourceDirection(self, arg0) -> None: ...
1050
- def setTimeStepRatio(self, arg0: float) -> None: ...
1168
+ def setTimeStepRatio(self, arg0: typing.SupportsFloat) -> None: ...
1051
1169
 
1052
1170
  class ProcessModel:
1053
1171
  def __init__(self) -> None: ...
1054
1172
  def getAdvectionCallback(self, *args, **kwargs): ...
1055
1173
  def getGeometricModel(self, *args, **kwargs): ...
1056
- def getParticleLogSize(self, arg0: int) -> int: ...
1174
+ def getParticleLogSize(self, arg0: typing.SupportsInt) -> int: ...
1057
1175
  def getParticleTypes(self, *args, **kwargs): ...
1058
1176
  def getPrimaryDirection(self, *args, **kwargs): ...
1059
1177
  def getProcessName(self) -> str | None: ...
@@ -1070,9 +1188,9 @@ class ProcessModel:
1070
1188
  class ProcessParams:
1071
1189
  def __init__(self) -> None: ...
1072
1190
  @overload
1073
- def getScalarData(self, arg0: int) -> float: ...
1191
+ def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1074
1192
  @overload
1075
- def getScalarData(self, arg0: int) -> float: ...
1193
+ def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1076
1194
  @overload
1077
1195
  def getScalarData(self, arg0: str) -> float: ...
1078
1196
  @overload
@@ -1080,15 +1198,15 @@ class ProcessParams:
1080
1198
  @overload
1081
1199
  def getScalarData(self) -> list[float]: ...
1082
1200
  def getScalarDataIndex(self, arg0: str) -> int: ...
1083
- def getScalarDataLabel(self, arg0: int) -> str: ...
1084
- def insertNextScalar(self, arg0: float, arg1: str) -> None: ...
1201
+ def getScalarDataLabel(self, arg0: typing.SupportsInt) -> str: ...
1202
+ def insertNextScalar(self, arg0: typing.SupportsFloat, arg1: str) -> None: ...
1085
1203
 
1086
1204
  class RateGrid:
1087
1205
  def __init__(self) -> None: ...
1088
1206
  def interpolate(self, coord) -> float: ...
1089
1207
  def loadFromCSV(self, filename: str) -> bool: ...
1090
- def setCustomInterpolator(self, function: Callable) -> None: ...
1091
- def setIDWNeighbors(self, k: int) -> None: ...
1208
+ def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
1209
+ def setIDWNeighbors(self, k: typing.SupportsInt) -> None: ...
1092
1210
  @overload
1093
1211
  def setInterpolationMode(self, mode: Interpolation) -> None: ...
1094
1212
  @overload
@@ -1104,9 +1222,9 @@ class RateSet:
1104
1222
  def __init__(
1105
1223
  self,
1106
1224
  direction=...,
1107
- directionalVelocity: float = ...,
1108
- isotropicVelocity: float = ...,
1109
- maskMaterials: list[Material] = ...,
1225
+ directionalVelocity: typing.SupportsFloat = ...,
1226
+ isotropicVelocity: typing.SupportsFloat = ...,
1227
+ maskMaterials: collections.abc.Sequence[Material] = ...,
1110
1228
  calculateVisibility: bool = ...,
1111
1229
  ) -> None: ...
1112
1230
  def print(self) -> None: ...
@@ -1121,20 +1239,48 @@ class RayTracingParameters:
1121
1239
  useRandomSeeds: bool
1122
1240
  def __init__(self) -> None: ...
1123
1241
 
1242
+ class Reader:
1243
+ @overload
1244
+ def __init__(self) -> None: ...
1245
+ @overload
1246
+ def __init__(self, fileName: str) -> None: ...
1247
+ def apply(self) -> Domain: ...
1248
+ def setFileName(self, arg0: str) -> None: ...
1249
+
1250
+ class SF6C4F8Etching(ProcessModel):
1251
+ @overload
1252
+ def __init__(self) -> None: ...
1253
+ @overload
1254
+ def __init__(
1255
+ self,
1256
+ ionFlux: typing.SupportsFloat,
1257
+ etchantFlux: typing.SupportsFloat,
1258
+ meanEnergy: typing.SupportsFloat,
1259
+ sigmaEnergy: typing.SupportsFloat,
1260
+ ionExponent: typing.SupportsFloat = ...,
1261
+ etchStopDepth: typing.SupportsFloat = ...,
1262
+ ) -> None: ...
1263
+ @overload
1264
+ def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
1265
+ @staticmethod
1266
+ def defaultParameters() -> PlasmaEtchingParameters: ...
1267
+ def getParameters(self) -> PlasmaEtchingParameters: ...
1268
+ def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
1269
+
1124
1270
  class SF6O2Etching(ProcessModel):
1125
1271
  @overload
1126
1272
  def __init__(self) -> None: ...
1127
1273
  @overload
1128
1274
  def __init__(
1129
1275
  self,
1130
- ionFlux: float,
1131
- etchantFlux: float,
1132
- oxygenFlux: float,
1133
- meanIonEnergy: float = ...,
1134
- sigmaIonEnergy: float = ...,
1135
- ionExponent: float = ...,
1136
- oxySputterYield: float = ...,
1137
- etchStopDepth: float = ...,
1276
+ ionFlux: typing.SupportsFloat,
1277
+ etchantFlux: typing.SupportsFloat,
1278
+ oxygenFlux: typing.SupportsFloat,
1279
+ meanIonEnergy: typing.SupportsFloat = ...,
1280
+ sigmaIonEnergy: typing.SupportsFloat = ...,
1281
+ ionExponent: typing.SupportsFloat = ...,
1282
+ oxySputterYield: typing.SupportsFloat = ...,
1283
+ etchStopDepth: typing.SupportsFloat = ...,
1138
1284
  ) -> None: ...
1139
1285
  @overload
1140
1286
  def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
@@ -1146,72 +1292,77 @@ class SF6O2Etching(ProcessModel):
1146
1292
  class SingleParticleALD(ProcessModel):
1147
1293
  def __init__(
1148
1294
  self,
1149
- stickingProbability: float,
1150
- numCycles: float,
1151
- growthPerCycle: float,
1152
- totalCycles: float,
1153
- coverageTimeStep: float,
1154
- evFlux: float,
1155
- inFlux: float,
1156
- s0: float,
1157
- gasMFP: float,
1295
+ stickingProbability: typing.SupportsFloat,
1296
+ numCycles: typing.SupportsFloat,
1297
+ growthPerCycle: typing.SupportsFloat,
1298
+ totalCycles: typing.SupportsFloat,
1299
+ coverageTimeStep: typing.SupportsFloat,
1300
+ evFlux: typing.SupportsFloat,
1301
+ inFlux: typing.SupportsFloat,
1302
+ s0: typing.SupportsFloat,
1303
+ gasMFP: typing.SupportsFloat,
1158
1304
  ) -> None: ...
1159
1305
 
1160
1306
  class SingleParticleProcess(ProcessModel):
1161
1307
  @overload
1162
1308
  def __init__(
1163
1309
  self,
1164
- rate: float = ...,
1165
- stickingProbability: float = ...,
1166
- sourceExponent: float = ...,
1310
+ rate: typing.SupportsFloat = ...,
1311
+ stickingProbability: typing.SupportsFloat = ...,
1312
+ sourceExponent: typing.SupportsFloat = ...,
1167
1313
  maskMaterial: Material = ...,
1168
1314
  ) -> None: ...
1169
1315
  @overload
1170
1316
  def __init__(
1171
1317
  self,
1172
- rate: float,
1173
- stickingProbability: float,
1174
- sourceExponent: float,
1175
- maskMaterials: list[Material],
1318
+ rate: typing.SupportsFloat,
1319
+ stickingProbability: typing.SupportsFloat,
1320
+ sourceExponent: typing.SupportsFloat,
1321
+ maskMaterials: collections.abc.Sequence[Material],
1176
1322
  ) -> None: ...
1177
1323
  @overload
1178
1324
  def __init__(
1179
1325
  self,
1180
- materialRates: dict[Material, float],
1181
- stickingProbability: float,
1182
- sourceExponent: float,
1326
+ materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
1327
+ stickingProbability: typing.SupportsFloat,
1328
+ sourceExponent: typing.SupportsFloat,
1183
1329
  ) -> None: ...
1184
1330
 
1185
1331
  class SphereDistribution(ProcessModel):
1186
1332
  @overload
1187
1333
  def __init__(
1188
- self, radius: float, gridDelta: float, mask: viennals2d.viennals2d.Domain
1334
+ self,
1335
+ radius: typing.SupportsFloat,
1336
+ gridDelta: typing.SupportsFloat,
1337
+ mask: viennals2d.viennals2d.Domain,
1189
1338
  ) -> None: ...
1190
1339
  @overload
1191
- def __init__(self, radius: float, gridDelta: float) -> None: ...
1340
+ def __init__(
1341
+ self, radius: typing.SupportsFloat, gridDelta: typing.SupportsFloat
1342
+ ) -> None: ...
1192
1343
 
1193
1344
  class TEOSDeposition(ProcessModel):
1194
1345
  def __init__(
1195
1346
  self,
1196
- stickingProbabilityP1: float,
1197
- rateP1: float,
1198
- orderP1: float,
1199
- stickingProbabilityP2: float = ...,
1200
- rateP2: float = ...,
1201
- orderP2: float = ...,
1347
+ stickingProbabilityP1: typing.SupportsFloat,
1348
+ rateP1: typing.SupportsFloat,
1349
+ orderP1: typing.SupportsFloat,
1350
+ stickingProbabilityP2: typing.SupportsFloat = ...,
1351
+ rateP2: typing.SupportsFloat = ...,
1352
+ orderP2: typing.SupportsFloat = ...,
1202
1353
  ) -> None: ...
1203
1354
 
1204
1355
  class TEOSPECVD(ProcessModel):
1205
1356
  def __init__(
1206
1357
  self,
1207
- stickingProbabilityRadical: float,
1208
- depositionRateRadical: float,
1209
- depositionRateIon: float,
1210
- exponentIon: float,
1211
- stickingProbabilityIon: float = ...,
1212
- reactionOrderRadical: float = ...,
1213
- reactionOrderIon: float = ...,
1214
- minAngleIon: float = ...,
1358
+ stickingProbabilityRadical: typing.SupportsFloat,
1359
+ depositionRateRadical: typing.SupportsFloat,
1360
+ depositionRateIon: typing.SupportsFloat,
1361
+ exponentIon: typing.SupportsFloat,
1362
+ stickingProbabilityIon: typing.SupportsFloat = ...,
1363
+ reactionOrderRadical: typing.SupportsFloat = ...,
1364
+ reactionOrderIon: typing.SupportsFloat = ...,
1365
+ minAngleIon: typing.SupportsFloat = ...,
1215
1366
  ) -> None: ...
1216
1367
 
1217
1368
  class Time:
@@ -1234,4 +1385,15 @@ class ToDiskMesh:
1234
1385
  def setDomain(self, arg0: Domain) -> None: ...
1235
1386
  def setMesh(self, arg0: viennals2d.viennals2d.Mesh) -> None: ...
1236
1387
 
1237
- def setNumThreads(arg0: int) -> None: ...
1388
+ class Writer:
1389
+ @overload
1390
+ def __init__(self) -> None: ...
1391
+ @overload
1392
+ def __init__(self, domain: Domain) -> None: ...
1393
+ @overload
1394
+ def __init__(self, domain: Domain, fileName: str) -> None: ...
1395
+ def apply(self) -> None: ...
1396
+ def setDomain(self, arg0: Domain) -> None: ...
1397
+ def setFileName(self, arg0: str) -> None: ...
1398
+
1399
+ def setNumThreads(arg0: typing.SupportsInt) -> None: ...