ViennaPS 3.3.0__cp310-cp310-win_amd64.whl → 4.0.1__cp310-cp310-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 (67) hide show
  1. viennaps/__init__.py +126 -0
  2. viennaps/__init__.pyi +241 -0
  3. viennaps/_core/__init__.pyi +1145 -0
  4. viennaps/_core/constants.pyi +46 -0
  5. viennaps/_core/gpu.pyi +74 -0
  6. viennaps/_core/util.pyi +13 -0
  7. viennaps/_core.cp310-win_amd64.pyd +0 -0
  8. viennaps/d2/__init__.pyi +1438 -0
  9. viennaps/d2/gpu.pyi +90 -0
  10. viennaps/d3/__init__.pyi +1443 -0
  11. viennaps/d3/gpu.pyi +90 -0
  12. viennaps-4.0.1.dist-info/METADATA +314 -0
  13. viennaps-4.0.1.dist-info/RECORD +55 -0
  14. {viennaps-3.3.0.dist-info → viennaps-4.0.1.dist-info}/WHEEL +1 -1
  15. {viennaps-3.3.0.dist-info → viennaps-4.0.1.dist-info}/licenses/LICENSE +1 -6
  16. viennaps.libs/embree4.dll +0 -0
  17. viennaps.libs/embree4.exp +0 -0
  18. viennaps.libs/embree4.lib +0 -0
  19. viennaps.libs/embree_avx.lib +0 -0
  20. viennaps.libs/embree_avx2.lib +0 -0
  21. viennaps.libs/embree_sse42.lib +0 -0
  22. viennaps.libs/lexers.lib +0 -0
  23. viennaps.libs/math.lib +0 -0
  24. viennaps.libs/simd.lib +0 -0
  25. viennaps.libs/sys.lib +0 -0
  26. viennaps.libs/tasking.lib +0 -0
  27. viennaps.libs/tbb12.dll +0 -0
  28. viennaps.libs/tbb12.exp +0 -0
  29. viennaps.libs/tbb12.lib +0 -0
  30. viennaps.libs/vtkCommonComputationalGeometry-9.3.dll +0 -0
  31. viennaps.libs/vtkCommonCore-9.3.dll +0 -0
  32. viennaps.libs/vtkCommonDataModel-9.3.dll +0 -0
  33. viennaps.libs/vtkCommonExecutionModel-9.3.dll +0 -0
  34. viennaps.libs/vtkCommonMath-9.3.dll +0 -0
  35. viennaps.libs/vtkCommonMisc-9.3.dll +0 -0
  36. viennaps.libs/vtkCommonSystem-9.3.dll +0 -0
  37. viennaps.libs/vtkCommonTransforms-9.3.dll +0 -0
  38. viennaps.libs/vtkFiltersCore-9.3.dll +0 -0
  39. viennaps.libs/vtkFiltersGeneral-9.3.dll +0 -0
  40. viennaps.libs/vtkFiltersGeometry-9.3.dll +0 -0
  41. viennaps.libs/vtkFiltersVerdict-9.3.dll +0 -0
  42. viennaps.libs/vtkIOCore-9.3.dll +0 -0
  43. viennaps.libs/vtkIOXML-9.3.dll +0 -0
  44. viennaps.libs/vtkIOXMLParser-9.3.dll +0 -0
  45. viennaps.libs/vtkdoubleconversion-9.3.dll +0 -0
  46. viennaps.libs/vtkexpat-9.3.dll +0 -0
  47. viennaps.libs/vtkfmt-9.3.dll +0 -0
  48. viennaps.libs/vtkkissfft-9.3.dll +0 -0
  49. viennaps.libs/vtkloguru-9.3.dll +0 -0
  50. viennaps.libs/vtklz4-9.3.dll +0 -0
  51. viennaps.libs/vtklzma-9.3.dll +0 -0
  52. viennaps.libs/vtkpugixml-9.3.dll +0 -0
  53. viennaps.libs/vtksys-9.3.dll +0 -0
  54. viennaps.libs/vtkverdict-9.3.dll +0 -0
  55. viennaps.libs/vtkzlib-9.3.dll +0 -0
  56. viennaps-3.3.0.dist-info/METADATA +0 -275
  57. viennaps-3.3.0.dist-info/RECORD +0 -54
  58. viennaps2d/Release/viennaps2d.cp310-win_amd64.pyd +0 -0
  59. viennaps2d/__init__.py +0 -67
  60. viennaps2d/__init__.pyi +0 -3
  61. viennaps2d/viennaps2d.cp310-win_amd64.pyd +0 -0
  62. viennaps2d/viennaps2d.pyi +0 -1009
  63. viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd +0 -0
  64. viennaps3d/__init__.py +0 -67
  65. viennaps3d/__init__.pyi +0 -3
  66. viennaps3d/viennaps3d.cp310-win_amd64.pyd +0 -0
  67. viennaps3d/viennaps3d.pyi +0 -966
viennaps3d/viennaps3d.pyi DELETED
@@ -1,966 +0,0 @@
1
- import viennals3d.viennals3d
2
- from _typeshed import Incomplete
3
- from typing import Callable, ClassVar, overload
4
-
5
- D: int
6
- __version__: str
7
- version: str
8
-
9
- class AdvectionCallback:
10
- domain: Domain
11
- def __init__(self) -> None: ...
12
- def applyPostAdvect(self, arg0: float) -> bool: ...
13
- def applyPreAdvect(self, arg0: float) -> bool: ...
14
-
15
- class AdvectionParameters:
16
- checkDissipation: bool
17
- dissipationAlpha: float
18
- ignoreVoids: bool
19
- integrationScheme: viennals3d.viennals3d.IntegrationSchemeEnum
20
- timeStepRatio: float
21
- velocityOutput: bool
22
- def __init__(self) -> None: ...
23
-
24
- class AnisotropicProcess(ProcessModel):
25
- @overload
26
- def __init__(self, materials: list[tuple[Material, float]]) -> None: ...
27
- @overload
28
- def __init__(
29
- self,
30
- direction100,
31
- direction010,
32
- rate100: float,
33
- rate110: float,
34
- rate111: float,
35
- rate311: float,
36
- materials: list[tuple[Material, float]],
37
- ) -> None: ...
38
-
39
- class AtomicLayerProcess:
40
- def __init__(self) -> None: ...
41
- def apply(self) -> None: ...
42
- def disableRandomSeeds(self) -> None: ...
43
- def enableRandomSeeds(self) -> None: ...
44
- def setCoverageTimeStep(self, arg0: float) -> None: ...
45
- def setDesorptionRates(self, arg0: list[float]) -> None: ...
46
- def setDomain(self, *args, **kwargs): ...
47
- def setIntegrationScheme(
48
- self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
49
- ) -> None: ...
50
- def setNumCycles(self, arg0: int) -> None: ...
51
- def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
52
- def setProcessModel(self, arg0: ProcessModel) -> None: ...
53
- def setPulseTime(self, arg0: float) -> None: ...
54
- def setSourceDirection(self, arg0: rayTraceDirection) -> None: ...
55
-
56
- class BoxDistribution(ProcessModel):
57
- @overload
58
- def __init__(
59
- self, halfAxes, gridDelta: float, mask: viennals3d.viennals3d.Domain
60
- ) -> None: ...
61
- @overload
62
- def __init__(self, halfAxes, gridDelta: float) -> None: ...
63
-
64
- class DirectionalEtching(ProcessModel):
65
- @overload
66
- def __init__(
67
- self,
68
- direction,
69
- directionalVelocity: float,
70
- isotropicVelocity: float = ...,
71
- maskMaterial: Material = ...,
72
- calculateVisibility: bool = ...,
73
- ) -> None: ...
74
- @overload
75
- def __init__(
76
- self,
77
- direction,
78
- directionalVelocity: float,
79
- isotropicVelocity: float,
80
- maskMaterial: list[Material],
81
- calculateVisibility: bool = ...,
82
- ) -> None: ...
83
- @overload
84
- def __init__(self, rateSets: list[RateSet]) -> None: ...
85
- @overload
86
- def __init__(self, rateSet: RateSet) -> None: ...
87
-
88
- class Domain:
89
- @overload
90
- def __init__(self) -> None: ...
91
- @overload
92
- def __init__(self, domain: Domain) -> None: ...
93
- @overload
94
- def __init__(
95
- self,
96
- gridDelta: float,
97
- xExtent: float,
98
- yExtent: float,
99
- boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
100
- ) -> None: ...
101
- def applyBooleanOperation(
102
- self,
103
- arg0: viennals3d.viennals3d.Domain,
104
- arg1: viennals3d.viennals3d.BooleanOperationEnum,
105
- ) -> None: ...
106
- def clear(self) -> None: ...
107
- def deepCopy(self, arg0: Domain) -> None: ...
108
- def duplicateTopLevelSet(self, arg0: Material) -> None: ...
109
- def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
110
- def getBoundaryConditions(self, *args, **kwargs): ...
111
- def getBoundingBox(self, *args, **kwargs): ...
112
- def getCellSet(self, *args, **kwargs): ...
113
- def getGrid(self, *args, **kwargs): ...
114
- def getGridDelta(self) -> float: ...
115
- def getLevelSets(self) -> list[viennals3d.viennals3d.Domain]: ...
116
- def getMaterialMap(self, *args, **kwargs): ...
117
- def getSetup(self, *args, **kwargs): ...
118
- def insertNextLevelSet(
119
- self, levelset: viennals3d.viennals3d.Domain, wrapLowerLevelSet: bool = ...
120
- ) -> None: ...
121
- def insertNextLevelSetAsMaterial(
122
- self,
123
- levelSet: viennals3d.viennals3d.Domain,
124
- material: Material,
125
- wrapLowerLevelSet: bool = ...,
126
- ) -> None: ...
127
- def print(self) -> None: ...
128
- def removeLevelSet(self, arg0: int, arg1: bool) -> None: ...
129
- def removeMaterial(self, arg0: Material) -> None: ...
130
- def removeTopLevelSet(self) -> None: ...
131
- def saveHullMesh(
132
- self, filename: str, wrappingLayerEpsilon: float = ...
133
- ) -> None: ...
134
- def saveLevelSetMesh(self, filename: str, width: int = ...) -> None: ...
135
- def saveLevelSets(self, filename: str) -> None: ...
136
- def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
137
- def saveVolumeMesh(
138
- self, filename: str, wrappingLayerEpsilon: float = ...
139
- ) -> None: ...
140
- def setMaterialMap(self, arg0) -> None: ...
141
- def setup(
142
- self,
143
- gridDelta: float,
144
- xExtent: float,
145
- yExtent: float = ...,
146
- boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
147
- ) -> None: ...
148
-
149
- class DomainSetup:
150
- @overload
151
- def __init__(self) -> None: ...
152
- @overload
153
- def __init__(
154
- self,
155
- gridDelta: float,
156
- xExtent: float,
157
- yExtent: float,
158
- boundary: viennals3d.viennals3d.BoundaryConditionEnum = ...,
159
- ) -> None: ...
160
- def boundaryCons(self, *args, **kwargs): ...
161
- def bounds(self, *args, **kwargs): ...
162
- def check(self) -> None: ...
163
- def grid(self, *args, **kwargs): ...
164
- def gridDelta(self) -> float: ...
165
- def halveXAxis(self) -> None: ...
166
- def halveYAxis(self) -> None: ...
167
- def hasPeriodicBoundary(self) -> bool: ...
168
- def isValid(self) -> bool: ...
169
- def print(self) -> None: ...
170
- def xExtent(self) -> float: ...
171
- def yExtent(self) -> float: ...
172
-
173
- class FaradayCageEtching(ProcessModel):
174
- @overload
175
- def __init__(self) -> None: ...
176
- @overload
177
- def __init__(self, maskMaterials: list[Material]) -> None: ...
178
- @overload
179
- def __init__(
180
- self, maskMaterials: list[Material], parameters: FaradayCageParameters
181
- ) -> None: ...
182
- def getParameters(self) -> FaradayCageParameters: ...
183
- def setParameters(self, arg0: FaradayCageParameters) -> None: ...
184
-
185
- class FaradayCageParameters:
186
- cageAngle: float
187
- ibeParams: IBEParameters
188
- def __init__(self) -> None: ...
189
-
190
- class FluorocarbonEtching(ProcessModel):
191
- @overload
192
- def __init__(self) -> None: ...
193
- @overload
194
- def __init__(
195
- self,
196
- ionFlux: float,
197
- etchantFlux: float,
198
- polyFlux: float,
199
- meanIonEnergy: float = ...,
200
- sigmaIonEnergy: float = ...,
201
- ionExponent: float = ...,
202
- deltaP: float = ...,
203
- etchStopDepth: float = ...,
204
- ) -> None: ...
205
- @overload
206
- def __init__(self, parameters: FluorocarbonParameters) -> None: ...
207
- def getParameters(self) -> FluorocarbonParameters: ...
208
- def setParameters(self, arg0: FluorocarbonParameters) -> None: ...
209
-
210
- class FluorocarbonParameters:
211
- Ions: FluorocarbonParametersIons
212
- Mask: FluorocarbonParametersMask
213
- Polymer: FluorocarbonParametersPolymer
214
- Si: FluorocarbonParametersSi
215
- Si3N4: FluorocarbonParametersSi3N4
216
- SiO2: FluorocarbonParametersSiO2
217
- delta_p: float
218
- etchStopDepth: float
219
- etchantFlux: float
220
- ionFlux: float
221
- polyFlux: float
222
- def __init__(self) -> None: ...
223
-
224
- class FluorocarbonParametersIons:
225
- exponent: float
226
- inflectAngle: float
227
- meanEnergy: float
228
- minAngle: float
229
- n_l: float
230
- sigmaEnergy: float
231
- def __init__(self) -> None: ...
232
-
233
- class FluorocarbonParametersMask:
234
- A_sp: float
235
- B_sp: float
236
- Eth_sp: float
237
- beta_e: float
238
- beta_p: float
239
- rho: float
240
- def __init__(self) -> None: ...
241
-
242
- class FluorocarbonParametersPolymer:
243
- A_ie: float
244
- Eth_ie: float
245
- rho: float
246
- def __init__(self) -> None: ...
247
-
248
- class FluorocarbonParametersSi:
249
- A_ie: float
250
- A_sp: float
251
- B_sp: float
252
- E_a: float
253
- Eth_ie: float
254
- Eth_sp: float
255
- K: float
256
- rho: float
257
- def __init__(self) -> None: ...
258
-
259
- class FluorocarbonParametersSi3N4:
260
- A_ie: float
261
- A_sp: float
262
- B_sp: float
263
- E_a: float
264
- Eth_ie: float
265
- Eth_sp: float
266
- K: float
267
- rho: float
268
- def __init__(self) -> None: ...
269
-
270
- class FluorocarbonParametersSiO2:
271
- A_ie: float
272
- A_sp: float
273
- B_sp: float
274
- E_a: float
275
- Eth_ie: float
276
- Eth_sp: float
277
- K: float
278
- rho: float
279
- def __init__(self) -> None: ...
280
-
281
- class GDSGeometry:
282
- @overload
283
- def __init__(self) -> None: ...
284
- @overload
285
- def __init__(self, gridDelta: float) -> None: ...
286
- def getBounds(self, *args, **kwargs): ...
287
- def layerToLevelSet(
288
- self, layer: int, baseHeight: float, height: float, mask: bool = ...
289
- ) -> viennals3d.viennals3d.Domain: ...
290
- def print(self) -> None: ...
291
- def setBoundaryConditions(
292
- self, arg0: list[viennals3d.viennals3d.BoundaryConditionEnum]
293
- ) -> None: ...
294
- def setBoundaryPadding(self, arg0: float, arg1: float) -> None: ...
295
- def setGridDelta(self, arg0: float) -> None: ...
296
-
297
- class GDSReader:
298
- @overload
299
- def __init__(self) -> None: ...
300
- @overload
301
- def __init__(self, arg0: GDSGeometry, arg1: str) -> None: ...
302
- def apply(self) -> None: ...
303
- def setFileName(self, arg0: str) -> None: ...
304
- def setGeometry(self, arg0: GDSGeometry) -> None: ...
305
-
306
- class GeometryFactory:
307
- def __init__(self, *args, **kwargs) -> None: ...
308
- def makeBoxStencil(
309
- self, position, width: float, height: float, angle: float
310
- ) -> viennals3d.viennals3d.Domain: ...
311
- def makeCylinderStencil(
312
- self, position, radius: float, height: float, angle: float
313
- ) -> viennals3d.viennals3d.Domain: ...
314
- def makeMask(self, base: float, height: float) -> viennals3d.viennals3d.Domain: ...
315
- def makeSubstrate(self, base: float) -> viennals3d.viennals3d.Domain: ...
316
-
317
- class HoleShape:
318
- __members__: ClassVar[dict] = ... # read-only
319
- Full: ClassVar[HoleShape] = ...
320
- Half: ClassVar[HoleShape] = ...
321
- Quarter: ClassVar[HoleShape] = ...
322
- __entries: ClassVar[dict] = ...
323
- def __init__(self, value: int) -> None: ...
324
- def __eq__(self, other: object) -> bool: ...
325
- def __hash__(self) -> int: ...
326
- def __index__(self) -> int: ...
327
- def __int__(self) -> int: ...
328
- def __ne__(self, other: object) -> bool: ...
329
- @property
330
- def name(self) -> str: ...
331
- @property
332
- def value(self) -> int: ...
333
-
334
- class IBEParameters:
335
- exponent: float
336
- inflectAngle: float
337
- meanEnergy: float
338
- minAngle: float
339
- n_l: float
340
- planeWaferRate: float
341
- redepositionRate: float
342
- redepositionThreshold: float
343
- sigmaEnergy: float
344
- thresholdEnergy: float
345
- tiltAngle: float
346
- yieldFunction: Callable[[float], float]
347
- def __init__(self) -> None: ...
348
-
349
- class IonBeamEtching(ProcessModel):
350
- @overload
351
- def __init__(self) -> None: ...
352
- @overload
353
- def __init__(self, maskMaterials: list[Material]) -> None: ...
354
- @overload
355
- def __init__(
356
- self, maskMaterials: list[Material], parameters: IBEParameters
357
- ) -> None: ...
358
- def getParameters(self) -> IBEParameters: ...
359
- def setParameters(self, arg0: IBEParameters) -> None: ...
360
-
361
- class IsotropicProcess(ProcessModel):
362
- @overload
363
- def __init__(self, rate: float = ..., maskMaterial: Material = ...) -> None: ...
364
- @overload
365
- def __init__(self, rate: float, maskMaterial: list[Material]) -> None: ...
366
-
367
- class Length:
368
- def __init__(self, *args, **kwargs) -> None: ...
369
- def convertAngstrom(self) -> float: ...
370
- def convertCentimeter(self) -> float: ...
371
- def convertMeter(self) -> float: ...
372
- def convertMicrometer(self) -> float: ...
373
- def convertMillimeter(self) -> float: ...
374
- def convertNanometer(self) -> float: ...
375
- @staticmethod
376
- def getInstance() -> Length: ...
377
- @staticmethod
378
- def setUnit(arg0: str) -> None: ...
379
- def toShortString(self) -> str: ...
380
- def toString(self) -> str: ...
381
-
382
- class LogLevel:
383
- __members__: ClassVar[dict] = ... # read-only
384
- DEBUG: ClassVar[LogLevel] = ...
385
- ERROR: ClassVar[LogLevel] = ...
386
- INFO: ClassVar[LogLevel] = ...
387
- INTERMEDIATE: ClassVar[LogLevel] = ...
388
- TIMING: ClassVar[LogLevel] = ...
389
- WARNING: ClassVar[LogLevel] = ...
390
- __entries: ClassVar[dict] = ...
391
- def __init__(self, value: int) -> None: ...
392
- def __eq__(self, other: object) -> bool: ...
393
- def __hash__(self) -> int: ...
394
- def __index__(self) -> int: ...
395
- def __int__(self) -> int: ...
396
- def __ne__(self, other: object) -> bool: ...
397
- @property
398
- def name(self) -> str: ...
399
- @property
400
- def value(self) -> int: ...
401
-
402
- class Logger:
403
- def __init__(self, *args, **kwargs) -> None: ...
404
- def addDebug(self, arg0: str) -> Logger: ...
405
- def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
406
- def addInfo(self, arg0: str) -> Logger: ...
407
- @overload
408
- def addTiming(self, arg0: str, arg1: float) -> Logger: ...
409
- @overload
410
- def addTiming(self, arg0: str, arg1: float, arg2: float) -> Logger: ...
411
- def addWarning(self, arg0: str) -> Logger: ...
412
- @staticmethod
413
- def getInstance() -> Logger: ...
414
- @staticmethod
415
- def getLogLevel() -> int: ...
416
- def print(self) -> None: ...
417
- @staticmethod
418
- def setLogLevel(arg0: LogLevel) -> None: ...
419
-
420
- class MakeFin:
421
- @overload
422
- def __init__(
423
- self,
424
- domain: Domain,
425
- finWidth: float,
426
- finHeight: float,
427
- finTaperAngle: float = 0.0,
428
- maskHeight: float = 0.0,
429
- maskTaperAngle: float = 0.0,
430
- halfFin: bool = False,
431
- material: Material = Material.Si,
432
- maskMaterial: Material = Material.Mask,
433
- ) -> None: ...
434
- @overload
435
- def __init__(
436
- self,
437
- domain: Domain,
438
- gridDelta: float,
439
- xExtent: float,
440
- yExtent: float,
441
- finWidth: float,
442
- finHeight: float,
443
- taperAngle: float = 0.0,
444
- baseHeight: float = 0.0,
445
- periodicBoundary: bool = False,
446
- makeMask: bool = False,
447
- material: Material = Material.Si,
448
- ) -> None: ...
449
- def apply(self) -> None: ...
450
-
451
- class MakeHole:
452
- @overload
453
- def __init__(
454
- self,
455
- domain: Domain,
456
- holeRadius: float,
457
- holeDepth: float,
458
- holeTaperAngle: float = 0.0,
459
- maskHeight: float = 0.0,
460
- maskTaperAngle: float = 0.0,
461
- holeShape: HoleShape = HoleShape.Full,
462
- material: Material = Material.Si,
463
- maskMaterial: Material = Material.Mask,
464
- ) -> None: ...
465
- @overload
466
- def __init__(
467
- self,
468
- domain: Domain,
469
- gridDelta: float,
470
- xExtent: float,
471
- yExtent: float,
472
- holeRadius: float,
473
- holeDepth: float,
474
- taperingAngle: float = 0.0,
475
- baseHeight: float = 0.0,
476
- periodicBoundary: bool = False,
477
- makeMask: bool = False,
478
- material: Material = Material.Si,
479
- holeShape: HoleShape = HoleShape.Full,
480
- ) -> None: ...
481
- def apply(self) -> None: ...
482
-
483
- class MakePlane:
484
- @overload
485
- def __init__(
486
- self,
487
- domain: Domain,
488
- gridDelta: float,
489
- xExtent: float,
490
- yExtent: float,
491
- height: float = 0.0,
492
- periodicBoundary: bool = False,
493
- material: Material = Material.Si,
494
- ) -> None: ...
495
- @overload
496
- def __init__(
497
- self,
498
- domain: Domain,
499
- height: float = 0.0,
500
- material: Material = Material.Si,
501
- addToExisting: bool = False,
502
- ) -> None: ...
503
- def apply(self) -> None: ...
504
-
505
- class MakeStack:
506
- @overload
507
- def __init__(
508
- self,
509
- domain: Domain,
510
- numLayers: int,
511
- layerHeight: float,
512
- substrateHeight: float = 0,
513
- holeRadius: float = 0,
514
- trenchWidth: float = 0,
515
- maskHeight: float = 0,
516
- taperAngle: float = 0,
517
- halfStack: bool = False,
518
- maskMaterial: Material = Material.Mask,
519
- ) -> None: ...
520
- @overload
521
- def __init__(
522
- self,
523
- domain: Domain,
524
- gridDelta: float,
525
- xExtent: float,
526
- yExtent: float,
527
- numLayers: int,
528
- layerHeight: float,
529
- substrateHeight: float,
530
- holeRadius: float,
531
- trenchWidth: float,
532
- maskHeight: float,
533
- periodicBoundary: bool = False,
534
- ) -> None: ...
535
- def apply(self) -> None: ...
536
- def getHeight(self) -> float: ...
537
- def getTopLayer(self) -> int: ...
538
-
539
- class MakeTrench:
540
- @overload
541
- def __init__(
542
- self,
543
- domain: Domain,
544
- trenchWidth: float,
545
- trenchDepth: float,
546
- trenchTaperAngle: float = 0.0,
547
- maskHeight: float = 0.0,
548
- maskTaperAngle: float = 0.0,
549
- halfTrench: bool = False,
550
- material: Material = Material.Si,
551
- maskMaterial: Material = Material.Mask,
552
- ) -> None: ...
553
- @overload
554
- def __init__(
555
- self,
556
- domain: Domain,
557
- gridDelta: float,
558
- xExtent: float,
559
- yExtent: float,
560
- trenchWidth: float,
561
- trenchDepth: float,
562
- taperingAngle: float = 0.0,
563
- baseHeight: float = 0.0,
564
- periodicBoundary: bool = False,
565
- makeMask: bool = False,
566
- material: Material = Material.Si,
567
- ) -> None: ...
568
- def apply(self) -> None: ...
569
-
570
- class Material:
571
- __members__: ClassVar[dict] = ... # read-only
572
- Air: ClassVar[Material] = ...
573
- Al2O3: ClassVar[Material] = ...
574
- Cu: ClassVar[Material] = ...
575
- Dielectric: ClassVar[Material] = ...
576
- GAS: ClassVar[Material] = ...
577
- GaN: ClassVar[Material] = ...
578
- Mask: ClassVar[Material] = ...
579
- Metal: ClassVar[Material] = ...
580
- PolySi: ClassVar[Material] = ...
581
- Polymer: ClassVar[Material] = ...
582
- Si: ClassVar[Material] = ...
583
- Si3N4: ClassVar[Material] = ...
584
- SiC: ClassVar[Material] = ...
585
- SiGe: ClassVar[Material] = ...
586
- SiN: ClassVar[Material] = ...
587
- SiO2: ClassVar[Material] = ...
588
- SiON: ClassVar[Material] = ...
589
- TiN: ClassVar[Material] = ...
590
- Undefined: ClassVar[Material] = ...
591
- W: ClassVar[Material] = ...
592
- __entries: ClassVar[dict] = ...
593
- def __init__(self, value: int) -> None: ...
594
- def __eq__(self, other: object) -> bool: ...
595
- def __hash__(self) -> int: ...
596
- def __index__(self) -> int: ...
597
- def __int__(self) -> int: ...
598
- def __ne__(self, other: object) -> bool: ...
599
- @property
600
- def name(self) -> str: ...
601
- @property
602
- def value(self) -> int: ...
603
-
604
- class MaterialMap:
605
- def __init__(self) -> None: ...
606
- def getMaterialAtIdx(self, arg0: int) -> Material: ...
607
- def getMaterialMap(self) -> viennals3d.viennals3d.MaterialMap: ...
608
- @staticmethod
609
- def getMaterialName(arg0: Material) -> str: ...
610
- def insertNextMaterial(self, material: Material = ...) -> None: ...
611
- @staticmethod
612
- def isMaterial(arg0: float, arg1: Material) -> bool: ...
613
- @staticmethod
614
- def mapToMaterial(arg0: float) -> Material: ...
615
- def size(self) -> int: ...
616
-
617
- class MultiParticleProcess(ProcessModel):
618
- def __init__(self) -> None: ...
619
- def addIonParticle(
620
- self,
621
- sourcePower: float,
622
- thetaRMin: float = ...,
623
- thetaRMax: float = ...,
624
- minAngle: float = ...,
625
- B_sp: float = ...,
626
- meanEnergy: float = ...,
627
- sigmaEnergy: float = ...,
628
- thresholdEnergy: float = ...,
629
- inflectAngle: float = ...,
630
- n: float = ...,
631
- label: str = ...,
632
- ) -> None: ...
633
- @overload
634
- def addNeutralParticle(
635
- self, stickingProbability: float, label: str = ...
636
- ) -> None: ...
637
- @overload
638
- def addNeutralParticle(
639
- self,
640
- materialSticking: dict[Material, float],
641
- defaultStickingProbability: float = ...,
642
- label: str = ...,
643
- ) -> None: ...
644
- def setRateFunction(
645
- self, arg0: Callable[[list[float], Material], float]
646
- ) -> None: ...
647
-
648
- class NormalizationType:
649
- __members__: ClassVar[dict] = ... # read-only
650
- MAX: ClassVar[NormalizationType] = ...
651
- SOURCE: ClassVar[NormalizationType] = ...
652
- __entries: ClassVar[dict] = ...
653
- def __init__(self, value: int) -> None: ...
654
- def __eq__(self, other: object) -> bool: ...
655
- def __hash__(self) -> int: ...
656
- def __index__(self) -> int: ...
657
- def __int__(self) -> int: ...
658
- def __ne__(self, other: object) -> bool: ...
659
- @property
660
- def name(self) -> str: ...
661
- @property
662
- def value(self) -> int: ...
663
-
664
- class OxideRegrowth(ProcessModel):
665
- def __init__(
666
- self,
667
- nitrideEtchRate: float,
668
- oxideEtchRate: float,
669
- redepositionRate: float,
670
- redepositionThreshold: float,
671
- redepositionTimeInt: float,
672
- diffusionCoefficient: float,
673
- sinkStrength: float,
674
- scallopVelocity: float,
675
- centerVelocity: float,
676
- topHeight: float,
677
- centerWidth: float,
678
- stabilityFactor: float,
679
- ) -> None: ...
680
-
681
- class Particle:
682
- def __init__(self, *args, **kwargs) -> None: ...
683
- def getLocalDataLabels(self) -> list[str]: ...
684
- def getSourceDistributionPower(self) -> float: ...
685
- def initNew(self, *args, **kwargs): ...
686
- def surfaceCollision(self, *args, **kwargs): ...
687
- def surfaceReflection(self, *args, **kwargs): ...
688
-
689
- class Planarize:
690
- @overload
691
- def __init__(self) -> None: ...
692
- @overload
693
- def __init__(self, geometry: Domain, cutoffHeight: float = ...) -> None: ...
694
- def apply(self) -> None: ...
695
- def setCutoffPosition(self, arg0: float) -> None: ...
696
- def setDomain(self, arg0: Domain) -> None: ...
697
-
698
- class Process:
699
- def __init__(self) -> None: ...
700
- def apply(self) -> None: ...
701
- def calculateFlux(self) -> viennals3d.viennals3d.Mesh: ...
702
- def disableAdvectionVelocityOutput(self) -> None: ...
703
- def disableFluxSmoothing(self) -> None: ...
704
- def disableRandomSeeds(self) -> None: ...
705
- def enableAdvectionVelocityOutput(self) -> None: ...
706
- def enableFluxSmoothing(self) -> None: ...
707
- def enableRandomSeeds(self) -> None: ...
708
- def getAdvectionParameters(self) -> AdvectionParameters: ...
709
- def getProcessDuration(self) -> float: ...
710
- def getRayTracingParameters(self) -> RayTracingParameters: ...
711
- def setAdvectionParameters(self, arg0: AdvectionParameters) -> None: ...
712
- def setCoverageDeltaThreshold(self, arg0: float) -> None: ...
713
- def setDomain(self, *args, **kwargs): ...
714
- def setIntegrationScheme(
715
- self, arg0: viennals3d.viennals3d.IntegrationSchemeEnum
716
- ) -> None: ...
717
- def setMaxCoverageInitIterations(self, arg0: int) -> None: ...
718
- def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
719
- def setProcessDuration(self, arg0: float) -> None: ...
720
- def setProcessModel(self, arg0: ProcessModel) -> None: ...
721
- def setRayTracingDiskRadius(self, arg0: float) -> None: ...
722
- def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
723
- def setSourceDirection(self, arg0: rayTraceDirection) -> None: ...
724
- def setTimeStepRatio(self, arg0: float) -> None: ...
725
-
726
- class ProcessModel:
727
- def __init__(self) -> None: ...
728
- def getAdvectionCallback(self, *args, **kwargs): ...
729
- def getGeometricModel(self, *args, **kwargs): ...
730
- def getParticleLogSize(self, arg0: int) -> int: ...
731
- def getParticleTypes(self, *args, **kwargs): ...
732
- def getPrimaryDirection(self, *args, **kwargs): ...
733
- def getProcessName(self) -> str | None: ...
734
- def getSurfaceModel(self, *args, **kwargs): ...
735
- def getVelocityField(self, *args, **kwargs): ...
736
- def insertNextParticleType(self, arg0) -> None: ...
737
- def setAdvectionCallback(self, *args, **kwargs): ...
738
- def setGeometricModel(self, *args, **kwargs): ...
739
- def setPrimaryDirection(self, arg0) -> None: ...
740
- def setProcessName(self, arg0: str) -> None: ...
741
- def setSurfaceModel(self, arg0) -> None: ...
742
- def setVelocityField(self, *args, **kwargs): ...
743
-
744
- class ProcessParams:
745
- def __init__(self) -> None: ...
746
- @overload
747
- def getScalarData(self, arg0: int) -> float: ...
748
- @overload
749
- def getScalarData(self, arg0: int) -> float: ...
750
- @overload
751
- def getScalarData(self, arg0: str) -> float: ...
752
- @overload
753
- def getScalarData(self) -> list[float]: ...
754
- @overload
755
- def getScalarData(self) -> list[float]: ...
756
- def getScalarDataIndex(self, arg0: str) -> int: ...
757
- def getScalarDataLabel(self, arg0: int) -> str: ...
758
- def insertNextScalar(self, arg0: float, arg1: str) -> None: ...
759
-
760
- class RateSet:
761
- calculateVisibility: bool
762
- direction: Incomplete
763
- directionalVelocity: float
764
- isotropicVelocity: float
765
- maskMaterials: list[Material]
766
- def __init__(
767
- self,
768
- direction=...,
769
- directionalVelocity: float = ...,
770
- isotropicVelocity: float = ...,
771
- maskMaterials: list[Material] = ...,
772
- calculateVisibility: bool = ...,
773
- ) -> None: ...
774
- def print(self) -> None: ...
775
-
776
- class RayTracingParameters:
777
- diskRadius: float
778
- ignoreFluxBoundaries: bool
779
- normalizationType: NormalizationType
780
- raysPerPoint: int
781
- smoothingNeighbors: int
782
- sourceDirection: rayTraceDirection
783
- useRandomSeeds: bool
784
- def __init__(self) -> None: ...
785
-
786
- class SF6O2Etching(ProcessModel):
787
- @overload
788
- def __init__(self) -> None: ...
789
- @overload
790
- def __init__(
791
- self,
792
- ionFlux: float,
793
- etchantFlux: float,
794
- oxygenFlux: float,
795
- meanIonEnergy: float = ...,
796
- sigmaIonEnergy: float = ...,
797
- ionExponent: float = ...,
798
- oxySputterYield: float = ...,
799
- etchStopDepth: float = ...,
800
- ) -> None: ...
801
- @overload
802
- def __init__(self, parameters: SF6O2Parameters) -> None: ...
803
- def getParameters(self) -> SF6O2Parameters: ...
804
- def setParameters(self, arg0: SF6O2Parameters) -> None: ...
805
-
806
- class SF6O2Parameters:
807
- Ions: SF6O2ParametersIons
808
- Mask: SF6O2ParametersMask
809
- Passivation: SF6O2ParametersPassivation
810
- Si: SF6O2ParametersSi
811
- beta_F: dict[int, float]
812
- beta_O: dict[int, float]
813
- etchStopDepth: float
814
- etchantFlux: float
815
- fluxIncludeSticking: bool
816
- ionFlux: float
817
- oxygenFlux: float
818
- def __init__(self) -> None: ...
819
-
820
- class SF6O2ParametersIons:
821
- exponent: float
822
- inflectAngle: float
823
- meanEnergy: float
824
- minAngle: float
825
- n_l: float
826
- sigmaEnergy: float
827
- def __init__(self) -> None: ...
828
-
829
- class SF6O2ParametersMask:
830
- A_sp: float
831
- B_sp: float
832
- Eth_sp: float
833
- rho: float
834
- def __init__(self) -> None: ...
835
-
836
- class SF6O2ParametersPassivation:
837
- A_ie: float
838
- Eth_ie: float
839
- def __init__(self) -> None: ...
840
-
841
- class SF6O2ParametersSi:
842
- A_ie: float
843
- A_sp: float
844
- B_ie: float
845
- B_sp: float
846
- Eth_ie: float
847
- Eth_sp: float
848
- beta_sigma: float
849
- k_sigma: float
850
- rho: float
851
- theta_g_ie: float
852
- theta_g_sp: float
853
- def __init__(self) -> None: ...
854
-
855
- class SingleParticleALD(ProcessModel):
856
- def __init__(
857
- self,
858
- stickingProbability: float,
859
- numCycles: float,
860
- growthPerCycle: float,
861
- totalCycles: float,
862
- coverageTimeStep: float,
863
- evFlux: float,
864
- inFlux: float,
865
- s0: float,
866
- gasMFP: float,
867
- ) -> None: ...
868
-
869
- class SingleParticleProcess(ProcessModel):
870
- @overload
871
- def __init__(
872
- self,
873
- rate: float = ...,
874
- stickingProbability: float = ...,
875
- sourceExponent: float = ...,
876
- maskMaterial: Material = ...,
877
- ) -> None: ...
878
- @overload
879
- def __init__(
880
- self,
881
- rate: float,
882
- stickingProbability: float,
883
- sourceExponent: float,
884
- maskMaterials: list[Material],
885
- ) -> None: ...
886
- @overload
887
- def __init__(
888
- self,
889
- materialRates: dict[Material, float],
890
- stickingProbability: float,
891
- sourceExponent: float,
892
- ) -> None: ...
893
-
894
- class SphereDistribution(ProcessModel):
895
- @overload
896
- def __init__(
897
- self, radius: float, gridDelta: float, mask: viennals3d.viennals3d.Domain
898
- ) -> None: ...
899
- @overload
900
- def __init__(self, radius: float, gridDelta: float) -> None: ...
901
-
902
- class TEOSDeposition(ProcessModel):
903
- def __init__(
904
- self,
905
- stickingProbabilityP1: float,
906
- rateP1: float,
907
- orderP1: float,
908
- stickingProbabilityP2: float = ...,
909
- rateP2: float = ...,
910
- orderP2: float = ...,
911
- ) -> None: ...
912
-
913
- class TEOSPECVD(ProcessModel):
914
- def __init__(
915
- self,
916
- stickingProbabilityRadical: float,
917
- depositionRateRadical: float,
918
- depositionRateIon: float,
919
- exponentIon: float,
920
- stickingProbabilityIon: float = ...,
921
- reactionOrderRadical: float = ...,
922
- reactionOrderIon: float = ...,
923
- minAngleIon: float = ...,
924
- ) -> None: ...
925
-
926
- class Time:
927
- def __init__(self, *args, **kwargs) -> None: ...
928
- def convertMillisecond(self) -> float: ...
929
- def convertMinute(self) -> float: ...
930
- def convertSecond(self) -> float: ...
931
- @staticmethod
932
- def getInstance() -> Time: ...
933
- @staticmethod
934
- def setUnit(arg0: str) -> None: ...
935
- def toShortString(self) -> str: ...
936
- def toString(self) -> str: ...
937
-
938
- class ToDiskMesh:
939
- @overload
940
- def __init__(self, domain: Domain, mesh: viennals3d.viennals3d.Mesh) -> None: ...
941
- @overload
942
- def __init__(self) -> None: ...
943
- def setDomain(self, arg0: Domain) -> None: ...
944
- def setMesh(self, arg0: viennals3d.viennals3d.Mesh) -> None: ...
945
-
946
- class rayTraceDirection:
947
- __members__: ClassVar[dict] = ... # read-only
948
- NEG_X: ClassVar[rayTraceDirection] = ...
949
- NEG_Y: ClassVar[rayTraceDirection] = ...
950
- NEG_Z: ClassVar[rayTraceDirection] = ...
951
- POS_X: ClassVar[rayTraceDirection] = ...
952
- POS_Y: ClassVar[rayTraceDirection] = ...
953
- POS_Z: ClassVar[rayTraceDirection] = ...
954
- __entries: ClassVar[dict] = ...
955
- def __init__(self, value: int) -> None: ...
956
- def __eq__(self, other: object) -> bool: ...
957
- def __hash__(self) -> int: ...
958
- def __index__(self) -> int: ...
959
- def __int__(self) -> int: ...
960
- def __ne__(self, other: object) -> bool: ...
961
- @property
962
- def name(self) -> str: ...
963
- @property
964
- def value(self) -> int: ...
965
-
966
- def setNumThreads(arg0: int) -> None: ...