-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathviennaps2d.pyi
More file actions
1287 lines (1209 loc) · 39.7 KB
/
Copy pathviennaps2d.pyi
File metadata and controls
1287 lines (1209 loc) · 39.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import viennals2d.viennals2d
from _typeshed import Incomplete
from typing import Callable, ClassVar, overload
D: int
__version__: str
version: str
class AdvectionCallback:
domain: Incomplete
def __init__(self) -> None: ...
def applyPostAdvect(self, arg0: float) -> bool: ...
def applyPreAdvect(self, arg0: float) -> bool: ...
class AdvectionParameters:
checkDissipation: bool
dissipationAlpha: float
ignoreVoids: bool
integrationScheme: viennals2d.viennals2d.IntegrationSchemeEnum
timeStepRatio: float
velocityOutput: bool
def __init__(self) -> None: ...
class AnisotropicProcess(ProcessModel):
@overload
def __init__(self, materials: list[tuple[Material, float]]) -> None: ...
@overload
def __init__(
self,
direction100,
direction010,
rate100: float,
rate110: float,
rate111: float,
rate311: float,
materials: list[tuple[Material, float]],
) -> None: ...
class AtomicLayerProcess:
def __init__(self) -> None: ...
def apply(self) -> None: ...
def disableRandomSeeds(self) -> None: ...
def enableRandomSeeds(self) -> None: ...
def setCoverageTimeStep(self, arg0: float) -> None: ...
def setDesorptionRates(self, arg0: list[float]) -> None: ...
def setDomain(self, *args, **kwargs): ...
def setIntegrationScheme(
self, arg0: viennals2d.viennals2d.IntegrationSchemeEnum
) -> None: ...
def setNumCycles(self, arg0: int) -> None: ...
def setNumberOfRaysPerPoint(self, arg0: int) -> None: ...
def setProcessModel(self, arg0: ProcessModel) -> None: ...
def setPulseTime(self, arg0: float) -> None: ...
def setSourceDirection(self, arg0) -> None: ...
class BoxDistribution(ProcessModel):
@overload
def __init__(
self, halfAxes, gridDelta: float, mask: viennals2d.viennals2d.Domain
) -> None: ...
@overload
def __init__(self, halfAxes, gridDelta: float) -> None: ...
class CF4O2Etching(ProcessModel):
@overload
def __init__(self) -> None: ...
@overload
def __init__(
self,
ionFlux: float,
etchantFlux: float,
oxygenFlux: float,
polymerFlux: float,
meanIonEnergy: float = ...,
sigmaIonEnergy: float = ...,
ionExponent: float = ...,
oxySputterYield: float = ...,
polySputterYield: float = ...,
etchStopDepth: float = ...,
) -> None: ...
@overload
def __init__(self, parameters: CF4O2Parameters) -> None: ...
def getParameters(self) -> CF4O2Parameters: ...
def setParameters(self, arg0: CF4O2Parameters) -> None: ...
class CF4O2Parameters:
Ions: CF4O2ParametersIons
Mask: CF4O2ParametersMask
Passivation: CF4O2ParametersPassivation
Si: CF4O2ParametersSi
SiGe: CF4O2ParametersSiGe
etchStopDepth: float
etchantFlux: float
fluxIncludeSticking: bool
gamma_C: dict[Material, float]
gamma_C_oxidized: dict[Material, float]
gamma_F: dict[Material, float]
gamma_F_oxidized: dict[Material, float]
gamma_O: dict[Material, float]
gamma_O_passivated: dict[Material, float]
ionFlux: float
oxygenFlux: float
polymerFlux: float
def __init__(self) -> None: ...
class CF4O2ParametersIons:
exponent: float
inflectAngle: float
meanEnergy: float
minAngle: float
n_l: float
sigmaEnergy: float
def __init__(self) -> None: ...
class CF4O2ParametersMask:
A_sp: float
Eth_sp: float
rho: float
def __init__(self) -> None: ...
class CF4O2ParametersPassivation:
A_C_ie: float
A_O_ie: float
Eth_C_ie: float
Eth_O_ie: float
def __init__(self) -> None: ...
class CF4O2ParametersSi:
A_ie: float
A_sp: float
Eth_ie: float
Eth_sp: float
beta_sigma: float
k_sigma: float
rho: float
def __init__(self) -> None: ...
class CF4O2ParametersSiGe:
A_ie: float
A_sp: float
Eth_ie: float
Eth_sp: float
beta_sigma: float
k_sigma: float
rho: float
x: float
def __init__(self) -> None: ...
def k_sigma_SiGe(self, arg0: float) -> float: ...
class CSVFileProcess(ProcessModel):
def __init__(
self,
ratesFile: str,
direction,
offset,
isotropicComponent: float = ...,
directionalComponent: float = ...,
maskMaterials: list[Material] = ...,
calculateVisibility: bool = ...,
) -> None: ...
def setCustomInterpolator(self, function: Callable) -> None: ...
def setIDWNeighbors(self, k: int = ...) -> None: ...
@overload
def setInterpolationMode(self, mode: Interpolation) -> None: ...
@overload
def setInterpolationMode(self, mode: str) -> None: ...
def setOffset(self, offset) -> None: ...
class DenseCellSet:
def __init__(self) -> None: ...
@overload
def addFillingFraction(self, arg0: int, arg1: float) -> bool: ...
@overload
def addFillingFraction(self, arg0, arg1: float) -> bool: ...
def addFillingFractionInMaterial(self, arg0, arg1: float, arg2: int) -> bool: ...
def addScalarData(self, arg0: str, arg1: float) -> None: ...
def buildNeighborhood(self, forceRebuild: bool = ...) -> None: ...
def clear(self) -> None: ...
def fromLevelSets(
self,
levelSets: list[viennals2d.viennals2d.Domain],
materialMap: viennals2d.viennals2d.MaterialMap = ...,
depth: float = ...,
) -> None: ...
def getAverageFillingFraction(self, arg0, arg1: float) -> float: ...
def getBoundingBox(self, *args, **kwargs): ...
def getCellCenter(self, *args, **kwargs): ...
def getCellGrid(self) -> viennals2d.viennals2d.Mesh: ...
def getDepth(self) -> float: ...
def getElement(self, *args, **kwargs): ...
def getElements(self, *args, **kwargs): ...
def getFillingFraction(self, arg0) -> float: ...
def getFillingFractions(self) -> list[float]: ...
def getGridDelta(self) -> float: ...
def getIndex(self, arg0) -> int: ...
def getNeighbors(self, *args, **kwargs): ...
def getNode(self, *args, **kwargs): ...
def getNodes(self, *args, **kwargs): ...
def getNumberOfCells(self) -> int: ...
def getScalarData(self, arg0: str) -> list[float]: ...
def getScalarDataLabels(self) -> list[str]: ...
def getSurface(self) -> viennals2d.viennals2d.Domain: ...
def readCellSetData(self, arg0: str) -> None: ...
def setCellSetPosition(self, arg0: bool) -> None: ...
def setCoverMaterial(self, arg0: int) -> None: ...
@overload
def setFillingFraction(self, arg0: int, arg1: float) -> bool: ...
@overload
def setFillingFraction(self, arg0, arg1: float) -> bool: ...
def setPeriodicBoundary(self, arg0) -> None: ...
def updateMaterials(self) -> None: ...
def updateSurface(self) -> None: ...
def writeCellSetData(self, arg0: str) -> None: ...
def writeVTU(self, arg0: str) -> None: ...
class DirectionalProcess(ProcessModel):
@overload
def __init__(
self,
direction,
directionalVelocity: float,
isotropicVelocity: float = ...,
maskMaterial: Material = ...,
calculateVisibility: bool = ...,
) -> None: ...
@overload
def __init__(
self,
direction,
directionalVelocity: float,
isotropicVelocity: float,
maskMaterial: list[Material],
calculateVisibility: bool = ...,
) -> None: ...
@overload
def __init__(self, rateSets: list[RateSet]) -> None: ...
@overload
def __init__(self, rateSet: RateSet) -> None: ...
class Domain:
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, domain: Domain) -> None: ...
@overload
def __init__(
self,
gridDelta: float,
xExtent: float,
yExtent: float,
boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
) -> None: ...
@overload
def __init__(
self,
gridDelta: float,
xExtent: float,
boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
) -> None: ...
def applyBooleanOperation(
self, arg0: viennals2d.viennals2d.Domain, arg1
) -> None: ...
def clear(self) -> None: ...
def deepCopy(self, arg0: Domain) -> None: ...
def duplicateTopLevelSet(self, arg0: Material) -> None: ...
def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
def getBoundaryConditions(self, *args, **kwargs): ...
def getBoundingBox(self, *args, **kwargs): ...
def getCellSet(self) -> DenseCellSet: ...
def getGrid(self) -> viennals2d.viennals2d.hrleGrid: ...
def getGridDelta(self) -> float: ...
def getLevelSets(self) -> list[viennals2d.viennals2d.Domain]: ...
def getMaterialMap(self, *args, **kwargs): ...
def getSetup(self, *args, **kwargs): ...
def insertNextLevelSet(
self, levelset: viennals2d.viennals2d.Domain, wrapLowerLevelSet: bool = ...
) -> None: ...
def insertNextLevelSetAsMaterial(
self,
levelSet: viennals2d.viennals2d.Domain,
material: Material,
wrapLowerLevelSet: bool = ...,
) -> None: ...
def print(self) -> None: ...
def removeLevelSet(self, arg0: int, arg1: bool) -> None: ...
def removeMaterial(self, arg0: Material) -> None: ...
def removeTopLevelSet(self) -> None: ...
def saveHullMesh(
self, filename: str, wrappingLayerEpsilon: float = ...
) -> None: ...
def saveLevelSetMesh(self, filename: str, width: int = ...) -> None: ...
def saveLevelSets(self, filename: str) -> None: ...
def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
def saveVolumeMesh(
self, filename: str, wrappingLayerEpsilon: float = ...
) -> None: ...
def setMaterialMap(self, arg0) -> None: ...
def setup(
self,
gridDelta: float,
xExtent: float,
yExtent: float = ...,
boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
) -> None: ...
class Domain3D:
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, domain: Domain3D) -> None: ...
@overload
def __init__(
self,
gridDelta: float,
xExtent: float,
yExtent: float,
boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
) -> None: ...
def applyBooleanOperation(self, *args, **kwargs): ...
def clear(self) -> None: ...
def deepCopy(self, arg0: Domain3D) -> None: ...
def duplicateTopLevelSet(self, arg0: Material) -> None: ...
def generateCellSet(self, arg0: float, arg1: Material, arg2: bool) -> None: ...
def getBoundaryConditions(self, *args, **kwargs): ...
def getBoundingBox(self, *args, **kwargs): ...
def getCellSet(self, *args, **kwargs): ...
def getGrid(self, *args, **kwargs): ...
def getGridDelta(self) -> float: ...
def getLevelSets(self, *args, **kwargs): ...
def getMaterialMap(self) -> MaterialMap: ...
def getSetup(self, *args, **kwargs): ...
def insertNextLevelSet(self, *args, **kwargs): ...
def insertNextLevelSetAsMaterial(self, *args, **kwargs): ...
def print(self) -> None: ...
def removeLevelSet(self, arg0: int, arg1: bool) -> None: ...
def removeMaterial(self, arg0: Material) -> None: ...
def removeTopLevelSet(self) -> None: ...
def saveHullMesh(
self, filename: str, wrappingLayerEpsilon: float = ...
) -> None: ...
def saveLevelSetMesh(self, filename: str, width: int = ...) -> None: ...
def saveLevelSets(self, arg0: str) -> None: ...
def saveSurfaceMesh(self, filename: str, addMaterialIds: bool = ...) -> None: ...
def saveVolumeMesh(
self, filename: str, wrappingLayerEpsilon: float = ...
) -> None: ...
def setMaterialMap(self, arg0: MaterialMap) -> None: ...
def setup(
self,
gridDelta: float,
xExtent: float,
yExtent: float,
boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
) -> None: ...
class DomainSetup:
@overload
def __init__(self) -> None: ...
@overload
def __init__(
self,
gridDelta: float,
xExtent: float,
yExtent: float,
boundary: viennals2d.viennals2d.BoundaryConditionEnum = ...,
) -> None: ...
def boundaryCons(self, *args, **kwargs): ...
def bounds(self, *args, **kwargs): ...
def check(self) -> None: ...
def grid(self) -> viennals2d.viennals2d.hrleGrid: ...
def gridDelta(self) -> float: ...
def halveXAxis(self) -> None: ...
def halveYAxis(self) -> None: ...
def hasPeriodicBoundary(self) -> bool: ...
def isValid(self) -> bool: ...
def print(self) -> None: ...
def xExtent(self) -> float: ...
def yExtent(self) -> float: ...
class Extrude:
@overload
def __init__(self) -> None: ...
@overload
def __init__(
self,
inputDomain: Domain,
outputDomain: Domain3D,
extent,
extrudeDimension: int,
boundaryConditions,
) -> None: ...
def apply(self) -> None: ...
def setBoundaryConditions(self, arg0) -> None: ...
def setExtent(self, arg0) -> None: ...
def setExtrudeDimension(self, arg0: int) -> None: ...
def setInputDomain(self, arg0: Domain) -> None: ...
def setOutputDomain(self, arg0: Domain3D) -> None: ...
class FaradayCageEtching(ProcessModel):
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, maskMaterials: list[Material]) -> None: ...
@overload
def __init__(
self, maskMaterials: list[Material], parameters: FaradayCageParameters
) -> None: ...
def getParameters(self) -> FaradayCageParameters: ...
def setParameters(self, arg0: FaradayCageParameters) -> None: ...
class FaradayCageParameters:
cageAngle: float
ibeParams: IBEParameters
def __init__(self) -> None: ...
class FluorocarbonEtching(ProcessModel):
@overload
def __init__(self) -> None: ...
@overload
def __init__(
self,
ionFlux: float,
etchantFlux: float,
polyFlux: float,
meanIonEnergy: float = ...,
sigmaIonEnergy: float = ...,
ionExponent: float = ...,
deltaP: float = ...,
etchStopDepth: float = ...,
) -> None: ...
@overload
def __init__(self, parameters: FluorocarbonParameters) -> None: ...
def getParameters(self) -> FluorocarbonParameters: ...
def setParameters(self, arg0: FluorocarbonParameters) -> None: ...
class FluorocarbonParameters:
Ions: FluorocarbonParametersIons
Mask: FluorocarbonParametersMask
Polymer: FluorocarbonParametersPolymer
Si: FluorocarbonParametersSi
Si3N4: FluorocarbonParametersSi3N4
SiO2: FluorocarbonParametersSiO2
delta_p: float
etchStopDepth: float
etchantFlux: float
ionFlux: float
polyFlux: float
def __init__(self) -> None: ...
class FluorocarbonParametersIons:
exponent: float
inflectAngle: float
meanEnergy: float
minAngle: float
n_l: float
sigmaEnergy: float
def __init__(self) -> None: ...
class FluorocarbonParametersMask:
A_sp: float
B_sp: float
Eth_sp: float
beta_e: float
beta_p: float
rho: float
def __init__(self) -> None: ...
class FluorocarbonParametersPolymer:
A_ie: float
Eth_ie: float
rho: float
def __init__(self) -> None: ...
class FluorocarbonParametersSi:
A_ie: float
A_sp: float
B_sp: float
E_a: float
Eth_ie: float
Eth_sp: float
K: float
rho: float
def __init__(self) -> None: ...
class FluorocarbonParametersSi3N4:
A_ie: float
A_sp: float
B_sp: float
E_a: float
Eth_ie: float
Eth_sp: float
K: float
rho: float
def __init__(self) -> None: ...
class FluorocarbonParametersSiO2:
A_ie: float
A_sp: float
B_sp: float
E_a: float
Eth_ie: float
Eth_sp: float
K: float
rho: float
def __init__(self) -> None: ...
class GDSGeometry:
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, gridDelta: float) -> None: ...
@overload
def __init__(self, gridDelta: float, boundaryConditions) -> None: ...
def addBlur(
self,
sigmas: list[float],
weights: list[float],
threshold: float = ...,
delta: float = ...,
gridRefinement: int = ...,
) -> None: ...
def getAllLayers(self) -> set[int]: ...
def getBounds(self, *args, **kwargs): ...
def getNumberOfStructures(self) -> int: ...
def layerToLevelSet(
self, layer: int, blurLayer: bool = ...
) -> viennals2d.viennals2d.Domain: ...
def print(self) -> None: ...
def setBoundaryConditions(
self, arg0: list[viennals2d.viennals2d.BoundaryConditionEnum]
) -> None: ...
def setBoundaryPadding(self, arg0: float, arg1: float) -> None: ...
def setGridDelta(self, arg0: float) -> None: ...
class GDSReader:
def __init__(self) -> None: ...
def apply(self) -> None: ...
def setFileName(self, arg0: str) -> None: ...
def setGeometry(self, *args, **kwargs): ...
class GeometryFactory:
def __init__(self, *args, **kwargs) -> None: ...
def makeBoxStencil(
self, position, width: float, height: float, angle: float
) -> viennals2d.viennals2d.Domain: ...
def makeCylinderStencil(
self, position, radius: float, height: float, angle: float
) -> viennals2d.viennals2d.Domain: ...
def makeMask(self, base: float, height: float) -> viennals2d.viennals2d.Domain: ...
def makeSubstrate(self, base: float) -> viennals2d.viennals2d.Domain: ...
class HBrO2Etching(ProcessModel):
@overload
def __init__(self) -> None: ...
@overload
def __init__(
self,
ionFlux: float,
etchantFlux: float,
oxygenFlux: float,
meanIonEnergy: float = ...,
sigmaIonEnergy: float = ...,
ionExponent: float = ...,
oxySputterYield: float = ...,
etchStopDepth: float = ...,
) -> None: ...
@overload
def __init__(self, parameters: PlasmaEtchingParameters) -> None: ...
@staticmethod
def defaultParameters() -> PlasmaEtchingParameters: ...
def getParameters(self) -> PlasmaEtchingParameters: ...
def setParameters(self, arg0: PlasmaEtchingParameters) -> None: ...
class HoleShape:
__members__: ClassVar[dict] = ... # read-only
Full: ClassVar[HoleShape] = ...
Half: ClassVar[HoleShape] = ...
Quarter: ClassVar[HoleShape] = ...
__entries: ClassVar[dict] = ...
def __init__(self, value: int) -> None: ...
def __eq__(self, other: object) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __int__(self) -> int: ...
def __ne__(self, other: object) -> bool: ...
@property
def name(self) -> str: ...
@property
def value(self) -> int: ...
class IBEParameters:
exponent: float
inflectAngle: float
materialPlaneWaferRate: dict[Material, float]
meanEnergy: float
minAngle: float
n_l: float
planeWaferRate: float
redepositionRate: float
redepositionThreshold: float
sigmaEnergy: float
thresholdEnergy: float
tiltAngle: float
yieldFunction: Callable[[float], float]
def __init__(self) -> None: ...
class Interpolation:
__members__: ClassVar[dict] = ... # read-only
CUSTOM: ClassVar[Interpolation] = ...
IDW: ClassVar[Interpolation] = ...
LINEAR: ClassVar[Interpolation] = ...
__entries: ClassVar[dict] = ...
def __init__(self, value: int) -> None: ...
def __eq__(self, other: object) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __int__(self) -> int: ...
def __ne__(self, other: object) -> bool: ...
@property
def name(self) -> str: ...
@property
def value(self) -> int: ...
class IonBeamEtching(ProcessModel):
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, maskMaterials: list[Material]) -> None: ...
@overload
def __init__(
self, maskMaterials: list[Material], parameters: IBEParameters
) -> None: ...
def getParameters(self) -> IBEParameters: ...
def setParameters(self, arg0: IBEParameters) -> None: ...
class IsotropicProcess(ProcessModel):
@overload
def __init__(self, rate: float = ..., maskMaterial: Material = ...) -> None: ...
@overload
def __init__(self, rate: float, maskMaterial: list[Material]) -> None: ...
@overload
def __init__(
self, materialRates: dict[Material, float], defaultRate: float = ...
) -> None: ...
class Length:
def __init__(self, *args, **kwargs) -> None: ...
def convertAngstrom(self) -> float: ...
def convertCentimeter(self) -> float: ...
def convertMeter(self) -> float: ...
def convertMicrometer(self) -> float: ...
def convertMillimeter(self) -> float: ...
def convertNanometer(self) -> float: ...
@staticmethod
def getInstance() -> Length: ...
@staticmethod
def setUnit(arg0: str) -> None: ...
def toShortString(self) -> str: ...
def toString(self) -> str: ...
class LogLevel:
__members__: ClassVar[dict] = ... # read-only
DEBUG: ClassVar[LogLevel] = ...
ERROR: ClassVar[LogLevel] = ...
INFO: ClassVar[LogLevel] = ...
INTERMEDIATE: ClassVar[LogLevel] = ...
TIMING: ClassVar[LogLevel] = ...
WARNING: ClassVar[LogLevel] = ...
__entries: ClassVar[dict] = ...
def __init__(self, value: int) -> None: ...
def __eq__(self, other: object) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __int__(self) -> int: ...
def __ne__(self, other: object) -> bool: ...
@property
def name(self) -> str: ...
@property
def value(self) -> int: ...
class Logger:
def __init__(self, *args, **kwargs) -> None: ...
def addDebug(self, arg0: str) -> Logger: ...
def addError(self, s: str, shouldAbort: bool = ...) -> Logger: ...
def addInfo(self, arg0: str) -> Logger: ...
@overload
def addTiming(self, arg0: str, arg1: float) -> Logger: ...
@overload
def addTiming(self, arg0: str, arg1: float, arg2: float) -> Logger: ...
def addWarning(self, arg0: str) -> Logger: ...
@staticmethod
def getInstance() -> Logger: ...
@staticmethod
def getLogLevel() -> int: ...
def print(self) -> None: ...
@staticmethod
def setLogLevel(arg0: LogLevel) -> None: ...
class MakeFin:
@overload
def __init__(
self,
domain: Domain,
finWidth: float,
finHeight: float,
finTaperAngle: float = 0.0,
maskHeight: float = 0.0,
maskTaperAngle: float = 0.0,
halfFin: bool = False,
material: Material = Material.Si,
maskMaterial: Material = Material.Mask,
) -> None: ...
@overload
def __init__(
self,
domain: Domain,
gridDelta: float,
xExtent: float,
yExtent: float,
finWidth: float,
finHeight: float,
taperAngle: float = 0.0,
baseHeight: float = 0.0,
periodicBoundary: bool = False,
makeMask: bool = False,
material: Material = Material.Si,
) -> None: ...
def apply(self) -> None: ...
class MakeHole:
@overload
def __init__(
self,
domain: Domain,
holeRadius: float,
holeDepth: float,
holeTaperAngle: float = 0.0,
maskHeight: float = 0.0,
maskTaperAngle: float = 0.0,
holeShape: HoleShape = HoleShape.Full,
material: Material = Material.Si,
maskMaterial: Material = Material.Mask,
) -> None: ...
@overload
def __init__(
self,
domain: Domain,
gridDelta: float,
xExtent: float,
yExtent: float,
holeRadius: float,
holeDepth: float,
taperingAngle: float = 0.0,
baseHeight: float = 0.0,
periodicBoundary: bool = False,
makeMask: bool = False,
material: Material = Material.Si,
holeShape: HoleShape = HoleShape.Full,
) -> None: ...
def apply(self) -> None: ...
class MakePlane:
@overload
def __init__(
self,
domain: Domain,
gridDelta: float,
xExtent: float,
yExtent: float,
height: float = 0.0,
periodicBoundary: bool = False,
material: Material = Material.Si,
) -> None: ...
@overload
def __init__(
self,
domain: Domain,
height: float = 0.0,
material: Material = Material.Si,
addToExisting: bool = False,
) -> None: ...
def apply(self) -> None: ...
class MakeStack:
@overload
def __init__(
self,
domain: Domain,
numLayers: int,
layerHeight: float,
substrateHeight: float = 0,
holeRadius: float = 0,
trenchWidth: float = 0,
maskHeight: float = 0,
taperAngle: float = 0,
halfStack: bool = False,
maskMaterial: Material = Material.Mask,
) -> None: ...
@overload
def __init__(
self,
domain: Domain,
gridDelta: float,
xExtent: float,
yExtent: float,
numLayers: int,
layerHeight: float,
substrateHeight: float,
holeRadius: float,
trenchWidth: float,
maskHeight: float,
periodicBoundary: bool = False,
) -> None: ...
def apply(self) -> None: ...
def getHeight(self) -> float: ...
def getTopLayer(self) -> int: ...
class MakeTrench:
@overload
def __init__(
self,
domain: Domain,
trenchWidth: float,
trenchDepth: float,
trenchTaperAngle: float = 0.0,
maskHeight: float = 0.0,
maskTaperAngle: float = 0.0,
halfTrench: bool = False,
material: Material = Material.Si,
maskMaterial: Material = Material.Mask,
) -> None: ...
@overload
def __init__(
self,
domain: Domain,
gridDelta: float,
xExtent: float,
yExtent: float,
trenchWidth: float,
trenchDepth: float,
taperingAngle: float = 0.0,
baseHeight: float = 0.0,
periodicBoundary: bool = False,
makeMask: bool = False,
material: Material = Material.Si,
) -> None: ...
def apply(self) -> None: ...
class Material:
__members__: ClassVar[dict] = ... # read-only
Air: ClassVar[Material] = ...
Al2O3: ClassVar[Material] = ...
Cu: ClassVar[Material] = ...
Dielectric: ClassVar[Material] = ...
GAS: ClassVar[Material] = ...
GaN: ClassVar[Material] = ...
HfO2: ClassVar[Material] = ...
Mask: ClassVar[Material] = ...
Metal: ClassVar[Material] = ...
PolySi: ClassVar[Material] = ...
Polymer: ClassVar[Material] = ...
Si: ClassVar[Material] = ...
Si3N4: ClassVar[Material] = ...
SiC: ClassVar[Material] = ...
SiGe: ClassVar[Material] = ...
SiN: ClassVar[Material] = ...
SiO2: ClassVar[Material] = ...
SiON: ClassVar[Material] = ...
TiN: ClassVar[Material] = ...
Undefined: ClassVar[Material] = ...
W: ClassVar[Material] = ...
__entries: ClassVar[dict] = ...
def __init__(self, value: int) -> None: ...
def __eq__(self, other: object) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __int__(self) -> int: ...
def __ne__(self, other: object) -> bool: ...
@property
def name(self) -> str: ...
@property
def value(self) -> int: ...
class MaterialMap:
def __init__(self) -> None: ...
def getMaterialAtIdx(self, arg0: int) -> Material: ...
def getMaterialMap(self) -> viennals2d.viennals2d.MaterialMap: ...
@staticmethod
def getMaterialName(arg0: Material) -> str: ...
def insertNextMaterial(self, material: Material = ...) -> None: ...
@staticmethod
def isMaterial(arg0: float, arg1: Material) -> bool: ...
@staticmethod
def mapToMaterial(arg0: float) -> Material: ...
def size(self) -> int: ...
class MultiParticleProcess(ProcessModel):
def __init__(self) -> None: ...
def addIonParticle(
self,
sourcePower: float,
thetaRMin: float = ...,
thetaRMax: float = ...,
minAngle: float = ...,
B_sp: float = ...,
meanEnergy: float = ...,
sigmaEnergy: float = ...,
thresholdEnergy: float = ...,
inflectAngle: float = ...,
n: float = ...,
label: str = ...,
) -> None: ...
@overload
def addNeutralParticle(
self, stickingProbability: float, label: str = ...
) -> None: ...
@overload
def addNeutralParticle(
self,
materialSticking: dict[Material, float],
defaultStickingProbability: float = ...,
label: str = ...,
) -> None: ...
def setRateFunction(
self, arg0: Callable[[list[float], Material], float]
) -> None: ...
class NormalizationType:
__members__: ClassVar[dict] = ... # read-only
MAX: ClassVar[NormalizationType] = ...
SOURCE: ClassVar[NormalizationType] = ...
__entries: ClassVar[dict] = ...
def __init__(self, value: int) -> None: ...
def __eq__(self, other: object) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> int: ...
def __int__(self) -> int: ...
def __ne__(self, other: object) -> bool: ...
@property
def name(self) -> str: ...
@property
def value(self) -> int: ...
class OxideRegrowth(ProcessModel):
def __init__(
self,
nitrideEtchRate: float,
oxideEtchRate: float,
redepositionRate: float,
redepositionThreshold: float,
redepositionTimeInt: float,
diffusionCoefficient: float,
sinkStrength: float,
scallopVelocity: float,
centerVelocity: float,
topHeight: float,
centerWidth: float,
stabilityFactor: float,
) -> None: ...
class Particle:
def __init__(self, *args, **kwargs) -> None: ...
def getLocalDataLabels(self) -> list[str]: ...
def getSourceDistributionPower(self) -> float: ...
def initNew(self, arg0) -> None: ...
def surfaceCollision(
self, arg0: float, arg1, arg2, arg3: int, arg4: int, arg5, arg6, arg7
) -> None: ...
def surfaceReflection(self, *args, **kwargs): ...
class Planarize:
@overload
def __init__(self) -> None: ...
@overload
def __init__(self, geometry: Domain, cutoffHeight: float = ...) -> None: ...
def apply(self) -> None: ...
def setCutoffPosition(self, arg0: float) -> None: ...
def setDomain(self, arg0: Domain) -> None: ...
class PlasmaEtchingParameters:
Ions: PlasmaEtchingParametersIons
Mask: PlasmaEtchingParametersMask
Passivation: PlasmaEtchingParametersPassivation
Substrate: PlasmaEtchingParametersSubstrate
beta_E: dict[int, float]
beta_P: dict[int, float]
etchStopDepth: float
etchantFlux: float
ionFlux: float
passivationFlux: float
def __init__(self) -> None: ...
class PlasmaEtchingParametersIons:
exponent: float
inflectAngle: float
meanEnergy: float
minAngle: float
n_l: float
sigmaEnergy: float
thetaRMax: float