ViennaPS 3.7.1__cp312-cp312-macosx_11_0_arm64.whl → 3.7.2__cp312-cp312-macosx_11_0_arm64.whl

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

Potentially problematic release.


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

Files changed (38) hide show
  1. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/METADATA +17 -13
  2. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/RECORD +35 -29
  3. viennaps.libs/cmake_install.cmake +1 -1
  4. viennaps.libs/common/cmake_install.cmake +1 -1
  5. viennaps.libs/common/lexers/cmake_install.cmake +1 -1
  6. viennaps.libs/common/math/cmake_install.cmake +1 -1
  7. viennaps.libs/common/simd/cmake_install.cmake +1 -1
  8. viennaps.libs/common/sys/cmake_install.cmake +1 -1
  9. viennaps.libs/common/tasking/cmake_install.cmake +1 -1
  10. viennaps.libs/kernels/cmake_install.cmake +1 -1
  11. viennaps.libs/libembree_avx2.a +0 -0
  12. viennaps.libs/liblexers.a +0 -0
  13. viennaps.libs/libmath.a +0 -0
  14. viennaps.libs/libsimd.a +0 -0
  15. viennaps.libs/libsys.a +0 -0
  16. viennaps.libs/libtasking.a +0 -0
  17. viennaps.libs/tests/cmake_install.cmake +1 -1
  18. viennaps2d/.dylibs/libomp.dylib +0 -0
  19. viennaps2d/__init__.pyi +216 -4
  20. viennaps2d/viennaps2d/__init__.pyi +2656 -0
  21. viennaps2d/viennaps2d/constants.pyi +26 -0
  22. viennaps2d/viennaps2d/ray.pyi +34 -0
  23. viennaps2d/viennaps2d/util.pyi +10 -0
  24. viennaps2d/viennaps2d.cpython-311-darwin.so +0 -0
  25. viennaps2d/viennaps2d.cpython-312-darwin.so +0 -0
  26. viennaps3d/__init__.pyi +216 -4
  27. viennaps3d/viennaps3d/__init__.pyi +2518 -0
  28. viennaps3d/viennaps3d/constants.pyi +26 -0
  29. viennaps3d/viennaps3d/gpu.pyi +164 -0
  30. viennaps3d/viennaps3d/ray.pyi +34 -0
  31. viennaps3d/viennaps3d/util.pyi +10 -0
  32. viennaps3d/viennaps3d.cpython-311-darwin.so +0 -0
  33. viennaps3d/viennaps3d.cpython-312-darwin.so +0 -0
  34. viennaps2d/viennaps2d.pyi +0 -1423
  35. viennaps3d/gpu.pyi +0 -147
  36. viennaps3d/viennaps3d.pyi +0 -1348
  37. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/WHEEL +0 -0
  38. {viennaps-3.7.1.dist-info → viennaps-3.7.2.dist-info}/licenses/LICENSE +0 -0
viennaps2d/viennaps2d.pyi DELETED
@@ -1,1423 +0,0 @@
1
- import collections.abc
2
- import typing
3
- import viennals2d.viennals2d
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: viennals2d.viennals2d.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: viennals2d.viennals2d.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: viennals2d.viennals2d.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[viennals2d.viennals2d.Domain],
180
- materialMap: viennals2d.viennals2d.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) -> viennals2d.viennals2d.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) -> viennals2d.viennals2d.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: viennals2d.viennals2d.BoundaryConditionEnum = ...,
252
- ) -> None: ...
253
- @overload
254
- def __init__(
255
- self,
256
- gridDelta: typing.SupportsFloat,
257
- xExtent: typing.SupportsFloat,
258
- boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
259
- ) -> None: ...
260
- @overload
261
- def __init__(
262
- self, bounds, boundaryConditions, gridDelta: typing.SupportsFloat = ...
263
- ) -> None: ...
264
- @overload
265
- def addMetaData(self, arg0: str, arg1: typing.SupportsFloat) -> None: ...
266
- @overload
267
- def addMetaData(
268
- self, arg0: str, arg1: collections.abc.Sequence[typing.SupportsFloat]
269
- ) -> None: ...
270
- @overload
271
- def addMetaData(
272
- self,
273
- arg0: collections.abc.Mapping[
274
- str, collections.abc.Sequence[typing.SupportsFloat]
275
- ],
276
- ) -> None: ...
277
- def applyBooleanOperation(
278
- self, arg0: viennals2d.viennals2d.Domain, arg1
279
- ) -> None: ...
280
- def clear(self) -> None: ...
281
- def clearMetaData(self, clearDomainData: bool = ...) -> None: ...
282
- def deepCopy(self, arg0: Domain) -> None: ...
283
- @staticmethod
284
- def disableMetaData() -> None: ...
285
- def duplicateTopLevelSet(self, arg0: Material) -> None: ...
286
- @staticmethod
287
- def enableMetaData(level: MetaDataLevel = ...) -> None: ...
288
- def generateCellSet(
289
- self, arg0: typing.SupportsFloat, arg1: Material, arg2: bool
290
- ) -> None: ...
291
- def getBoundaryConditions(self, *args, **kwargs): ...
292
- def getBoundingBox(self, *args, **kwargs): ...
293
- def getCellSet(self) -> DenseCellSet: ...
294
- def getGrid(self) -> viennals2d.viennals2d.hrleGrid: ...
295
- def getGridDelta(self) -> float: ...
296
- def getLevelSets(self) -> list[viennals2d.viennals2d.Domain]: ...
297
- def getMaterialMap(self, *args, **kwargs): ...
298
- def getMetaData(self) -> dict[str, list[float]]: ...
299
- def getSetup(self, *args, **kwargs): ...
300
- def insertNextLevelSet(
301
- self, levelset: viennals2d.viennals2d.Domain, wrapLowerLevelSet: bool = ...
302
- ) -> None: ...
303
- def insertNextLevelSetAsMaterial(
304
- self,
305
- levelSet: viennals2d.viennals2d.Domain,
306
- material: Material,
307
- wrapLowerLevelSet: bool = ...,
308
- ) -> None: ...
309
- def print(self, hrleInfo: bool = ...) -> None: ...
310
- def removeLevelSet(self, arg0: typing.SupportsInt, arg1: bool) -> None: ...
311
- def removeMaterial(self, arg0: Material) -> None: ...
312
- def removeTopLevelSet(self) -> None: ...
313
- def saveHullMesh(
314
- self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
315
- ) -> None: ...
316
- def saveLevelSetMesh(
317
- self, filename: str, width: typing.SupportsInt = ...
318
- ) -> None: ...
319
- def saveLevelSets(self, filename: str) -> None: ...
320
- def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
321
- def saveVolumeMesh(
322
- self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
323
- ) -> None: ...
324
- def setMaterialMap(self, arg0) -> None: ...
325
- def setup(
326
- self,
327
- gridDelta: typing.SupportsFloat,
328
- xExtent: typing.SupportsFloat,
329
- yExtent: typing.SupportsFloat = ...,
330
- boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
331
- ) -> None: ...
332
-
333
- class Domain3D:
334
- @overload
335
- def __init__(self) -> None: ...
336
- @overload
337
- def __init__(self, domain: Domain3D) -> None: ...
338
- @overload
339
- def __init__(
340
- self,
341
- gridDelta: typing.SupportsFloat,
342
- xExtent: typing.SupportsFloat,
343
- yExtent: typing.SupportsFloat,
344
- boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
345
- ) -> None: ...
346
- def applyBooleanOperation(self, *args, **kwargs): ...
347
- def clear(self) -> None: ...
348
- def deepCopy(self, arg0: Domain3D) -> None: ...
349
- def duplicateTopLevelSet(self, arg0: Material) -> None: ...
350
- def generateCellSet(
351
- self, arg0: typing.SupportsFloat, arg1: Material, arg2: bool
352
- ) -> None: ...
353
- def getBoundaryConditions(self, *args, **kwargs): ...
354
- def getBoundingBox(self, *args, **kwargs): ...
355
- def getCellSet(self, *args, **kwargs): ...
356
- def getGrid(self, *args, **kwargs): ...
357
- def getGridDelta(self) -> float: ...
358
- def getLevelSets(self, *args, **kwargs): ...
359
- def getMaterialMap(self) -> MaterialMap: ...
360
- def getSetup(self, *args, **kwargs): ...
361
- def insertNextLevelSet(self, *args, **kwargs): ...
362
- def insertNextLevelSetAsMaterial(self, *args, **kwargs): ...
363
- def print(self, hrleInfo: bool = ...) -> None: ...
364
- def removeLevelSet(self, arg0: typing.SupportsInt, arg1: bool) -> None: ...
365
- def removeMaterial(self, arg0: Material) -> None: ...
366
- def removeTopLevelSet(self) -> None: ...
367
- def saveHullMesh(
368
- self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
369
- ) -> None: ...
370
- def saveLevelSetMesh(
371
- self, filename: str, width: typing.SupportsInt = ...
372
- ) -> None: ...
373
- def saveLevelSets(self, arg0: str) -> None: ...
374
- def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
375
- def saveVolumeMesh(
376
- self, filename: str, wrappingLayerEpsilon: typing.SupportsFloat = ...
377
- ) -> None: ...
378
- def setMaterialMap(self, arg0: MaterialMap) -> None: ...
379
- def setup(
380
- self,
381
- gridDelta: typing.SupportsFloat,
382
- xExtent: typing.SupportsFloat,
383
- yExtent: typing.SupportsFloat,
384
- boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
385
- ) -> None: ...
386
-
387
- class DomainSetup:
388
- @overload
389
- def __init__(self) -> None: ...
390
- @overload
391
- def __init__(
392
- self,
393
- gridDelta: typing.SupportsFloat,
394
- xExtent: typing.SupportsFloat,
395
- yExtent: typing.SupportsFloat,
396
- boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
397
- ) -> None: ...
398
- def boundaryCons(self, *args, **kwargs): ...
399
- def bounds(self, *args, **kwargs): ...
400
- def check(self) -> None: ...
401
- def grid(self) -> viennals2d.viennals2d.hrleGrid: ...
402
- def gridDelta(self) -> float: ...
403
- def halveXAxis(self) -> None: ...
404
- def halveYAxis(self) -> None: ...
405
- def hasPeriodicBoundary(self) -> bool: ...
406
- def isValid(self) -> bool: ...
407
- def print(self) -> None: ...
408
- def xExtent(self) -> float: ...
409
- def yExtent(self) -> float: ...
410
-
411
- class Extrude:
412
- @overload
413
- def __init__(self) -> None: ...
414
- @overload
415
- def __init__(
416
- self,
417
- inputDomain: Domain,
418
- outputDomain: Domain3D,
419
- extent,
420
- extrudeDimension: typing.SupportsInt,
421
- boundaryConditions,
422
- ) -> None: ...
423
- def apply(self) -> None: ...
424
- def setBoundaryConditions(self, arg0) -> None: ...
425
- def setExtent(self, arg0) -> None: ...
426
- def setExtrudeDimension(self, arg0: typing.SupportsInt) -> None: ...
427
- def setInputDomain(self, arg0: Domain) -> None: ...
428
- def setOutputDomain(self, arg0: Domain3D) -> None: ...
429
-
430
- class FaradayCageEtching(ProcessModel):
431
- @overload
432
- def __init__(self) -> None: ...
433
- @overload
434
- def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
435
- @overload
436
- def __init__(
437
- self,
438
- maskMaterials: collections.abc.Sequence[Material],
439
- parameters: FaradayCageParameters,
440
- ) -> None: ...
441
- def getParameters(self) -> FaradayCageParameters: ...
442
- def setParameters(self, arg0: FaradayCageParameters) -> None: ...
443
-
444
- class FaradayCageParameters:
445
- cageAngle: float
446
- ibeParams: IBEParameters
447
- def __init__(self) -> None: ...
448
-
449
- class FluorocarbonEtching(ProcessModel):
450
- @overload
451
- def __init__(self) -> None: ...
452
- @overload
453
- def __init__(
454
- self,
455
- ionFlux: typing.SupportsFloat,
456
- etchantFlux: typing.SupportsFloat,
457
- polyFlux: typing.SupportsFloat,
458
- meanIonEnergy: typing.SupportsFloat = ...,
459
- sigmaIonEnergy: typing.SupportsFloat = ...,
460
- ionExponent: typing.SupportsFloat = ...,
461
- deltaP: typing.SupportsFloat = ...,
462
- etchStopDepth: typing.SupportsFloat = ...,
463
- ) -> None: ...
464
- @overload
465
- def __init__(self, parameters: FluorocarbonParameters) -> None: ...
466
- def getParameters(self) -> FluorocarbonParameters: ...
467
- def setParameters(self, arg0: FluorocarbonParameters) -> None: ...
468
-
469
- class FluorocarbonParameters:
470
- Ions: FluorocarbonParametersIons
471
- Mask: FluorocarbonParametersMask
472
- Polymer: FluorocarbonParametersPolymer
473
- Si: FluorocarbonParametersSi
474
- Si3N4: FluorocarbonParametersSi3N4
475
- SiO2: FluorocarbonParametersSiO2
476
- delta_p: float
477
- etchStopDepth: float
478
- etchantFlux: float
479
- ionFlux: float
480
- polyFlux: float
481
- def __init__(self) -> None: ...
482
-
483
- class FluorocarbonParametersIons:
484
- exponent: float
485
- inflectAngle: float
486
- meanEnergy: float
487
- minAngle: float
488
- n_l: float
489
- sigmaEnergy: float
490
- def __init__(self) -> None: ...
491
-
492
- class FluorocarbonParametersMask:
493
- A_sp: float
494
- B_sp: float
495
- Eth_sp: float
496
- beta_e: float
497
- beta_p: float
498
- rho: float
499
- def __init__(self) -> None: ...
500
-
501
- class FluorocarbonParametersPolymer:
502
- A_ie: float
503
- Eth_ie: float
504
- rho: float
505
- def __init__(self) -> None: ...
506
-
507
- class FluorocarbonParametersSi:
508
- A_ie: float
509
- A_sp: float
510
- B_sp: float
511
- E_a: float
512
- Eth_ie: float
513
- Eth_sp: float
514
- K: float
515
- rho: float
516
- def __init__(self) -> None: ...
517
-
518
- class FluorocarbonParametersSi3N4:
519
- A_ie: float
520
- A_sp: float
521
- B_sp: float
522
- E_a: float
523
- Eth_ie: float
524
- Eth_sp: float
525
- K: float
526
- rho: float
527
- def __init__(self) -> None: ...
528
-
529
- class FluorocarbonParametersSiO2:
530
- A_ie: float
531
- A_sp: float
532
- B_sp: float
533
- E_a: float
534
- Eth_ie: float
535
- Eth_sp: float
536
- K: float
537
- rho: float
538
- def __init__(self) -> None: ...
539
-
540
- class GDSGeometry:
541
- @overload
542
- def __init__(self) -> None: ...
543
- @overload
544
- def __init__(self, gridDelta: typing.SupportsFloat) -> None: ...
545
- @overload
546
- def __init__(self, gridDelta: typing.SupportsFloat, boundaryConditions) -> None: ...
547
- def addBlur(
548
- self,
549
- sigmas: collections.abc.Sequence[typing.SupportsFloat],
550
- weights: collections.abc.Sequence[typing.SupportsFloat],
551
- threshold: typing.SupportsFloat = ...,
552
- delta: typing.SupportsFloat = ...,
553
- gridRefinement: typing.SupportsInt = ...,
554
- ) -> None: ...
555
- def getAllLayers(self) -> set[int]: ...
556
- def getBounds(self, *args, **kwargs): ...
557
- def getNumberOfStructures(self) -> int: ...
558
- def layerToLevelSet(
559
- self, layer: typing.SupportsInt, blurLayer: bool = ...
560
- ) -> viennals2d.viennals2d.Domain: ...
561
- def print(self) -> None: ...
562
- def setBoundaryConditions(
563
- self,
564
- arg0: collections.abc.Sequence[viennals2d.viennals2d.BoundaryConditionEnum],
565
- ) -> None: ...
566
- def setBoundaryPadding(
567
- self, arg0: typing.SupportsFloat, arg1: typing.SupportsFloat
568
- ) -> None: ...
569
- def setGridDelta(self, arg0: typing.SupportsFloat) -> None: ...
570
-
571
- class GDSReader:
572
- def __init__(self) -> None: ...
573
- def apply(self) -> None: ...
574
- def setFileName(self, arg0: str) -> None: ...
575
- def setGeometry(self, *args, **kwargs): ...
576
-
577
- class GeometryFactory:
578
- def __init__(self, *args, **kwargs) -> None: ...
579
- def makeBoxStencil(
580
- self,
581
- position,
582
- width: typing.SupportsFloat,
583
- height: typing.SupportsFloat,
584
- angle: typing.SupportsFloat = ...,
585
- length: typing.SupportsFloat = ...,
586
- ) -> viennals2d.viennals2d.Domain: ...
587
- def makeCylinderStencil(
588
- self,
589
- position,
590
- radius: typing.SupportsFloat,
591
- height: typing.SupportsFloat,
592
- angle: typing.SupportsFloat = ...,
593
- ) -> viennals2d.viennals2d.Domain: ...
594
- def makeMask(
595
- self, base: typing.SupportsFloat, height: typing.SupportsFloat
596
- ) -> viennals2d.viennals2d.Domain: ...
597
- def makeSubstrate(
598
- self, base: typing.SupportsFloat
599
- ) -> viennals2d.viennals2d.Domain: ...
600
-
601
- class HBrO2Etching(ProcessModel):
602
- @overload
603
- def __init__(self) -> None: ...
604
- @overload
605
- def __init__(
606
- self,
607
- ionFlux: typing.SupportsFloat,
608
- etchantFlux: typing.SupportsFloat,
609
- oxygenFlux: typing.SupportsFloat,
610
- meanIonEnergy: typing.SupportsFloat = ...,
611
- sigmaIonEnergy: typing.SupportsFloat = ...,
612
- ionExponent: typing.SupportsFloat = ...,
613
- oxySputterYield: typing.SupportsFloat = ...,
614
- etchStopDepth: typing.SupportsFloat = ...,
615
- ) -> None: ...
616
- @overload
617
- def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
618
- @staticmethod
619
- def defaultParameters() -> PlasmaEtchingParameters: ...
620
- def getParameters(self) -> PlasmaEtchingParameters: ...
621
- def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
622
-
623
- class HoleShape:
624
- __members__: ClassVar[dict] = ... # read-only
625
- FULL: ClassVar[HoleShape] = ...
626
- HALF: ClassVar[HoleShape] = ...
627
- QUARTER: ClassVar[HoleShape] = ...
628
- __entries: ClassVar[dict] = ...
629
- def __init__(self, value: typing.SupportsInt) -> None: ...
630
- def __eq__(self, other: object) -> bool: ...
631
- def __hash__(self) -> int: ...
632
- def __index__(self) -> int: ...
633
- def __int__(self) -> int: ...
634
- def __ne__(self, other: object) -> bool: ...
635
- @property
636
- def name(self) -> str: ...
637
- @property
638
- def value(self) -> int: ...
639
-
640
- class IBEParameters:
641
- exponent: float
642
- inflectAngle: float
643
- materialPlaneWaferRate: dict[Material, float]
644
- meanEnergy: float
645
- minAngle: float
646
- n_l: float
647
- planeWaferRate: float
648
- redepositionRate: float
649
- redepositionThreshold: float
650
- sigmaEnergy: float
651
- thresholdEnergy: float
652
- tiltAngle: float
653
- yieldFunction: collections.abc.Callable[[typing.SupportsFloat], float]
654
- def __init__(self) -> None: ...
655
-
656
- class Interpolation:
657
- __members__: ClassVar[dict] = ... # read-only
658
- CUSTOM: ClassVar[Interpolation] = ...
659
- IDW: ClassVar[Interpolation] = ...
660
- LINEAR: ClassVar[Interpolation] = ...
661
- __entries: ClassVar[dict] = ...
662
- def __init__(self, value: typing.SupportsInt) -> None: ...
663
- def __eq__(self, other: object) -> bool: ...
664
- def __hash__(self) -> int: ...
665
- def __index__(self) -> int: ...
666
- def __int__(self) -> int: ...
667
- def __ne__(self, other: object) -> bool: ...
668
- @property
669
- def name(self) -> str: ...
670
- @property
671
- def value(self) -> int: ...
672
-
673
- class IonBeamEtching(ProcessModel):
674
- @overload
675
- def __init__(self) -> None: ...
676
- @overload
677
- def __init__(self, maskMaterials: collections.abc.Sequence[Material]) -> None: ...
678
- @overload
679
- def __init__(
680
- self,
681
- maskMaterials: collections.abc.Sequence[Material],
682
- parameters: IBEParameters,
683
- ) -> None: ...
684
- def getParameters(self) -> IBEParameters: ...
685
- def setParameters(self, arg0: IBEParameters) -> None: ...
686
-
687
- class IsotropicProcess(ProcessModel):
688
- @overload
689
- def __init__(
690
- self, rate: typing.SupportsFloat = ..., maskMaterial: Material = ...
691
- ) -> None: ...
692
- @overload
693
- def __init__(
694
- self,
695
- rate: typing.SupportsFloat,
696
- maskMaterial: collections.abc.Sequence[Material],
697
- ) -> None: ...
698
- @overload
699
- def __init__(
700
- self,
701
- materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
702
- defaultRate: typing.SupportsFloat = ...,
703
- ) -> None: ...
704
-
705
- class Length:
706
- def __init__(self, *args, **kwargs) -> None: ...
707
- def convertAngstrom(self) -> float: ...
708
- def convertCentimeter(self) -> float: ...
709
- def convertMeter(self) -> float: ...
710
- def convertMicrometer(self) -> float: ...
711
- def convertMillimeter(self) -> float: ...
712
- def convertNanometer(self) -> float: ...
713
- @staticmethod
714
- def getInstance() -> Length: ...
715
- @staticmethod
716
- def setUnit(arg0: str) -> None: ...
717
- def toShortString(self) -> str: ...
718
- def toString(self) -> str: ...
719
-
720
- class LogLevel:
721
- __members__: ClassVar[dict] = ... # read-only
722
- DEBUG: ClassVar[LogLevel] = ...
723
- ERROR: ClassVar[LogLevel] = ...
724
- INFO: ClassVar[LogLevel] = ...
725
- INTERMEDIATE: ClassVar[LogLevel] = ...
726
- TIMING: ClassVar[LogLevel] = ...
727
- WARNING: ClassVar[LogLevel] = ...
728
- __entries: ClassVar[dict] = ...
729
- def __init__(self, value: typing.SupportsInt) -> None: ...
730
- def __eq__(self, other: object) -> bool: ...
731
- def __hash__(self) -> int: ...
732
- def __index__(self) -> int: ...
733
- def __int__(self) -> int: ...
734
- def __ne__(self, other: object) -> bool: ...
735
- @property
736
- def name(self) -> str: ...
737
- @property
738
- def value(self) -> int: ...
739
-
740
- class Logger:
741
- def __init__(self, *args, **kwargs) -> None: ...
742
- def addDebug(self, arg0: str) -> Logger: ...
743
- def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
744
- def addInfo(self, arg0: str) -> Logger: ...
745
- @overload
746
- def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
747
- @overload
748
- def addTiming(
749
- self, arg0: str, arg1: typing.SupportsFloat, arg2: typing.SupportsFloat
750
- ) -> Logger: ...
751
- def addWarning(self, arg0: str) -> Logger: ...
752
- @staticmethod
753
- def appendToLogFile(arg0: str) -> bool: ...
754
- @staticmethod
755
- def closeLogFile() -> None: ...
756
- @staticmethod
757
- def getInstance() -> Logger: ...
758
- @staticmethod
759
- def getLogLevel() -> int: ...
760
- def print(self) -> None: ...
761
- @staticmethod
762
- def setLogFile(arg0: str) -> bool: ...
763
- @staticmethod
764
- def setLogLevel(arg0: LogLevel) -> None: ...
765
-
766
- class MakeFin:
767
- @overload
768
- def __init__(
769
- self,
770
- domain: Domain,
771
- finWidth: float,
772
- finHeight: float,
773
- finTaperAngle: float = 0.0,
774
- maskHeight: float = 0.0,
775
- maskTaperAngle: float = 0.0,
776
- halfFin: bool = False,
777
- material: Material = Material.Si,
778
- maskMaterial: Material = Material.Mask,
779
- ) -> None: ...
780
- @overload
781
- def __init__(
782
- self,
783
- domain: Domain,
784
- gridDelta: float,
785
- xExtent: float,
786
- yExtent: float,
787
- finWidth: float,
788
- finHeight: float,
789
- taperAngle: float = 0.0,
790
- baseHeight: float = 0.0,
791
- periodicBoundary: bool = False,
792
- makeMask: bool = False,
793
- material: Material = Material.Si,
794
- ) -> None: ...
795
- def apply(self) -> None: ...
796
-
797
- class MakeHole:
798
- @overload
799
- def __init__(
800
- self,
801
- domain: Domain,
802
- holeRadius: float,
803
- holeDepth: float,
804
- holeTaperAngle: float = 0.0,
805
- maskHeight: float = 0.0,
806
- maskTaperAngle: float = 0.0,
807
- holeShape: HoleShape = HoleShape.Full,
808
- material: Material = Material.Si,
809
- maskMaterial: Material = Material.Mask,
810
- ) -> None: ...
811
- @overload
812
- def __init__(
813
- self,
814
- domain: Domain,
815
- gridDelta: float,
816
- xExtent: float,
817
- yExtent: float,
818
- holeRadius: float,
819
- holeDepth: float,
820
- taperingAngle: float = 0.0,
821
- baseHeight: float = 0.0,
822
- periodicBoundary: bool = False,
823
- makeMask: bool = False,
824
- material: Material = Material.Si,
825
- holeShape: HoleShape = HoleShape.Full,
826
- ) -> None: ...
827
- def apply(self) -> None: ...
828
-
829
- class MakePlane:
830
- @overload
831
- def __init__(
832
- self,
833
- domain: Domain,
834
- gridDelta: float,
835
- xExtent: float,
836
- yExtent: float,
837
- height: float = 0.0,
838
- periodicBoundary: bool = False,
839
- material: Material = Material.Si,
840
- ) -> None: ...
841
- @overload
842
- def __init__(
843
- self,
844
- domain: Domain,
845
- height: float = 0.0,
846
- material: Material = Material.Si,
847
- addToExisting: bool = False,
848
- ) -> None: ...
849
- def apply(self) -> None: ...
850
-
851
- class MakeStack:
852
- @overload
853
- def __init__(
854
- self,
855
- domain: Domain,
856
- numLayers: int,
857
- layerHeight: float,
858
- substrateHeight: float = 0,
859
- holeRadius: float = 0,
860
- trenchWidth: float = 0,
861
- maskHeight: float = 0,
862
- taperAngle: float = 0,
863
- halfStack: bool = False,
864
- maskMaterial: Material = Material.Mask,
865
- ) -> None: ...
866
- @overload
867
- def __init__(
868
- self,
869
- domain: Domain,
870
- gridDelta: float,
871
- xExtent: float,
872
- yExtent: float,
873
- numLayers: int,
874
- layerHeight: float,
875
- substrateHeight: float,
876
- holeRadius: float,
877
- trenchWidth: float,
878
- maskHeight: float,
879
- periodicBoundary: bool = False,
880
- ) -> None: ...
881
- def apply(self) -> None: ...
882
- def getHeight(self) -> float: ...
883
- def getTopLayer(self) -> int: ...
884
-
885
- class MakeTrench:
886
- @overload
887
- def __init__(
888
- self,
889
- domain: Domain,
890
- trenchWidth: float,
891
- trenchDepth: float,
892
- trenchTaperAngle: float = 0.0,
893
- maskHeight: float = 0.0,
894
- maskTaperAngle: float = 0.0,
895
- halfTrench: bool = False,
896
- material: Material = Material.Si,
897
- maskMaterial: Material = Material.Mask,
898
- ) -> None: ...
899
- @overload
900
- def __init__(
901
- self,
902
- domain: Domain,
903
- gridDelta: float,
904
- xExtent: float,
905
- yExtent: float,
906
- trenchWidth: float,
907
- trenchDepth: float,
908
- taperingAngle: float = 0.0,
909
- baseHeight: float = 0.0,
910
- periodicBoundary: bool = False,
911
- makeMask: bool = False,
912
- material: Material = Material.Si,
913
- ) -> None: ...
914
- def apply(self) -> None: ...
915
-
916
- class Material:
917
- __members__: ClassVar[dict] = ... # read-only
918
- Air: ClassVar[Material] = ...
919
- Al2O3: ClassVar[Material] = ...
920
- Cu: ClassVar[Material] = ...
921
- Dielectric: ClassVar[Material] = ...
922
- GAS: ClassVar[Material] = ...
923
- GaN: ClassVar[Material] = ...
924
- HfO2: ClassVar[Material] = ...
925
- Mask: ClassVar[Material] = ...
926
- Metal: ClassVar[Material] = ...
927
- PolySi: ClassVar[Material] = ...
928
- Polymer: ClassVar[Material] = ...
929
- Si: ClassVar[Material] = ...
930
- Si3N4: ClassVar[Material] = ...
931
- SiC: ClassVar[Material] = ...
932
- SiGe: ClassVar[Material] = ...
933
- SiN: ClassVar[Material] = ...
934
- SiO2: ClassVar[Material] = ...
935
- SiON: ClassVar[Material] = ...
936
- TiN: ClassVar[Material] = ...
937
- Undefined: ClassVar[Material] = ...
938
- W: ClassVar[Material] = ...
939
- __entries: ClassVar[dict] = ...
940
- def __init__(self, value: typing.SupportsInt) -> None: ...
941
- def __eq__(self, other: object) -> bool: ...
942
- def __hash__(self) -> int: ...
943
- def __index__(self) -> int: ...
944
- def __int__(self) -> int: ...
945
- def __ne__(self, other: object) -> bool: ...
946
- @property
947
- def name(self) -> str: ...
948
- @property
949
- def value(self) -> int: ...
950
-
951
- class MaterialMap:
952
- def __init__(self) -> None: ...
953
- def getMaterialAtIdx(self, arg0: typing.SupportsInt) -> Material: ...
954
- def getMaterialMap(self) -> viennals2d.viennals2d.MaterialMap: ...
955
- @staticmethod
956
- def getMaterialName(arg0: Material) -> str: ...
957
- def insertNextMaterial(self, material: Material = ...) -> None: ...
958
- @staticmethod
959
- def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
960
- @staticmethod
961
- def mapToMaterial(arg0: typing.SupportsFloat) -> Material: ...
962
- def size(self) -> int: ...
963
-
964
- class MetaDataLevel:
965
- __members__: ClassVar[dict] = ... # read-only
966
- FULL: ClassVar[MetaDataLevel] = ...
967
- GRID: ClassVar[MetaDataLevel] = ...
968
- NONE: ClassVar[MetaDataLevel] = ...
969
- PROCESS: ClassVar[MetaDataLevel] = ...
970
- __entries: ClassVar[dict] = ...
971
- def __init__(self, value: typing.SupportsInt) -> None: ...
972
- def __eq__(self, other: object) -> bool: ...
973
- def __hash__(self) -> int: ...
974
- def __index__(self) -> int: ...
975
- def __int__(self) -> int: ...
976
- def __ne__(self, other: object) -> bool: ...
977
- @property
978
- def name(self) -> str: ...
979
- @property
980
- def value(self) -> int: ...
981
-
982
- class MultiParticleProcess(ProcessModel):
983
- def __init__(self) -> None: ...
984
- def addIonParticle(
985
- self,
986
- sourcePower: typing.SupportsFloat,
987
- thetaRMin: typing.SupportsFloat = ...,
988
- thetaRMax: typing.SupportsFloat = ...,
989
- minAngle: typing.SupportsFloat = ...,
990
- B_sp: typing.SupportsFloat = ...,
991
- meanEnergy: typing.SupportsFloat = ...,
992
- sigmaEnergy: typing.SupportsFloat = ...,
993
- thresholdEnergy: typing.SupportsFloat = ...,
994
- inflectAngle: typing.SupportsFloat = ...,
995
- n: typing.SupportsFloat = ...,
996
- label: str = ...,
997
- ) -> None: ...
998
- @overload
999
- def addNeutralParticle(
1000
- self, stickingProbability: typing.SupportsFloat, label: str = ...
1001
- ) -> None: ...
1002
- @overload
1003
- def addNeutralParticle(
1004
- self,
1005
- materialSticking: collections.abc.Mapping[Material, typing.SupportsFloat],
1006
- defaultStickingProbability: typing.SupportsFloat = ...,
1007
- label: str = ...,
1008
- ) -> None: ...
1009
- def setRateFunction(
1010
- self,
1011
- arg0: collections.abc.Callable[
1012
- [collections.abc.Sequence[typing.SupportsFloat], Material], float
1013
- ],
1014
- ) -> None: ...
1015
-
1016
- class NormalizationType:
1017
- __members__: ClassVar[dict] = ... # read-only
1018
- MAX: ClassVar[NormalizationType] = ...
1019
- SOURCE: ClassVar[NormalizationType] = ...
1020
- __entries: ClassVar[dict] = ...
1021
- def __init__(self, value: typing.SupportsInt) -> None: ...
1022
- def __eq__(self, other: object) -> bool: ...
1023
- def __hash__(self) -> int: ...
1024
- def __index__(self) -> int: ...
1025
- def __int__(self) -> int: ...
1026
- def __ne__(self, other: object) -> bool: ...
1027
- @property
1028
- def name(self) -> str: ...
1029
- @property
1030
- def value(self) -> int: ...
1031
-
1032
- class OxideRegrowth(ProcessModel):
1033
- def __init__(
1034
- self,
1035
- nitrideEtchRate: typing.SupportsFloat,
1036
- oxideEtchRate: typing.SupportsFloat,
1037
- redepositionRate: typing.SupportsFloat,
1038
- redepositionThreshold: typing.SupportsFloat,
1039
- redepositionTimeInt: typing.SupportsFloat,
1040
- diffusionCoefficient: typing.SupportsFloat,
1041
- sinkStrength: typing.SupportsFloat,
1042
- scallopVelocity: typing.SupportsFloat,
1043
- centerVelocity: typing.SupportsFloat,
1044
- topHeight: typing.SupportsFloat,
1045
- centerWidth: typing.SupportsFloat,
1046
- stabilityFactor: typing.SupportsFloat,
1047
- ) -> None: ...
1048
-
1049
- class Particle:
1050
- def __init__(self, *args, **kwargs) -> None: ...
1051
- def getLocalDataLabels(self) -> list[str]: ...
1052
- def getSourceDistributionPower(self) -> float: ...
1053
- def initNew(self, arg0) -> None: ...
1054
- def surfaceCollision(
1055
- self,
1056
- arg0: typing.SupportsFloat,
1057
- arg1,
1058
- arg2,
1059
- arg3: typing.SupportsInt,
1060
- arg4: typing.SupportsInt,
1061
- arg5,
1062
- arg6,
1063
- arg7,
1064
- ) -> None: ...
1065
- def surfaceReflection(self, *args, **kwargs): ...
1066
-
1067
- class Planarize:
1068
- @overload
1069
- def __init__(self) -> None: ...
1070
- @overload
1071
- def __init__(
1072
- self, geometry: Domain, cutoffHeight: typing.SupportsFloat = ...
1073
- ) -> None: ...
1074
- def apply(self) -> None: ...
1075
- def setCutoffPosition(self, arg0: typing.SupportsFloat) -> None: ...
1076
- def setDomain(self, arg0: Domain) -> None: ...
1077
-
1078
- class PlasmaEtchingParameters:
1079
- Ions: PlasmaEtchingParametersIons
1080
- Mask: PlasmaEtchingParametersMask
1081
- Passivation: PlasmaEtchingParametersPassivation
1082
- Substrate: PlasmaEtchingParametersSubstrate
1083
- beta_E: dict[int, float]
1084
- beta_P: dict[int, float]
1085
- etchStopDepth: float
1086
- etchantFlux: float
1087
- ionFlux: float
1088
- passivationFlux: float
1089
- def __init__(self) -> None: ...
1090
-
1091
- class PlasmaEtchingParametersIons:
1092
- exponent: float
1093
- inflectAngle: float
1094
- meanEnergy: float
1095
- minAngle: float
1096
- n_l: float
1097
- sigmaEnergy: float
1098
- thetaRMax: float
1099
- thetaRMin: float
1100
- def __init__(self) -> None: ...
1101
-
1102
- class PlasmaEtchingParametersMask:
1103
- A_sp: float
1104
- B_sp: float
1105
- Eth_sp: float
1106
- rho: float
1107
- def __init__(self) -> None: ...
1108
-
1109
- class PlasmaEtchingParametersPassivation:
1110
- A_ie: float
1111
- Eth_ie: float
1112
- def __init__(self) -> None: ...
1113
-
1114
- class PlasmaEtchingParametersPolymer:
1115
- A_sp: float
1116
- B_sp: float
1117
- Eth_sp: float
1118
- rho: float
1119
- def __init__(self) -> None: ...
1120
-
1121
- class PlasmaEtchingParametersSubstrate:
1122
- A_ie: float
1123
- A_sp: float
1124
- B_ie: float
1125
- B_sp: float
1126
- Eth_ie: float
1127
- Eth_sp: float
1128
- beta_sigma: float
1129
- k_sigma: float
1130
- rho: float
1131
- def __init__(self) -> None: ...
1132
-
1133
- class Process:
1134
- def __init__(self) -> None: ...
1135
- def apply(self) -> None: ...
1136
- def calculateFlux(self) -> viennals2d.viennals2d.Mesh: ...
1137
- def disableAdvectionVelocityOutput(self) -> None: ...
1138
- def disableFluxSmoothing(self) -> None: ...
1139
- def disableRandomSeeds(self) -> None: ...
1140
- def enableAdvectionVelocityOutput(self) -> None: ...
1141
- def enableFluxSmoothing(self) -> None: ...
1142
- def enableRandomSeeds(self) -> None: ...
1143
- def getAdvectionParameters(self) -> AdvectionParameters: ...
1144
- def getProcessDuration(self) -> float: ...
1145
- def getRayTracingParameters(self) -> RayTracingParameters: ...
1146
- def setAdvectionParameters(self, arg0: AdvectionParameters) -> None: ...
1147
- def setCoverageDeltaThreshold(self, arg0: typing.SupportsFloat) -> None: ...
1148
- def setDomain(self, *args, **kwargs): ...
1149
- def setIntegrationScheme(
1150
- self, arg0: viennals2d.viennals2d.IntegrationSchemeEnum
1151
- ) -> None: ...
1152
- def setMaxCoverageInitIterations(self, arg0: typing.SupportsInt) -> None: ...
1153
- def setNumberOfRaysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
1154
- def setProcessDuration(self, arg0: typing.SupportsFloat) -> None: ...
1155
- def setProcessModel(self, arg0: ProcessModel) -> None: ...
1156
- def setRayTracingDiskRadius(self, arg0: typing.SupportsFloat) -> None: ...
1157
- def setRayTracingParameters(self, arg0: RayTracingParameters) -> None: ...
1158
- def setSourceDirection(self, arg0) -> None: ...
1159
- def setTimeStepRatio(self, arg0: typing.SupportsFloat) -> None: ...
1160
-
1161
- class ProcessModel:
1162
- def __init__(self) -> None: ...
1163
- def getAdvectionCallback(self, *args, **kwargs): ...
1164
- def getGeometricModel(self, *args, **kwargs): ...
1165
- def getParticleLogSize(self, arg0: typing.SupportsInt) -> int: ...
1166
- def getParticleTypes(self, *args, **kwargs): ...
1167
- def getPrimaryDirection(self, *args, **kwargs): ...
1168
- def getProcessName(self) -> str | None: ...
1169
- def getSurfaceModel(self, *args, **kwargs): ...
1170
- def getVelocityField(self, *args, **kwargs): ...
1171
- def insertNextParticleType(self, arg0) -> None: ...
1172
- def setAdvectionCallback(self, *args, **kwargs): ...
1173
- def setGeometricModel(self, *args, **kwargs): ...
1174
- def setPrimaryDirection(self, arg0) -> None: ...
1175
- def setProcessName(self, arg0: str) -> None: ...
1176
- def setSurfaceModel(self, arg0) -> None: ...
1177
- def setVelocityField(self, *args, **kwargs): ...
1178
-
1179
- class ProcessParams:
1180
- def __init__(self) -> None: ...
1181
- @overload
1182
- def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1183
- @overload
1184
- def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
1185
- @overload
1186
- def getScalarData(self, arg0: str) -> float: ...
1187
- @overload
1188
- def getScalarData(self) -> list[float]: ...
1189
- @overload
1190
- def getScalarData(self) -> list[float]: ...
1191
- def getScalarDataIndex(self, arg0: str) -> int: ...
1192
- def getScalarDataLabel(self, arg0: typing.SupportsInt) -> str: ...
1193
- def insertNextScalar(self, arg0: typing.SupportsFloat, arg1: str) -> None: ...
1194
-
1195
- class RateGrid:
1196
- def __init__(self) -> None: ...
1197
- def interpolate(self, coord) -> float: ...
1198
- def loadFromCSV(self, filename: str) -> bool: ...
1199
- def setCustomInterpolator(self, function: collections.abc.Callable) -> None: ...
1200
- def setIDWNeighbors(self, k: typing.SupportsInt) -> None: ...
1201
- @overload
1202
- def setInterpolationMode(self, mode: Interpolation) -> None: ...
1203
- @overload
1204
- def setInterpolationMode(self, mode: str) -> None: ...
1205
- def setOffset(self, offset) -> None: ...
1206
-
1207
- class RateSet:
1208
- calculateVisibility: bool
1209
- direction: Incomplete
1210
- directionalVelocity: float
1211
- isotropicVelocity: float
1212
- maskMaterials: list[Material]
1213
- def __init__(
1214
- self,
1215
- direction=...,
1216
- directionalVelocity: typing.SupportsFloat = ...,
1217
- isotropicVelocity: typing.SupportsFloat = ...,
1218
- maskMaterials: collections.abc.Sequence[Material] = ...,
1219
- calculateVisibility: bool = ...,
1220
- ) -> None: ...
1221
- def print(self) -> None: ...
1222
-
1223
- class RayTracingParameters:
1224
- diskRadius: float
1225
- ignoreFluxBoundaries: bool
1226
- normalizationType: NormalizationType
1227
- raysPerPoint: int
1228
- smoothingNeighbors: int
1229
- sourceDirection: Incomplete
1230
- useRandomSeeds: bool
1231
- def __init__(self) -> None: ...
1232
- def toMetaData(self) -> dict[str, list[float]]: ...
1233
- def toMetaDataString(self) -> str: ...
1234
-
1235
- class Reader:
1236
- @overload
1237
- def __init__(self) -> None: ...
1238
- @overload
1239
- def __init__(self, fileName: str) -> None: ...
1240
- def apply(self) -> None: ...
1241
- def setFileName(self, arg0: str) -> None: ...
1242
-
1243
- class SF6C4F8Etching(ProcessModel):
1244
- @overload
1245
- def __init__(self) -> None: ...
1246
- @overload
1247
- def __init__(
1248
- self,
1249
- ionFlux: typing.SupportsFloat,
1250
- etchantFlux: typing.SupportsFloat,
1251
- meanEnergy: typing.SupportsFloat,
1252
- sigmaEnergy: typing.SupportsFloat,
1253
- ionExponent: typing.SupportsFloat = ...,
1254
- etchStopDepth: typing.SupportsFloat = ...,
1255
- ) -> None: ...
1256
- @overload
1257
- def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
1258
- @staticmethod
1259
- def defaultParameters() -> PlasmaEtchingParameters: ...
1260
- def getParameters(self) -> PlasmaEtchingParameters: ...
1261
- def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
1262
-
1263
- class SF6O2Etching(ProcessModel):
1264
- @overload
1265
- def __init__(self) -> None: ...
1266
- @overload
1267
- def __init__(
1268
- self,
1269
- ionFlux: typing.SupportsFloat,
1270
- etchantFlux: typing.SupportsFloat,
1271
- oxygenFlux: typing.SupportsFloat,
1272
- meanIonEnergy: typing.SupportsFloat = ...,
1273
- sigmaIonEnergy: typing.SupportsFloat = ...,
1274
- ionExponent: typing.SupportsFloat = ...,
1275
- oxySputterYield: typing.SupportsFloat = ...,
1276
- etchStopDepth: typing.SupportsFloat = ...,
1277
- ) -> None: ...
1278
- @overload
1279
- def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
1280
- @staticmethod
1281
- def defaultParameters() -> PlasmaEtchingParameters: ...
1282
- def getParameters(self) -> PlasmaEtchingParameters: ...
1283
- def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
1284
-
1285
- class SelectiveEpitaxy(ProcessModel):
1286
- def __init__(
1287
- self,
1288
- materialRates: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
1289
- rate111: typing.SupportsFloat = ...,
1290
- rate100: typing.SupportsFloat = ...,
1291
- ) -> None: ...
1292
-
1293
- class SingleParticleALD(ProcessModel):
1294
- def __init__(
1295
- self,
1296
- stickingProbability: typing.SupportsFloat,
1297
- numCycles: typing.SupportsFloat,
1298
- growthPerCycle: typing.SupportsFloat,
1299
- totalCycles: typing.SupportsFloat,
1300
- coverageTimeStep: typing.SupportsFloat,
1301
- evFlux: typing.SupportsFloat,
1302
- inFlux: typing.SupportsFloat,
1303
- s0: typing.SupportsFloat,
1304
- gasMFP: typing.SupportsFloat,
1305
- ) -> None: ...
1306
-
1307
- class SingleParticleProcess(ProcessModel):
1308
- @overload
1309
- def __init__(
1310
- self,
1311
- rate: typing.SupportsFloat = ...,
1312
- stickingProbability: typing.SupportsFloat = ...,
1313
- sourceExponent: typing.SupportsFloat = ...,
1314
- maskMaterial: Material = ...,
1315
- ) -> None: ...
1316
- @overload
1317
- def __init__(
1318
- self,
1319
- rate: typing.SupportsFloat,
1320
- stickingProbability: typing.SupportsFloat,
1321
- sourceExponent: typing.SupportsFloat,
1322
- maskMaterials: collections.abc.Sequence[Material],
1323
- ) -> None: ...
1324
- @overload
1325
- def __init__(
1326
- self,
1327
- materialRates: collections.abc.Mapping[Material, typing.SupportsFloat],
1328
- stickingProbability: typing.SupportsFloat,
1329
- sourceExponent: typing.SupportsFloat,
1330
- ) -> None: ...
1331
-
1332
- class SphereDistribution(ProcessModel):
1333
- @overload
1334
- def __init__(
1335
- self,
1336
- radius: typing.SupportsFloat,
1337
- gridDelta: typing.SupportsFloat,
1338
- mask: viennals2d.viennals2d.Domain,
1339
- ) -> None: ...
1340
- @overload
1341
- def __init__(
1342
- self, radius: typing.SupportsFloat, gridDelta: typing.SupportsFloat
1343
- ) -> None: ...
1344
-
1345
- class StencilLocalLaxFriedrichsScalar:
1346
- def __init__(self, *args, **kwargs) -> None: ...
1347
- @staticmethod
1348
- def setMaxDissipation(maxDissipation: typing.SupportsFloat) -> None: ...
1349
-
1350
- class TEOSDeposition(ProcessModel):
1351
- def __init__(
1352
- self,
1353
- stickingProbabilityP1: typing.SupportsFloat,
1354
- rateP1: typing.SupportsFloat,
1355
- orderP1: typing.SupportsFloat,
1356
- stickingProbabilityP2: typing.SupportsFloat = ...,
1357
- rateP2: typing.SupportsFloat = ...,
1358
- orderP2: typing.SupportsFloat = ...,
1359
- ) -> None: ...
1360
-
1361
- class TEOSPECVD(ProcessModel):
1362
- def __init__(
1363
- self,
1364
- stickingProbabilityRadical: typing.SupportsFloat,
1365
- depositionRateRadical: typing.SupportsFloat,
1366
- depositionRateIon: typing.SupportsFloat,
1367
- exponentIon: typing.SupportsFloat,
1368
- stickingProbabilityIon: typing.SupportsFloat = ...,
1369
- reactionOrderRadical: typing.SupportsFloat = ...,
1370
- reactionOrderIon: typing.SupportsFloat = ...,
1371
- minAngleIon: typing.SupportsFloat = ...,
1372
- ) -> None: ...
1373
-
1374
- class Time:
1375
- def __init__(self, *args, **kwargs) -> None: ...
1376
- def convertMillisecond(self) -> float: ...
1377
- def convertMinute(self) -> float: ...
1378
- def convertSecond(self) -> float: ...
1379
- @staticmethod
1380
- def getInstance() -> Time: ...
1381
- @staticmethod
1382
- def setUnit(arg0: str) -> None: ...
1383
- def toShortString(self) -> str: ...
1384
- def toString(self) -> str: ...
1385
-
1386
- class ToDiskMesh:
1387
- @overload
1388
- def __init__(self, domain: Domain, mesh: viennals2d.viennals2d.Mesh) -> None: ...
1389
- @overload
1390
- def __init__(self) -> None: ...
1391
- def setDomain(self, arg0: Domain) -> None: ...
1392
- def setMesh(self, arg0: viennals2d.viennals2d.Mesh) -> None: ...
1393
-
1394
- class WetEtching(ProcessModel):
1395
- @overload
1396
- def __init__(
1397
- self,
1398
- materialRates: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
1399
- ) -> None: ...
1400
- @overload
1401
- def __init__(
1402
- self,
1403
- direction100,
1404
- direction010,
1405
- rate100: typing.SupportsFloat,
1406
- rate110: typing.SupportsFloat,
1407
- rate111: typing.SupportsFloat,
1408
- rate311: typing.SupportsFloat,
1409
- materialRates: collections.abc.Sequence[tuple[Material, typing.SupportsFloat]],
1410
- ) -> None: ...
1411
-
1412
- class Writer:
1413
- @overload
1414
- def __init__(self) -> None: ...
1415
- @overload
1416
- def __init__(self, domain: Domain) -> None: ...
1417
- @overload
1418
- def __init__(self, domain: Domain, fileName: str) -> None: ...
1419
- def apply(self) -> None: ...
1420
- def setDomain(self, arg0: Domain) -> None: ...
1421
- def setFileName(self, arg0: str) -> None: ...
1422
-
1423
- def setNumThreads(arg0: typing.SupportsInt) -> None: ...