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