ViennaPS 3.7.1__cp311-cp311-win_amd64.whl → 3.7.2__cp311-cp311-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ViennaPS might be problematic. Click here for more details.

Files changed (61) hide show
  1. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/METADATA +17 -13
  2. viennaps-3.7.2.dist-info/RECORD +63 -0
  3. viennaps.libs/embree4.dll +0 -0
  4. viennaps.libs/embree_avx.lib +0 -0
  5. viennaps.libs/embree_avx2.lib +0 -0
  6. viennaps.libs/embree_sse42.lib +0 -0
  7. viennaps.libs/lexers.lib +0 -0
  8. viennaps.libs/math.lib +0 -0
  9. viennaps.libs/simd.lib +0 -0
  10. viennaps.libs/sys.lib +0 -0
  11. viennaps.libs/tasking.lib +0 -0
  12. viennaps.libs/tbb12.dll +0 -0
  13. viennaps.libs/vtkCommonComputationalGeometry-9.3.dll +0 -0
  14. viennaps.libs/vtkCommonCore-9.3.dll +0 -0
  15. viennaps.libs/vtkCommonDataModel-9.3.dll +0 -0
  16. viennaps.libs/vtkCommonExecutionModel-9.3.dll +0 -0
  17. viennaps.libs/vtkCommonMath-9.3.dll +0 -0
  18. viennaps.libs/vtkCommonMisc-9.3.dll +0 -0
  19. viennaps.libs/vtkCommonSystem-9.3.dll +0 -0
  20. viennaps.libs/vtkCommonTransforms-9.3.dll +0 -0
  21. viennaps.libs/vtkFiltersCore-9.3.dll +0 -0
  22. viennaps.libs/vtkFiltersGeneral-9.3.dll +0 -0
  23. viennaps.libs/vtkFiltersGeometry-9.3.dll +0 -0
  24. viennaps.libs/vtkFiltersVerdict-9.3.dll +0 -0
  25. viennaps.libs/vtkIOCore-9.3.dll +0 -0
  26. viennaps.libs/vtkIOXML-9.3.dll +0 -0
  27. viennaps.libs/vtkIOXMLParser-9.3.dll +0 -0
  28. viennaps.libs/vtkdoubleconversion-9.3.dll +0 -0
  29. viennaps.libs/vtkexpat-9.3.dll +0 -0
  30. viennaps.libs/vtkfmt-9.3.dll +0 -0
  31. viennaps.libs/vtkkissfft-9.3.dll +0 -0
  32. viennaps.libs/vtkloguru-9.3.dll +0 -0
  33. viennaps.libs/vtklz4-9.3.dll +0 -0
  34. viennaps.libs/vtklzma-9.3.dll +0 -0
  35. viennaps.libs/vtkpugixml-9.3.dll +0 -0
  36. viennaps.libs/vtksys-9.3.dll +0 -0
  37. viennaps.libs/vtkverdict-9.3.dll +0 -0
  38. viennaps.libs/vtkzlib-9.3.dll +0 -0
  39. viennaps2d/Release/viennaps2d.cp310-win_amd64.pyd +0 -0
  40. viennaps2d/Release/viennaps2d.cp311-win_amd64.pyd +0 -0
  41. viennaps2d/__init__.pyi +216 -4
  42. viennaps2d/viennaps2d/__init__.pyi +2656 -0
  43. viennaps2d/viennaps2d/constants.pyi +26 -0
  44. viennaps2d/viennaps2d/ray.pyi +34 -0
  45. viennaps2d/viennaps2d/util.pyi +10 -0
  46. viennaps2d/viennaps2d.cp311-win_amd64.pyd +0 -0
  47. viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd +0 -0
  48. viennaps3d/Release/viennaps3d.cp311-win_amd64.pyd +0 -0
  49. viennaps3d/__init__.pyi +216 -4
  50. viennaps3d/viennaps3d/__init__.pyi +2518 -0
  51. viennaps3d/viennaps3d/constants.pyi +26 -0
  52. viennaps3d/viennaps3d/gpu.pyi +164 -0
  53. viennaps3d/viennaps3d/ray.pyi +34 -0
  54. viennaps3d/viennaps3d/util.pyi +10 -0
  55. viennaps3d/viennaps3d.cp311-win_amd64.pyd +0 -0
  56. viennaps-3.7.1.dist-info/RECORD +0 -57
  57. viennaps2d/viennaps2d.pyi +0 -1423
  58. viennaps3d/gpu.pyi +0 -147
  59. viennaps3d/viennaps3d.pyi +0 -1348
  60. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/WHEEL +0 -0
  61. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/licenses/LICENSE +0 -0
viennaps3d/viennaps3d.pyi DELETED
@@ -1,1348 +0,0 @@
1
- import collections.abc
2
- import typing
3
- import viennals3d.viennals3d
4
- from _typeshed import Incomplete
5
- from typing import ClassVar, overload
6
-
7
- D: int
8
- __version__: str
9
- version: str
10
-
11
- class AdvectionCallback:
12
- domain: Incomplete
13
- def __init__(self) -> None: ...
14
- def applyPostAdvect(self, arg0: typing.SupportsFloat) -> bool: ...
15
- def applyPreAdvect(self, arg0: typing.SupportsFloat) -> bool: ...
16
-
17
- class AdvectionParameters:
18
- checkDissipation: bool
19
- dissipationAlpha: float
20
- ignoreVoids: bool
21
- integrationScheme: viennals3d.viennals3d.IntegrationSchemeEnum
22
- timeStepRatio: float
23
- velocityOutput: bool
24
- def __init__(self) -> None: ...
25
- def toMetaData(self) -> dict[str, list[float]]: ...
26
- def toMetaDataString(self) -> str: ...
27
-
28
- class AtomicLayerProcess:
29
- def __init__(self) -> None: ...
30
- def apply(self) -> None: ...
31
- def disableRandomSeeds(self) -> None: ...
32
- def enableRandomSeeds(self) -> None: ...
33
- def setCoverageTimeStep(self, arg0: typing.SupportsFloat) -> None: ...
34
- def setDesorptionRates(
35
- self, arg0: collections.abc.Sequence[typing.SupportsFloat]
36
- ) -> None: ...
37
- def setDomain(self, *args, **kwargs): ...
38
- def setIntegrationScheme(
39
- self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
40
- ) -> None: ...
41
- def setNumCycles(self, arg0: typing.SupportsInt) -> None: ...
42
- def setNumberOfRaysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
43
- def setProcessModel(self, arg0: ProcessModel) -> None: ...
44
- def setPulseTime(self, arg0: typing.SupportsFloat) -> None: ...
45
- def setSourceDirection(self, arg0) -> None: ...
46
-
47
- class BoxDistribution(ProcessModel):
48
- @overload
49
- def __init__(
50
- self,
51
- halfAxes,
52
- gridDelta: typing.SupportsFloat,
53
- mask: viennals3d.viennals3d.Domain,
54
- ) -> None: ...
55
- @overload
56
- def __init__(self, halfAxes, gridDelta: typing.SupportsFloat) -> None: ...
57
-
58
- class CF4O2Etching(ProcessModel):
59
- @overload
60
- def __init__(self) -> None: ...
61
- @overload
62
- def __init__(
63
- self,
64
- ionFlux: typing.SupportsFloat,
65
- etchantFlux: typing.SupportsFloat,
66
- oxygenFlux: typing.SupportsFloat,
67
- polymerFlux: typing.SupportsFloat,
68
- meanIonEnergy: typing.SupportsFloat = ...,
69
- sigmaIonEnergy: typing.SupportsFloat = ...,
70
- ionExponent: typing.SupportsFloat = ...,
71
- oxySputterYield: typing.SupportsFloat = ...,
72
- polySputterYield: typing.SupportsFloat = ...,
73
- etchStopDepth: typing.SupportsFloat = ...,
74
- ) -> None: ...
75
- @overload
76
- def __init__(self, parameters: CF4O2Parameters) -> None: ...
77
- def getParameters(self) -> CF4O2Parameters: ...
78
- def setParameters(self, arg0: CF4O2Parameters) -> None: ...
79
-
80
- class CF4O2Parameters:
81
- Ions: CF4O2ParametersIons
82
- Mask: CF4O2ParametersMask
83
- Passivation: CF4O2ParametersPassivation
84
- Si: CF4O2ParametersSi
85
- SiGe: CF4O2ParametersSiGe
86
- etchStopDepth: float
87
- etchantFlux: float
88
- fluxIncludeSticking: bool
89
- gamma_C: dict[Material, float]
90
- gamma_C_oxidized: dict[Material, float]
91
- gamma_F: dict[Material, float]
92
- gamma_F_oxidized: dict[Material, float]
93
- gamma_O: dict[Material, float]
94
- gamma_O_passivated: dict[Material, float]
95
- ionFlux: float
96
- oxygenFlux: float
97
- polymerFlux: float
98
- def __init__(self) -> None: ...
99
-
100
- class CF4O2ParametersIons:
101
- exponent: float
102
- inflectAngle: float
103
- meanEnergy: float
104
- minAngle: float
105
- n_l: float
106
- sigmaEnergy: float
107
- def __init__(self) -> None: ...
108
-
109
- class CF4O2ParametersMask:
110
- A_sp: float
111
- Eth_sp: float
112
- rho: float
113
- def __init__(self) -> None: ...
114
-
115
- class CF4O2ParametersPassivation:
116
- A_C_ie: float
117
- A_O_ie: float
118
- Eth_C_ie: float
119
- Eth_O_ie: float
120
- def __init__(self) -> None: ...
121
-
122
- class CF4O2ParametersSi:
123
- A_ie: float
124
- A_sp: float
125
- Eth_ie: float
126
- Eth_sp: float
127
- beta_sigma: float
128
- k_sigma: float
129
- rho: float
130
- def __init__(self) -> None: ...
131
-
132
- class CF4O2ParametersSiGe:
133
- A_ie: float
134
- A_sp: float
135
- Eth_ie: float
136
- Eth_sp: float
137
- beta_sigma: float
138
- k_sigma: float
139
- rho: float
140
- x: float
141
- def __init__(self) -> None: ...
142
- def k_sigma_SiGe(self, arg0: typing.SupportsFloat) -> float: ...
143
-
144
- class CSVFileProcess(ProcessModel):
145
- def __init__(
146
- self,
147
- ratesFile: str,
148
- direction,
149
- offset,
150
- isotropicComponent: typing.SupportsFloat = ...,
151
- directionalComponent: typing.SupportsFloat = ...,
152
- maskMaterials: collections.abc.Sequence[Material] = ...,
153
- calculateVisibility: bool = ...,
154
- ) -> None: ...
155
- def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
156
- def setIDWNeighbors(self, k: typing.SupportsInt = ...) -> None: ...
157
- @overload
158
- def setInterpolationMode(self, mode: Interpolation) -> None: ...
159
- @overload
160
- def setInterpolationMode(self, mode: str) -> None: ...
161
- def setOffset(self, offset) -> None: ...
162
-
163
- class DenseCellSet:
164
- def __init__(self) -> None: ...
165
- @overload
166
- def addFillingFraction(
167
- self, arg0: typing.SupportsInt, arg1: typing.SupportsFloat
168
- ) -> bool: ...
169
- @overload
170
- def addFillingFraction(self, arg0, arg1: typing.SupportsFloat) -> bool: ...
171
- def addFillingFractionInMaterial(
172
- self, arg0, arg1: typing.SupportsFloat, arg2: typing.SupportsInt
173
- ) -> bool: ...
174
- def addScalarData(self, arg0: str, arg1: typing.SupportsFloat) -> None: ...
175
- def buildNeighborhood(self, forceRebuild: bool = ...) -> None: ...
176
- def clear(self) -> None: ...
177
- def fromLevelSets(
178
- self,
179
- levelSets: collections.abc.Sequence[viennals3d.viennals3d.Domain],
180
- materialMap: viennals3d.viennals3d.MaterialMap = ...,
181
- depth: typing.SupportsFloat = ...,
182
- ) -> None: ...
183
- def getAverageFillingFraction(self, arg0, arg1: typing.SupportsFloat) -> float: ...
184
- def getBoundingBox(self, *args, **kwargs): ...
185
- def getCellCenter(self, *args, **kwargs): ...
186
- def getCellGrid(self) -> viennals3d.viennals3d.Mesh: ...
187
- def getDepth(self) -> float: ...
188
- def getElement(self, *args, **kwargs): ...
189
- def getElements(self, *args, **kwargs): ...
190
- def getFillingFraction(self, arg0) -> float: ...
191
- def getFillingFractions(self) -> list[float]: ...
192
- def getGridDelta(self) -> float: ...
193
- def getIndex(self, arg0) -> int: ...
194
- def getNeighbors(self, *args, **kwargs): ...
195
- def getNode(self, *args, **kwargs): ...
196
- def getNodes(self, *args, **kwargs): ...
197
- def getNumberOfCells(self) -> int: ...
198
- def getScalarData(self, arg0: str) -> list[float]: ...
199
- def getScalarDataLabels(self) -> list[str]: ...
200
- def getSurface(self) -> viennals3d.viennals3d.Domain: ...
201
- def readCellSetData(self, arg0: str) -> None: ...
202
- def setCellSetPosition(self, arg0: bool) -> None: ...
203
- def setCoverMaterial(self, arg0: typing.SupportsInt) -> None: ...
204
- @overload
205
- def setFillingFraction(
206
- self, arg0: typing.SupportsInt, arg1: typing.SupportsFloat
207
- ) -> bool: ...
208
- @overload
209
- def setFillingFraction(self, arg0, arg1: typing.SupportsFloat) -> bool: ...
210
- def setPeriodicBoundary(self, arg0) -> None: ...
211
- def updateMaterials(self) -> None: ...
212
- def updateSurface(self) -> None: ...
213
- def writeCellSetData(self, arg0: str) -> None: ...
214
- def writeVTU(self, arg0: str) -> None: ...
215
-
216
- class DirectionalProcess(ProcessModel):
217
- @overload
218
- def __init__(
219
- self,
220
- direction,
221
- directionalVelocity: typing.SupportsFloat,
222
- isotropicVelocity: typing.SupportsFloat = ...,
223
- maskMaterial: Material = ...,
224
- calculateVisibility: bool = ...,
225
- ) -> None: ...
226
- @overload
227
- def __init__(
228
- self,
229
- direction,
230
- directionalVelocity: typing.SupportsFloat,
231
- isotropicVelocity: typing.SupportsFloat,
232
- maskMaterial: collections.abc.Sequence[Material],
233
- calculateVisibility: bool = ...,
234
- ) -> None: ...
235
- @overload
236
- def __init__(self, rateSets: collections.abc.Sequence[RateSet]) -> None: ...
237
- @overload
238
- def __init__(self, rateSet: RateSet) -> None: ...
239
-
240
- class Domain:
241
- @overload
242
- def __init__(self) -> None: ...
243
- @overload
244
- def __init__(self, domain: Domain) -> None: ...
245
- @overload
246
- def __init__(
247
- self,
248
- gridDelta: typing.SupportsFloat,
249
- xExtent: typing.SupportsFloat,
250
- yExtent: typing.SupportsFloat,
251
- boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
252
- ) -> None: ...
253
- @overload
254
- def __init__(
255
- self, bounds, boundaryConditions, gridDelta: typing.SupportsFloat = ...
256
- ) -> None: ...
257
- @overload
258
- def addMetaData(self, arg0: str, arg1: typing.SupportsFloat) -> None: ...
259
- @overload
260
- def addMetaData(
261
- self, arg0: str, arg1: collections.abc.Sequence[typing.SupportsFloat]
262
- ) -> None: ...
263
- @overload
264
- def addMetaData(
265
- self,
266
- arg0: collections.abc.Mapping[
267
- str, collections.abc.Sequence[typing.SupportsFloat]
268
- ],
269
- ) -> None: ...
270
- def applyBooleanOperation(
271
- self, arg0: viennals3d.viennals3d.Domain, arg1
272
- ) -> None: ...
273
- def clear(self) -> None: ...
274
- def clearMetaData(self, clearDomainData: bool = ...) -> None: ...
275
- def deepCopy(self, arg0: Domain) -> None: ...
276
- @staticmethod
277
- def disableMetaData() -> None: ...
278
- def duplicateTopLevelSet(self, arg0: Material) -> None: ...
279
- @staticmethod
280
- def enableMetaData(level: MetaDataLevel = ...) -> None: ...
281
- def generateCellSet(
282
- self, arg0: typing.SupportsFloat, arg1: Material, arg2: bool
283
- ) -> None: ...
284
- def getBoundaryConditions(self, *args, **kwargs): ...
285
- def getBoundingBox(self, *args, **kwargs): ...
286
- def getCellSet(self) -> DenseCellSet: ...
287
- def getGrid(self) -> viennals3d.viennals3d.hrleGrid: ...
288
- def getGridDelta(self) -> float: ...
289
- def getLevelSets(self) -> list[viennals3d.viennals3d.Domain]: ...
290
- def getMaterialMap(self, *args, **kwargs): ...
291
- def getMetaData(self) -> dict[str, list[float]]: ...
292
- def getSetup(self, *args, **kwargs): ...
293
- def insertNextLevelSet(
294
- self, levelset: viennals3d.viennals3d.Domain, wrapLowerLevelSet: bool = ...
295
- ) -> None: ...
296
- def insertNextLevelSetAsMaterial(
297
- self,
298
- levelSet: viennals3d.viennals3d.Domain,
299
- material: Material,
300
- wrapLowerLevelSet: bool = ...,
301
- ) -> None: ...
302
- def print(self, hrleInfo: bool = ...) -> None: ...
303
- def removeLevelSet(self, arg0: typing.SupportsInt, arg1: bool) -> None: ...
304
- def removeMaterial(self, arg0: Material) -> None: ...
305
- def removeTopLevelSet(self) -> None: ...
306
- def saveHullMesh(
307
- self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
308
- ) -> None: ...
309
- def saveLevelSetMesh(
310
- self, filename: str, width: typing.SupportsInt = ...
311
- ) -> None: ...
312
- def saveLevelSets(self, filename: str) -> None: ...
313
- def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
314
- def saveVolumeMesh(
315
- self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
316
- ) -> None: ...
317
- def setMaterialMap(self, arg0) -> None: ...
318
- def setup(
319
- self,
320
- gridDelta: typing.SupportsFloat,
321
- xExtent: typing.SupportsFloat,
322
- yExtent: typing.SupportsFloat = ...,
323
- boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
324
- ) -> None: ...
325
-
326
- class DomainSetup:
327
- @overload
328
- def __init__(self) -> None: ...
329
- @overload
330
- def __init__(
331
- self,
332
- gridDelta: typing.SupportsFloat,
333
- xExtent: typing.SupportsFloat,
334
- yExtent: typing.SupportsFloat,
335
- boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
336
- ) -> None: ...
337
- def boundaryCons(self, *args, **kwargs): ...
338
- def bounds(self, *args, **kwargs): ...
339
- def check(self) -> None: ...
340
- def grid(self) -> viennals3d.viennals3d.hrleGrid: ...
341
- def gridDelta(self) -> float: ...
342
- def halveXAxis(self) -> None: ...
343
- def halveYAxis(self) -> None: ...
344
- def hasPeriodicBoundary(self) -> bool: ...
345
- def isValid(self) -> bool: ...
346
- def print(self) -> None: ...
347
- def xExtent(self) -> float: ...
348
- def yExtent(self) -> float: ...
349
-
350
- class FaradayCageEtching(ProcessModel):
351
- @overload
352
- def __init__(self) -> None: ...
353
- @overload
354
- def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
355
- @overload
356
- def __init__(
357
- self,
358
- maskMaterials: collections.abc.Sequence[Material],
359
- parameters: FaradayCageParameters,
360
- ) -> None: ...
361
- def getParameters(self) -> FaradayCageParameters: ...
362
- def setParameters(self, arg0: FaradayCageParameters) -> None: ...
363
-
364
- class FaradayCageParameters:
365
- cageAngle: float
366
- ibeParams: IBEParameters
367
- def __init__(self) -> None: ...
368
-
369
- class FluorocarbonEtching(ProcessModel):
370
- @overload
371
- def __init__(self) -> None: ...
372
- @overload
373
- def __init__(
374
- self,
375
- ionFlux: typing.SupportsFloat,
376
- etchantFlux: typing.SupportsFloat,
377
- polyFlux: typing.SupportsFloat,
378
- meanIonEnergy: typing.SupportsFloat = ...,
379
- sigmaIonEnergy: typing.SupportsFloat = ...,
380
- ionExponent: typing.SupportsFloat = ...,
381
- deltaP: typing.SupportsFloat = ...,
382
- etchStopDepth: typing.SupportsFloat = ...,
383
- ) -> None: ...
384
- @overload
385
- def __init__(self, parameters: FluorocarbonParameters) -> None: ...
386
- def getParameters(self) -> FluorocarbonParameters: ...
387
- def setParameters(self, arg0: FluorocarbonParameters) -> None: ...
388
-
389
- class FluorocarbonParameters:
390
- Ions: FluorocarbonParametersIons
391
- Mask: FluorocarbonParametersMask
392
- Polymer: FluorocarbonParametersPolymer
393
- Si: FluorocarbonParametersSi
394
- Si3N4: FluorocarbonParametersSi3N4
395
- SiO2: FluorocarbonParametersSiO2
396
- delta_p: float
397
- etchStopDepth: float
398
- etchantFlux: float
399
- ionFlux: float
400
- polyFlux: float
401
- def __init__(self) -> None: ...
402
-
403
- class FluorocarbonParametersIons:
404
- exponent: float
405
- inflectAngle: float
406
- meanEnergy: float
407
- minAngle: float
408
- n_l: float
409
- sigmaEnergy: float
410
- def __init__(self) -> None: ...
411
-
412
- class FluorocarbonParametersMask:
413
- A_sp: float
414
- B_sp: float
415
- Eth_sp: float
416
- beta_e: float
417
- beta_p: float
418
- rho: float
419
- def __init__(self) -> None: ...
420
-
421
- class FluorocarbonParametersPolymer:
422
- A_ie: float
423
- Eth_ie: float
424
- rho: float
425
- def __init__(self) -> None: ...
426
-
427
- class FluorocarbonParametersSi:
428
- A_ie: float
429
- A_sp: float
430
- B_sp: float
431
- E_a: float
432
- Eth_ie: float
433
- Eth_sp: float
434
- K: float
435
- rho: float
436
- def __init__(self) -> None: ...
437
-
438
- class FluorocarbonParametersSi3N4:
439
- A_ie: float
440
- A_sp: float
441
- B_sp: float
442
- E_a: float
443
- Eth_ie: float
444
- Eth_sp: float
445
- K: float
446
- rho: float
447
- def __init__(self) -> None: ...
448
-
449
- class FluorocarbonParametersSiO2:
450
- A_ie: float
451
- A_sp: float
452
- B_sp: float
453
- E_a: float
454
- Eth_ie: float
455
- Eth_sp: float
456
- K: float
457
- rho: float
458
- def __init__(self) -> None: ...
459
-
460
- class GDSGeometry:
461
- @overload
462
- def __init__(self) -> None: ...
463
- @overload
464
- def __init__(self, gridDelta: typing.SupportsFloat) -> None: ...
465
- @overload
466
- def __init__(self, gridDelta: typing.SupportsFloat, boundaryConditions) -> None: ...
467
- def addBlur(
468
- self,
469
- sigmas: collections.abc.Sequence[typing.SupportsFloat],
470
- weights: collections.abc.Sequence[typing.SupportsFloat],
471
- threshold: typing.SupportsFloat = ...,
472
- delta: typing.SupportsFloat = ...,
473
- gridRefinement: typing.SupportsInt = ...,
474
- ) -> None: ...
475
- def getAllLayers(self) -> set[int]: ...
476
- def getBounds(self, *args, **kwargs): ...
477
- def getNumberOfStructures(self) -> int: ...
478
- def layerToLevelSet(
479
- self,
480
- layer: typing.SupportsInt,
481
- baseHeight: typing.SupportsFloat = ...,
482
- height: typing.SupportsFloat = ...,
483
- mask: bool = ...,
484
- blurLayer: bool = ...,
485
- ) -> viennals3d.viennals3d.Domain: ...
486
- def print(self) -> None: ...
487
- def setBoundaryConditions(
488
- self,
489
- arg0: collections.abc.Sequence[viennals3d.viennals3d.BoundaryConditionEnum],
490
- ) -> None: ...
491
- def setBoundaryPadding(
492
- self, arg0: typing.SupportsFloat, arg1: typing.SupportsFloat
493
- ) -> None: ...
494
- def setGridDelta(self, arg0: typing.SupportsFloat) -> None: ...
495
-
496
- class GDSReader:
497
- def __init__(self) -> None: ...
498
- def apply(self) -> None: ...
499
- def setFileName(self, arg0: str) -> None: ...
500
- def setGeometry(self, *args, **kwargs): ...
501
-
502
- class GeometryFactory:
503
- def __init__(self, *args, **kwargs) -> None: ...
504
- def makeBoxStencil(
505
- self,
506
- position,
507
- width: typing.SupportsFloat,
508
- height: typing.SupportsFloat,
509
- angle: typing.SupportsFloat = ...,
510
- length: typing.SupportsFloat = ...,
511
- ) -> viennals3d.viennals3d.Domain: ...
512
- def makeCylinderStencil(
513
- self,
514
- position,
515
- radius: typing.SupportsFloat,
516
- height: typing.SupportsFloat,
517
- angle: typing.SupportsFloat = ...,
518
- ) -> viennals3d.viennals3d.Domain: ...
519
- def makeMask(
520
- self, base: typing.SupportsFloat, height: typing.SupportsFloat
521
- ) -> viennals3d.viennals3d.Domain: ...
522
- def makeSubstrate(
523
- self, base: typing.SupportsFloat
524
- ) -> viennals3d.viennals3d.Domain: ...
525
-
526
- class HBrO2Etching(ProcessModel):
527
- @overload
528
- def __init__(self) -> None: ...
529
- @overload
530
- def __init__(
531
- self,
532
- ionFlux: typing.SupportsFloat,
533
- etchantFlux: typing.SupportsFloat,
534
- oxygenFlux: typing.SupportsFloat,
535
- meanIonEnergy: typing.SupportsFloat = ...,
536
- sigmaIonEnergy: typing.SupportsFloat = ...,
537
- ionExponent: typing.SupportsFloat = ...,
538
- oxySputterYield: typing.SupportsFloat = ...,
539
- etchStopDepth: typing.SupportsFloat = ...,
540
- ) -> None: ...
541
- @overload
542
- def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
543
- @staticmethod
544
- def defaultParameters() -> PlasmaEtchingParameters: ...
545
- def getParameters(self) -> PlasmaEtchingParameters: ...
546
- def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
547
-
548
- class HoleShape:
549
- __members__: ClassVar[dict] = ... # read-only
550
- FULL: ClassVar[HoleShape] = ...
551
- HALF: ClassVar[HoleShape] = ...
552
- QUARTER: ClassVar[HoleShape] = ...
553
- __entries: ClassVar[dict] = ...
554
- def __init__(self, value: typing.SupportsInt) -> None: ...
555
- def __eq__(self, other: object) -> bool: ...
556
- def __hash__(self) -> int: ...
557
- def __index__(self) -> int: ...
558
- def __int__(self) -> int: ...
559
- def __ne__(self, other: object) -> bool: ...
560
- @property
561
- def name(self) -> str: ...
562
- @property
563
- def value(self) -> int: ...
564
-
565
- class IBEParameters:
566
- exponent: float
567
- inflectAngle: float
568
- materialPlaneWaferRate: dict[Material, float]
569
- meanEnergy: float
570
- minAngle: float
571
- n_l: float
572
- planeWaferRate: float
573
- redepositionRate: float
574
- redepositionThreshold: float
575
- sigmaEnergy: float
576
- thresholdEnergy: float
577
- tiltAngle: float
578
- yieldFunction: collections.abc.Callable[[typing.SupportsFloat], float]
579
- def __init__(self) -> None: ...
580
-
581
- class Interpolation:
582
- __members__: ClassVar[dict] = ... # read-only
583
- CUSTOM: ClassVar[Interpolation] = ...
584
- IDW: ClassVar[Interpolation] = ...
585
- LINEAR: ClassVar[Interpolation] = ...
586
- __entries: ClassVar[dict] = ...
587
- def __init__(self, value: typing.SupportsInt) -> None: ...
588
- def __eq__(self, other: object) -> bool: ...
589
- def __hash__(self) -> int: ...
590
- def __index__(self) -> int: ...
591
- def __int__(self) -> int: ...
592
- def __ne__(self, other: object) -> bool: ...
593
- @property
594
- def name(self) -> str: ...
595
- @property
596
- def value(self) -> int: ...
597
-
598
- class IonBeamEtching(ProcessModel):
599
- @overload
600
- def __init__(self) -> None: ...
601
- @overload
602
- def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
603
- @overload
604
- def __init__(
605
- self,
606
- maskMaterials: collections.abc.Sequence[Material],
607
- parameters: IBEParameters,
608
- ) -> None: ...
609
- def getParameters(self) -> IBEParameters: ...
610
- def setParameters(self, arg0: IBEParameters) -> None: ...
611
-
612
- class IsotropicProcess(ProcessModel):
613
- @overload
614
- def __init__(
615
- self, rate: typing.SupportsFloat = ..., maskMaterial: Material = ...
616
- ) -> None: ...
617
- @overload
618
- def __init__(
619
- self,
620
- rate: typing.SupportsFloat,
621
- maskMaterial: collections.abc.Sequence[Material],
622
- ) -> None: ...
623
- @overload
624
- def __init__(
625
- self,
626
- materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
627
- defaultRate: typing.SupportsFloat = ...,
628
- ) -> None: ...
629
-
630
- class Length:
631
- def __init__(self, *args, **kwargs) -> None: ...
632
- def convertAngstrom(self) -> float: ...
633
- def convertCentimeter(self) -> float: ...
634
- def convertMeter(self) -> float: ...
635
- def convertMicrometer(self) -> float: ...
636
- def convertMillimeter(self) -> float: ...
637
- def convertNanometer(self) -> float: ...
638
- @staticmethod
639
- def getInstance() -> Length: ...
640
- @staticmethod
641
- def setUnit(arg0: str) -> None: ...
642
- def toShortString(self) -> str: ...
643
- def toString(self) -> str: ...
644
-
645
- class LogLevel:
646
- __members__: ClassVar[dict] = ... # read-only
647
- DEBUG: ClassVar[LogLevel] = ...
648
- ERROR: ClassVar[LogLevel] = ...
649
- INFO: ClassVar[LogLevel] = ...
650
- INTERMEDIATE: ClassVar[LogLevel] = ...
651
- TIMING: ClassVar[LogLevel] = ...
652
- WARNING: ClassVar[LogLevel] = ...
653
- __entries: ClassVar[dict] = ...
654
- def __init__(self, value: typing.SupportsInt) -> None: ...
655
- def __eq__(self, other: object) -> bool: ...
656
- def __hash__(self) -> int: ...
657
- def __index__(self) -> int: ...
658
- def __int__(self) -> int: ...
659
- def __ne__(self, other: object) -> bool: ...
660
- @property
661
- def name(self) -> str: ...
662
- @property
663
- def value(self) -> int: ...
664
-
665
- class Logger:
666
- def __init__(self, *args, **kwargs) -> None: ...
667
- def addDebug(self, arg0: str) -> Logger: ...
668
- def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
669
- def addInfo(self, arg0: str) -> Logger: ...
670
- @overload
671
- def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
672
- @overload
673
- def addTiming(
674
- self, arg0: str, arg1: typing.SupportsFloat, arg2: typing.SupportsFloat
675
- ) -> Logger: ...
676
- def addWarning(self, arg0: str) -> Logger: ...
677
- @staticmethod
678
- def appendToLogFile(arg0: str) -> bool: ...
679
- @staticmethod
680
- def closeLogFile() -> None: ...
681
- @staticmethod
682
- def getInstance() -> Logger: ...
683
- @staticmethod
684
- def getLogLevel() -> int: ...
685
- def print(self) -> None: ...
686
- @staticmethod
687
- def setLogFile(arg0: str) -> bool: ...
688
- @staticmethod
689
- def setLogLevel(arg0: LogLevel) -> None: ...
690
-
691
- class MakeFin:
692
- @overload
693
- def __init__(
694
- self,
695
- domain: Domain,
696
- finWidth: float,
697
- finHeight: float,
698
- finTaperAngle: float = 0.0,
699
- maskHeight: float = 0.0,
700
- maskTaperAngle: float = 0.0,
701
- halfFin: bool = False,
702
- material: Material = Material.Si,
703
- maskMaterial: Material = Material.Mask,
704
- ) -> None: ...
705
- @overload
706
- def __init__(
707
- self,
708
- domain: Domain,
709
- gridDelta: float,
710
- xExtent: float,
711
- yExtent: float,
712
- finWidth: float,
713
- finHeight: float,
714
- taperAngle: float = 0.0,
715
- baseHeight: float = 0.0,
716
- periodicBoundary: bool = False,
717
- makeMask: bool = False,
718
- material: Material = Material.Si,
719
- ) -> None: ...
720
- def apply(self) -> None: ...
721
-
722
- class MakeHole:
723
- @overload
724
- def __init__(
725
- self,
726
- domain: Domain,
727
- holeRadius: float,
728
- holeDepth: float,
729
- holeTaperAngle: float = 0.0,
730
- maskHeight: float = 0.0,
731
- maskTaperAngle: float = 0.0,
732
- holeShape: HoleShape = HoleShape.Full,
733
- material: Material = Material.Si,
734
- maskMaterial: Material = Material.Mask,
735
- ) -> None: ...
736
- @overload
737
- def __init__(
738
- self,
739
- domain: Domain,
740
- gridDelta: float,
741
- xExtent: float,
742
- yExtent: float,
743
- holeRadius: float,
744
- holeDepth: float,
745
- taperingAngle: float = 0.0,
746
- baseHeight: float = 0.0,
747
- periodicBoundary: bool = False,
748
- makeMask: bool = False,
749
- material: Material = Material.Si,
750
- holeShape: HoleShape = HoleShape.Full,
751
- ) -> None: ...
752
- def apply(self) -> None: ...
753
-
754
- class MakePlane:
755
- @overload
756
- def __init__(
757
- self,
758
- domain: Domain,
759
- gridDelta: float,
760
- xExtent: float,
761
- yExtent: float,
762
- height: float = 0.0,
763
- periodicBoundary: bool = False,
764
- material: Material = Material.Si,
765
- ) -> None: ...
766
- @overload
767
- def __init__(
768
- self,
769
- domain: Domain,
770
- height: float = 0.0,
771
- material: Material = Material.Si,
772
- addToExisting: bool = False,
773
- ) -> None: ...
774
- def apply(self) -> None: ...
775
-
776
- class MakeStack:
777
- @overload
778
- def __init__(
779
- self,
780
- domain: Domain,
781
- numLayers: int,
782
- layerHeight: float,
783
- substrateHeight: float = 0,
784
- holeRadius: float = 0,
785
- trenchWidth: float = 0,
786
- maskHeight: float = 0,
787
- taperAngle: float = 0,
788
- halfStack: bool = False,
789
- maskMaterial: Material = Material.Mask,
790
- ) -> None: ...
791
- @overload
792
- def __init__(
793
- self,
794
- domain: Domain,
795
- gridDelta: float,
796
- xExtent: float,
797
- yExtent: float,
798
- numLayers: int,
799
- layerHeight: float,
800
- substrateHeight: float,
801
- holeRadius: float,
802
- trenchWidth: float,
803
- maskHeight: float,
804
- periodicBoundary: bool = False,
805
- ) -> None: ...
806
- def apply(self) -> None: ...
807
- def getHeight(self) -> float: ...
808
- def getTopLayer(self) -> int: ...
809
-
810
- class MakeTrench:
811
- @overload
812
- def __init__(
813
- self,
814
- domain: Domain,
815
- trenchWidth: float,
816
- trenchDepth: float,
817
- trenchTaperAngle: float = 0.0,
818
- maskHeight: float = 0.0,
819
- maskTaperAngle: float = 0.0,
820
- halfTrench: bool = False,
821
- material: Material = Material.Si,
822
- maskMaterial: Material = Material.Mask,
823
- ) -> None: ...
824
- @overload
825
- def __init__(
826
- self,
827
- domain: Domain,
828
- gridDelta: float,
829
- xExtent: float,
830
- yExtent: float,
831
- trenchWidth: float,
832
- trenchDepth: float,
833
- taperingAngle: float = 0.0,
834
- baseHeight: float = 0.0,
835
- periodicBoundary: bool = False,
836
- makeMask: bool = False,
837
- material: Material = Material.Si,
838
- ) -> None: ...
839
- def apply(self) -> None: ...
840
-
841
- class Material:
842
- __members__: ClassVar[dict] = ... # read-only
843
- Air: ClassVar[Material] = ...
844
- Al2O3: ClassVar[Material] = ...
845
- Cu: ClassVar[Material] = ...
846
- Dielectric: ClassVar[Material] = ...
847
- GAS: ClassVar[Material] = ...
848
- GaN: ClassVar[Material] = ...
849
- HfO2: ClassVar[Material] = ...
850
- Mask: ClassVar[Material] = ...
851
- Metal: ClassVar[Material] = ...
852
- PolySi: ClassVar[Material] = ...
853
- Polymer: ClassVar[Material] = ...
854
- Si: ClassVar[Material] = ...
855
- Si3N4: ClassVar[Material] = ...
856
- SiC: ClassVar[Material] = ...
857
- SiGe: ClassVar[Material] = ...
858
- SiN: ClassVar[Material] = ...
859
- SiO2: ClassVar[Material] = ...
860
- SiON: ClassVar[Material] = ...
861
- TiN: ClassVar[Material] = ...
862
- Undefined: ClassVar[Material] = ...
863
- W: ClassVar[Material] = ...
864
- __entries: ClassVar[dict] = ...
865
- def __init__(self, value: typing.SupportsInt) -> None: ...
866
- def __eq__(self, other: object) -> bool: ...
867
- def __hash__(self) -> int: ...
868
- def __index__(self) -> int: ...
869
- def __int__(self) -> int: ...
870
- def __ne__(self, other: object) -> bool: ...
871
- @property
872
- def name(self) -> str: ...
873
- @property
874
- def value(self) -> int: ...
875
-
876
- class MaterialMap:
877
- def __init__(self) -> None: ...
878
- def getMaterialAtIdx(self, arg0: typing.SupportsInt) -> Material: ...
879
- def getMaterialMap(self) -> viennals3d.viennals3d.MaterialMap: ...
880
- @staticmethod
881
- def getMaterialName(arg0: Material) -> str: ...
882
- def insertNextMaterial(self, material: Material = ...) -> None: ...
883
- @staticmethod
884
- def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
885
- @staticmethod
886
- def mapToMaterial(arg0: typing.SupportsFloat) -> Material: ...
887
- def size(self) -> int: ...
888
-
889
- class MetaDataLevel:
890
- __members__: ClassVar[dict] = ... # read-only
891
- FULL: ClassVar[MetaDataLevel] = ...
892
- GRID: ClassVar[MetaDataLevel] = ...
893
- NONE: ClassVar[MetaDataLevel] = ...
894
- PROCESS: ClassVar[MetaDataLevel] = ...
895
- __entries: ClassVar[dict] = ...
896
- def __init__(self, value: typing.SupportsInt) -> None: ...
897
- def __eq__(self, other: object) -> bool: ...
898
- def __hash__(self) -> int: ...
899
- def __index__(self) -> int: ...
900
- def __int__(self) -> int: ...
901
- def __ne__(self, other: object) -> bool: ...
902
- @property
903
- def name(self) -> str: ...
904
- @property
905
- def value(self) -> int: ...
906
-
907
- class MultiParticleProcess(ProcessModel):
908
- def __init__(self) -> None: ...
909
- def addIonParticle(
910
- self,
911
- sourcePower: typing.SupportsFloat,
912
- thetaRMin: typing.SupportsFloat = ...,
913
- thetaRMax: typing.SupportsFloat = ...,
914
- minAngle: typing.SupportsFloat = ...,
915
- B_sp: typing.SupportsFloat = ...,
916
- meanEnergy: typing.SupportsFloat = ...,
917
- sigmaEnergy: typing.SupportsFloat = ...,
918
- thresholdEnergy: typing.SupportsFloat = ...,
919
- inflectAngle: typing.SupportsFloat = ...,
920
- n: typing.SupportsFloat = ...,
921
- label: str = ...,
922
- ) -> None: ...
923
- @overload
924
- def addNeutralParticle(
925
- self, stickingProbability: typing.SupportsFloat, label: str = ...
926
- ) -> None: ...
927
- @overload
928
- def addNeutralParticle(
929
- self,
930
- materialSticking: collections.abc.Mapping[Material, typing.SupportsFloat],
931
- defaultStickingProbability: typing.SupportsFloat = ...,
932
- label: str = ...,
933
- ) -> None: ...
934
- def setRateFunction(
935
- self,
936
- arg0: collections.abc.Callable[
937
- [collections.abc.Sequence[typing.SupportsFloat], Material], float
938
- ],
939
- ) -> None: ...
940
-
941
- class NormalizationType:
942
- __members__: ClassVar[dict] = ... # read-only
943
- MAX: ClassVar[NormalizationType] = ...
944
- SOURCE: ClassVar[NormalizationType] = ...
945
- __entries: ClassVar[dict] = ...
946
- def __init__(self, value: typing.SupportsInt) -> None: ...
947
- def __eq__(self, other: object) -> bool: ...
948
- def __hash__(self) -> int: ...
949
- def __index__(self) -> int: ...
950
- def __int__(self) -> int: ...
951
- def __ne__(self, other: object) -> bool: ...
952
- @property
953
- def name(self) -> str: ...
954
- @property
955
- def value(self) -> int: ...
956
-
957
- class OxideRegrowth(ProcessModel):
958
- def __init__(
959
- self,
960
- nitrideEtchRate: typing.SupportsFloat,
961
- oxideEtchRate: typing.SupportsFloat,
962
- redepositionRate: typing.SupportsFloat,
963
- redepositionThreshold: typing.SupportsFloat,
964
- redepositionTimeInt: typing.SupportsFloat,
965
- diffusionCoefficient: typing.SupportsFloat,
966
- sinkStrength: typing.SupportsFloat,
967
- scallopVelocity: typing.SupportsFloat,
968
- centerVelocity: typing.SupportsFloat,
969
- topHeight: typing.SupportsFloat,
970
- centerWidth: typing.SupportsFloat,
971
- stabilityFactor: typing.SupportsFloat,
972
- ) -> None: ...
973
-
974
- class Particle:
975
- def __init__(self, *args, **kwargs) -> None: ...
976
- def getLocalDataLabels(self) -> list[str]: ...
977
- def getSourceDistributionPower(self) -> float: ...
978
- def initNew(self, arg0) -> None: ...
979
- def surfaceCollision(
980
- self,
981
- arg0: typing.SupportsFloat,
982
- arg1,
983
- arg2,
984
- arg3: typing.SupportsInt,
985
- arg4: typing.SupportsInt,
986
- arg5,
987
- arg6,
988
- arg7,
989
- ) -> None: ...
990
- def surfaceReflection(self, *args, **kwargs): ...
991
-
992
- class Planarize:
993
- @overload
994
- def __init__(self) -> None: ...
995
- @overload
996
- def __init__(
997
- self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
998
- ) -> None: ...
999
- def apply(self) -> None: ...
1000
- def setCutoffPosition(self, arg0: typing.SupportsFloat) -> None: ...
1001
- def setDomain(self, arg0: Domain) -> None: ...
1002
-
1003
- class PlasmaEtchingParameters:
1004
- Ions: PlasmaEtchingParametersIons
1005
- Mask: PlasmaEtchingParametersMask
1006
- Passivation: PlasmaEtchingParametersPassivation
1007
- Substrate: PlasmaEtchingParametersSubstrate
1008
- beta_E: dict[int, float]
1009
- beta_P: dict[int, float]
1010
- etchStopDepth: float
1011
- etchantFlux: float
1012
- ionFlux: float
1013
- passivationFlux: float
1014
- def __init__(self) -> None: ...
1015
-
1016
- class PlasmaEtchingParametersIons:
1017
- exponent: float
1018
- inflectAngle: float
1019
- meanEnergy: float
1020
- minAngle: float
1021
- n_l: float
1022
- sigmaEnergy: float
1023
- thetaRMax: float
1024
- thetaRMin: float
1025
- def __init__(self) -> None: ...
1026
-
1027
- class PlasmaEtchingParametersMask:
1028
- A_sp: float
1029
- B_sp: float
1030
- Eth_sp: float
1031
- rho: float
1032
- def __init__(self) -> None: ...
1033
-
1034
- class PlasmaEtchingParametersPassivation:
1035
- A_ie: float
1036
- Eth_ie: float
1037
- def __init__(self) -> None: ...
1038
-
1039
- class PlasmaEtchingParametersPolymer:
1040
- A_sp: float
1041
- B_sp: float
1042
- Eth_sp: float
1043
- rho: float
1044
- def __init__(self) -> None: ...
1045
-
1046
- class PlasmaEtchingParametersSubstrate:
1047
- A_ie: float
1048
- A_sp: float
1049
- B_ie: float
1050
- B_sp: float
1051
- Eth_ie: float
1052
- Eth_sp: float
1053
- beta_sigma: float
1054
- k_sigma: float
1055
- rho: float
1056
- def __init__(self) -> None: ...
1057
-
1058
- class Process:
1059
- def __init__(self) -> None: ...
1060
- def apply(self) -> None: ...
1061
- def calculateFlux(self) -> viennals3d.viennals3d.Mesh: ...
1062
- def disableAdvectionVelocityOutput(self) -> None: ...
1063
- def disableFluxSmoothing(self) -> None: ...
1064
- def disableRandomSeeds(self) -> None: ...
1065
- def enableAdvectionVelocityOutput(self) -> None: ...
1066
- def enableFluxSmoothing(self) -> None: ...
1067
- def enableRandomSeeds(self) -> None: ...
1068
- def getAdvectionParameters(self) -> AdvectionParameters: ...
1069
- def getProcessDuration(self) -> float: ...
1070
- def getRayTracingParameters(self) -> RayTracingParameters: ...
1071
- def setAdvectionParameters(self, arg0: AdvectionParameters) -> None: ...
1072
- def setCoverageDeltaThreshold(self, arg0: typing.SupportsFloat) -> None: ...
1073
- def setDomain(self, *args, **kwargs): ...
1074
- def setIntegrationScheme(
1075
- self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
1076
- ) -> None: ...
1077
- def setMaxCoverageInitIterations(self, arg0: typing.SupportsInt) -> None: ...
1078
- def setNumberOfRaysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
1079
- def setProcessDuration(self, arg0: typing.SupportsFloat) -> None: ...
1080
- def setProcessModel(self, arg0: ProcessModel) -> None: ...
1081
- def setRayTracingDiskRadius(self, arg0: typing.SupportsFloat) -> None: ...
1082
- def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
1083
- def setSourceDirection(self, arg0) -> None: ...
1084
- def setTimeStepRatio(self, arg0: typing.SupportsFloat) -> None: ...
1085
-
1086
- class ProcessModel:
1087
- def __init__(self) -> None: ...
1088
- def getAdvectionCallback(self, *args, **kwargs): ...
1089
- def getGeometricModel(self, *args, **kwargs): ...
1090
- def getParticleLogSize(self, arg0: typing.SupportsInt) -> int: ...
1091
- def getParticleTypes(self, *args, **kwargs): ...
1092
- def getPrimaryDirection(self, *args, **kwargs): ...
1093
- def getProcessName(self) -> str | None: ...
1094
- def getSurfaceModel(self, *args, **kwargs): ...
1095
- def getVelocityField(self, *args, **kwargs): ...
1096
- def insertNextParticleType(self, arg0) -> None: ...
1097
- def setAdvectionCallback(self, *args, **kwargs): ...
1098
- def setGeometricModel(self, *args, **kwargs): ...
1099
- def setPrimaryDirection(self, arg0) -> None: ...
1100
- def setProcessName(self, arg0: str) -> None: ...
1101
- def setSurfaceModel(self, arg0) -> None: ...
1102
- def setVelocityField(self, *args, **kwargs): ...
1103
-
1104
- class ProcessParams:
1105
- def __init__(self) -> None: ...
1106
- @overload
1107
- def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1108
- @overload
1109
- def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1110
- @overload
1111
- def getScalarData(self, arg0: str) -> float: ...
1112
- @overload
1113
- def getScalarData(self) -> list[float]: ...
1114
- @overload
1115
- def getScalarData(self) -> list[float]: ...
1116
- def getScalarDataIndex(self, arg0: str) -> int: ...
1117
- def getScalarDataLabel(self, arg0: typing.SupportsInt) -> str: ...
1118
- def insertNextScalar(self, arg0: typing.SupportsFloat, arg1: str) -> None: ...
1119
-
1120
- class RateGrid:
1121
- def __init__(self) -> None: ...
1122
- def interpolate(self, coord) -> float: ...
1123
- def loadFromCSV(self, filename: str) -> bool: ...
1124
- def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
1125
- def setIDWNeighbors(self, k: typing.SupportsInt) -> None: ...
1126
- @overload
1127
- def setInterpolationMode(self, mode: Interpolation) -> None: ...
1128
- @overload
1129
- def setInterpolationMode(self, mode: str) -> None: ...
1130
- def setOffset(self, offset) -> None: ...
1131
-
1132
- class RateSet:
1133
- calculateVisibility: bool
1134
- direction: Incomplete
1135
- directionalVelocity: float
1136
- isotropicVelocity: float
1137
- maskMaterials: list[Material]
1138
- def __init__(
1139
- self,
1140
- direction=...,
1141
- directionalVelocity: typing.SupportsFloat = ...,
1142
- isotropicVelocity: typing.SupportsFloat = ...,
1143
- maskMaterials: collections.abc.Sequence[Material] = ...,
1144
- calculateVisibility: bool = ...,
1145
- ) -> None: ...
1146
- def print(self) -> None: ...
1147
-
1148
- class RayTracingParameters:
1149
- diskRadius: float
1150
- ignoreFluxBoundaries: bool
1151
- normalizationType: NormalizationType
1152
- raysPerPoint: int
1153
- smoothingNeighbors: int
1154
- sourceDirection: Incomplete
1155
- useRandomSeeds: bool
1156
- def __init__(self) -> None: ...
1157
- def toMetaData(self) -> dict[str, list[float]]: ...
1158
- def toMetaDataString(self) -> str: ...
1159
-
1160
- class Reader:
1161
- @overload
1162
- def __init__(self) -> None: ...
1163
- @overload
1164
- def __init__(self, fileName: str) -> None: ...
1165
- def apply(self) -> None: ...
1166
- def setFileName(self, arg0: str) -> None: ...
1167
-
1168
- class SF6C4F8Etching(ProcessModel):
1169
- @overload
1170
- def __init__(self) -> None: ...
1171
- @overload
1172
- def __init__(
1173
- self,
1174
- ionFlux: typing.SupportsFloat,
1175
- etchantFlux: typing.SupportsFloat,
1176
- meanEnergy: typing.SupportsFloat,
1177
- sigmaEnergy: typing.SupportsFloat,
1178
- ionExponent: typing.SupportsFloat = ...,
1179
- etchStopDepth: typing.SupportsFloat = ...,
1180
- ) -> None: ...
1181
- @overload
1182
- def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
1183
- @staticmethod
1184
- def defaultParameters() -> PlasmaEtchingParameters: ...
1185
- def getParameters(self) -> PlasmaEtchingParameters: ...
1186
- def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
1187
-
1188
- class SF6O2Etching(ProcessModel):
1189
- @overload
1190
- def __init__(self) -> None: ...
1191
- @overload
1192
- def __init__(
1193
- self,
1194
- ionFlux: typing.SupportsFloat,
1195
- etchantFlux: typing.SupportsFloat,
1196
- oxygenFlux: typing.SupportsFloat,
1197
- meanIonEnergy: typing.SupportsFloat = ...,
1198
- sigmaIonEnergy: typing.SupportsFloat = ...,
1199
- ionExponent: typing.SupportsFloat = ...,
1200
- oxySputterYield: typing.SupportsFloat = ...,
1201
- etchStopDepth: typing.SupportsFloat = ...,
1202
- ) -> None: ...
1203
- @overload
1204
- def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
1205
- @staticmethod
1206
- def defaultParameters() -> PlasmaEtchingParameters: ...
1207
- def getParameters(self) -> PlasmaEtchingParameters: ...
1208
- def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
1209
-
1210
- class SelectiveEpitaxy(ProcessModel):
1211
- def __init__(
1212
- self,
1213
- materialRates: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
1214
- rate111: typing.SupportsFloat = ...,
1215
- rate100: typing.SupportsFloat = ...,
1216
- ) -> None: ...
1217
-
1218
- class SingleParticleALD(ProcessModel):
1219
- def __init__(
1220
- self,
1221
- stickingProbability: typing.SupportsFloat,
1222
- numCycles: typing.SupportsFloat,
1223
- growthPerCycle: typing.SupportsFloat,
1224
- totalCycles: typing.SupportsFloat,
1225
- coverageTimeStep: typing.SupportsFloat,
1226
- evFlux: typing.SupportsFloat,
1227
- inFlux: typing.SupportsFloat,
1228
- s0: typing.SupportsFloat,
1229
- gasMFP: typing.SupportsFloat,
1230
- ) -> None: ...
1231
-
1232
- class SingleParticleProcess(ProcessModel):
1233
- @overload
1234
- def __init__(
1235
- self,
1236
- rate: typing.SupportsFloat = ...,
1237
- stickingProbability: typing.SupportsFloat = ...,
1238
- sourceExponent: typing.SupportsFloat = ...,
1239
- maskMaterial: Material = ...,
1240
- ) -> None: ...
1241
- @overload
1242
- def __init__(
1243
- self,
1244
- rate: typing.SupportsFloat,
1245
- stickingProbability: typing.SupportsFloat,
1246
- sourceExponent: typing.SupportsFloat,
1247
- maskMaterials: collections.abc.Sequence[Material],
1248
- ) -> None: ...
1249
- @overload
1250
- def __init__(
1251
- self,
1252
- materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
1253
- stickingProbability: typing.SupportsFloat,
1254
- sourceExponent: typing.SupportsFloat,
1255
- ) -> None: ...
1256
-
1257
- class SphereDistribution(ProcessModel):
1258
- @overload
1259
- def __init__(
1260
- self,
1261
- radius: typing.SupportsFloat,
1262
- gridDelta: typing.SupportsFloat,
1263
- mask: viennals3d.viennals3d.Domain,
1264
- ) -> None: ...
1265
- @overload
1266
- def __init__(
1267
- self, radius: typing.SupportsFloat, gridDelta: typing.SupportsFloat
1268
- ) -> None: ...
1269
-
1270
- class StencilLocalLaxFriedrichsScalar:
1271
- def __init__(self, *args, **kwargs) -> None: ...
1272
- @staticmethod
1273
- def setMaxDissipation(maxDissipation: typing.SupportsFloat) -> None: ...
1274
-
1275
- class TEOSDeposition(ProcessModel):
1276
- def __init__(
1277
- self,
1278
- stickingProbabilityP1: typing.SupportsFloat,
1279
- rateP1: typing.SupportsFloat,
1280
- orderP1: typing.SupportsFloat,
1281
- stickingProbabilityP2: typing.SupportsFloat = ...,
1282
- rateP2: typing.SupportsFloat = ...,
1283
- orderP2: typing.SupportsFloat = ...,
1284
- ) -> None: ...
1285
-
1286
- class TEOSPECVD(ProcessModel):
1287
- def __init__(
1288
- self,
1289
- stickingProbabilityRadical: typing.SupportsFloat,
1290
- depositionRateRadical: typing.SupportsFloat,
1291
- depositionRateIon: typing.SupportsFloat,
1292
- exponentIon: typing.SupportsFloat,
1293
- stickingProbabilityIon: typing.SupportsFloat = ...,
1294
- reactionOrderRadical: typing.SupportsFloat = ...,
1295
- reactionOrderIon: typing.SupportsFloat = ...,
1296
- minAngleIon: typing.SupportsFloat = ...,
1297
- ) -> None: ...
1298
-
1299
- class Time:
1300
- def __init__(self, *args, **kwargs) -> None: ...
1301
- def convertMillisecond(self) -> float: ...
1302
- def convertMinute(self) -> float: ...
1303
- def convertSecond(self) -> float: ...
1304
- @staticmethod
1305
- def getInstance() -> Time: ...
1306
- @staticmethod
1307
- def setUnit(arg0: str) -> None: ...
1308
- def toShortString(self) -> str: ...
1309
- def toString(self) -> str: ...
1310
-
1311
- class ToDiskMesh:
1312
- @overload
1313
- def __init__(self, domain: Domain, mesh: viennals3d.viennals3d.Mesh) -> None: ...
1314
- @overload
1315
- def __init__(self) -> None: ...
1316
- def setDomain(self, arg0: Domain) -> None: ...
1317
- def setMesh(self, arg0: viennals3d.viennals3d.Mesh) -> None: ...
1318
-
1319
- class WetEtching(ProcessModel):
1320
- @overload
1321
- def __init__(
1322
- self,
1323
- materialRates: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
1324
- ) -> None: ...
1325
- @overload
1326
- def __init__(
1327
- self,
1328
- direction100,
1329
- direction010,
1330
- rate100: typing.SupportsFloat,
1331
- rate110: typing.SupportsFloat,
1332
- rate111: typing.SupportsFloat,
1333
- rate311: typing.SupportsFloat,
1334
- materialRates: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
1335
- ) -> None: ...
1336
-
1337
- class Writer:
1338
- @overload
1339
- def __init__(self) -> None: ...
1340
- @overload
1341
- def __init__(self, domain: Domain) -> None: ...
1342
- @overload
1343
- def __init__(self, domain: Domain, fileName: str) -> None: ...
1344
- def apply(self) -> None: ...
1345
- def setDomain(self, arg0: Domain) -> None: ...
1346
- def setFileName(self, arg0: str) -> None: ...
1347
-
1348
- def setNumThreads(arg0: typing.SupportsInt) -> None: ...