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.
- viennaps/__init__.py +126 -0
- viennaps/__init__.pyi +241 -0
- viennaps/_core/__init__.pyi +1145 -0
- viennaps/_core/constants.pyi +46 -0
- viennaps/_core/gpu.pyi +74 -0
- viennaps/_core/util.pyi +13 -0
- viennaps/_core.cp310-win_amd64.pyd +0 -0
- viennaps/d2/__init__.pyi +1438 -0
- viennaps/d2/gpu.pyi +90 -0
- viennaps/d3/__init__.pyi +1443 -0
- viennaps/d3/gpu.pyi +90 -0
- viennaps-4.0.1.dist-info/METADATA +314 -0
- viennaps-4.0.1.dist-info/RECORD +55 -0
- {viennaps-3.3.0.dist-info → viennaps-4.0.1.dist-info}/WHEEL +1 -1
- {viennaps-3.3.0.dist-info → viennaps-4.0.1.dist-info}/licenses/LICENSE +1 -6
- viennaps.libs/embree4.dll +0 -0
- viennaps.libs/embree4.exp +0 -0
- viennaps.libs/embree4.lib +0 -0
- viennaps.libs/embree_avx.lib +0 -0
- viennaps.libs/embree_avx2.lib +0 -0
- viennaps.libs/embree_sse42.lib +0 -0
- viennaps.libs/lexers.lib +0 -0
- viennaps.libs/math.lib +0 -0
- viennaps.libs/simd.lib +0 -0
- viennaps.libs/sys.lib +0 -0
- viennaps.libs/tasking.lib +0 -0
- viennaps.libs/tbb12.dll +0 -0
- viennaps.libs/tbb12.exp +0 -0
- viennaps.libs/tbb12.lib +0 -0
- viennaps.libs/vtkCommonComputationalGeometry-9.3.dll +0 -0
- viennaps.libs/vtkCommonCore-9.3.dll +0 -0
- viennaps.libs/vtkCommonDataModel-9.3.dll +0 -0
- viennaps.libs/vtkCommonExecutionModel-9.3.dll +0 -0
- viennaps.libs/vtkCommonMath-9.3.dll +0 -0
- viennaps.libs/vtkCommonMisc-9.3.dll +0 -0
- viennaps.libs/vtkCommonSystem-9.3.dll +0 -0
- viennaps.libs/vtkCommonTransforms-9.3.dll +0 -0
- viennaps.libs/vtkFiltersCore-9.3.dll +0 -0
- viennaps.libs/vtkFiltersGeneral-9.3.dll +0 -0
- viennaps.libs/vtkFiltersGeometry-9.3.dll +0 -0
- viennaps.libs/vtkFiltersVerdict-9.3.dll +0 -0
- viennaps.libs/vtkIOCore-9.3.dll +0 -0
- viennaps.libs/vtkIOXML-9.3.dll +0 -0
- viennaps.libs/vtkIOXMLParser-9.3.dll +0 -0
- viennaps.libs/vtkdoubleconversion-9.3.dll +0 -0
- viennaps.libs/vtkexpat-9.3.dll +0 -0
- viennaps.libs/vtkfmt-9.3.dll +0 -0
- viennaps.libs/vtkkissfft-9.3.dll +0 -0
- viennaps.libs/vtkloguru-9.3.dll +0 -0
- viennaps.libs/vtklz4-9.3.dll +0 -0
- viennaps.libs/vtklzma-9.3.dll +0 -0
- viennaps.libs/vtkpugixml-9.3.dll +0 -0
- viennaps.libs/vtksys-9.3.dll +0 -0
- viennaps.libs/vtkverdict-9.3.dll +0 -0
- viennaps.libs/vtkzlib-9.3.dll +0 -0
- viennaps-3.3.0.dist-info/METADATA +0 -275
- viennaps-3.3.0.dist-info/RECORD +0 -54
- viennaps2d/Release/viennaps2d.cp310-win_amd64.pyd +0 -0
- viennaps2d/__init__.py +0 -67
- viennaps2d/__init__.pyi +0 -3
- viennaps2d/viennaps2d.cp310-win_amd64.pyd +0 -0
- viennaps2d/viennaps2d.pyi +0 -1009
- viennaps3d/Release/viennaps3d.cp310-win_amd64.pyd +0 -0
- viennaps3d/__init__.py +0 -67
- viennaps3d/__init__.pyi +0 -3
- viennaps3d/viennaps3d.cp310-win_amd64.pyd +0 -0
- viennaps3d/viennaps3d.pyi +0 -966
|
@@ -0,0 +1,1145 @@
|
|
|
1
|
+
"""
|
|
2
|
+
ViennaPS is a header-only C++ process simulation library which includes surface and volume representations, a ray tracer, and physical models for the simulation of microelectronic fabrication processes. The main design goals are simplicity and efficiency, tailored towards scientific simulations.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
import collections.abc
|
|
7
|
+
import enum
|
|
8
|
+
import typing
|
|
9
|
+
import viennals._core
|
|
10
|
+
import viennaps.d2
|
|
11
|
+
from viennaps import d2
|
|
12
|
+
import viennaps.d3
|
|
13
|
+
from viennaps import d3
|
|
14
|
+
from . import constants
|
|
15
|
+
from . import gpu
|
|
16
|
+
from . import util
|
|
17
|
+
|
|
18
|
+
__all__: list[str] = [
|
|
19
|
+
"AdvectionParameters",
|
|
20
|
+
"AtomicLayerProcessParameters",
|
|
21
|
+
"CF4O2Parameters",
|
|
22
|
+
"CF4O2ParametersIons",
|
|
23
|
+
"CF4O2ParametersMask",
|
|
24
|
+
"CF4O2ParametersPassivation",
|
|
25
|
+
"CF4O2ParametersSi",
|
|
26
|
+
"CF4O2ParametersSiGe",
|
|
27
|
+
"CoverageParameters",
|
|
28
|
+
"Extrude",
|
|
29
|
+
"FaradayCageParameters",
|
|
30
|
+
"FluorocarbonMaterialParameters",
|
|
31
|
+
"FluorocarbonParameters",
|
|
32
|
+
"FluorocarbonParametersIons",
|
|
33
|
+
"FluxEngineType",
|
|
34
|
+
"HoleShape",
|
|
35
|
+
"IBEParameters",
|
|
36
|
+
"IBEParametersCos4Yield",
|
|
37
|
+
"Length",
|
|
38
|
+
"LengthUnit",
|
|
39
|
+
"Logger",
|
|
40
|
+
"Material",
|
|
41
|
+
"MaterialMap",
|
|
42
|
+
"MetaDataLevel",
|
|
43
|
+
"NormalizationType",
|
|
44
|
+
"PlasmaEtchingParameters",
|
|
45
|
+
"PlasmaEtchingParametersIons",
|
|
46
|
+
"PlasmaEtchingParametersMask",
|
|
47
|
+
"PlasmaEtchingParametersPassivation",
|
|
48
|
+
"PlasmaEtchingParametersPolymer",
|
|
49
|
+
"PlasmaEtchingParametersSubstrate",
|
|
50
|
+
"ProcessParams",
|
|
51
|
+
"RateSet",
|
|
52
|
+
"RayTracingParameters",
|
|
53
|
+
"Slice",
|
|
54
|
+
"Time",
|
|
55
|
+
"TimeUnit",
|
|
56
|
+
"constants",
|
|
57
|
+
"d2",
|
|
58
|
+
"d3",
|
|
59
|
+
"gpu",
|
|
60
|
+
"gpuAvailable",
|
|
61
|
+
"setNumThreads",
|
|
62
|
+
"util",
|
|
63
|
+
"version",
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
class AdvectionParameters:
|
|
67
|
+
checkDissipation: bool
|
|
68
|
+
ignoreVoids: bool
|
|
69
|
+
integrationScheme: viennals._core.IntegrationSchemeEnum
|
|
70
|
+
velocityOutput: bool
|
|
71
|
+
def __init__(self) -> None: ...
|
|
72
|
+
def toMetaData(self) -> dict[str, list[float]]:
|
|
73
|
+
"""
|
|
74
|
+
Convert the advection parameters to a metadata dict.
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
def toMetaDataString(self) -> str:
|
|
78
|
+
"""
|
|
79
|
+
Convert the advection parameters to a metadata string.
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def dissipationAlpha(self) -> float: ...
|
|
84
|
+
@dissipationAlpha.setter
|
|
85
|
+
def dissipationAlpha(self, arg0: typing.SupportsFloat) -> None: ...
|
|
86
|
+
@property
|
|
87
|
+
def timeStepRatio(self) -> float: ...
|
|
88
|
+
@timeStepRatio.setter
|
|
89
|
+
def timeStepRatio(self, arg0: typing.SupportsFloat) -> None: ...
|
|
90
|
+
|
|
91
|
+
class AtomicLayerProcessParameters:
|
|
92
|
+
def __init__(self) -> None: ...
|
|
93
|
+
def toMetaData(self) -> dict[str, list[float]]:
|
|
94
|
+
"""
|
|
95
|
+
Convert the ALD process parameters to a metadata dict.
|
|
96
|
+
"""
|
|
97
|
+
|
|
98
|
+
def toMetaDataString(self) -> str:
|
|
99
|
+
"""
|
|
100
|
+
Convert the ALD process parameters to a metadata string.
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
@property
|
|
104
|
+
def coverageTimeStep(self) -> float: ...
|
|
105
|
+
@coverageTimeStep.setter
|
|
106
|
+
def coverageTimeStep(self, arg0: typing.SupportsFloat) -> None: ...
|
|
107
|
+
@property
|
|
108
|
+
def numCycles(self) -> int: ...
|
|
109
|
+
@numCycles.setter
|
|
110
|
+
def numCycles(self, arg0: typing.SupportsInt) -> None: ...
|
|
111
|
+
@property
|
|
112
|
+
def pulseTime(self) -> float: ...
|
|
113
|
+
@pulseTime.setter
|
|
114
|
+
def pulseTime(self, arg0: typing.SupportsFloat) -> None: ...
|
|
115
|
+
@property
|
|
116
|
+
def purgePulseTime(self) -> float: ...
|
|
117
|
+
@purgePulseTime.setter
|
|
118
|
+
def purgePulseTime(self, arg0: typing.SupportsFloat) -> None: ...
|
|
119
|
+
|
|
120
|
+
class CF4O2Parameters:
|
|
121
|
+
Ions: CF4O2ParametersIons
|
|
122
|
+
Mask: CF4O2ParametersMask
|
|
123
|
+
Passivation: CF4O2ParametersPassivation
|
|
124
|
+
Si: CF4O2ParametersSi
|
|
125
|
+
SiGe: CF4O2ParametersSiGe
|
|
126
|
+
fluxIncludeSticking: bool
|
|
127
|
+
def __init__(self) -> None: ...
|
|
128
|
+
@property
|
|
129
|
+
def etchStopDepth(self) -> float: ...
|
|
130
|
+
@etchStopDepth.setter
|
|
131
|
+
def etchStopDepth(self, arg0: typing.SupportsFloat) -> None: ...
|
|
132
|
+
@property
|
|
133
|
+
def etchantFlux(self) -> float: ...
|
|
134
|
+
@etchantFlux.setter
|
|
135
|
+
def etchantFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
136
|
+
@property
|
|
137
|
+
def gamma_C(self) -> dict[Material, float]: ...
|
|
138
|
+
@gamma_C.setter
|
|
139
|
+
def gamma_C(
|
|
140
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
141
|
+
) -> None: ...
|
|
142
|
+
@property
|
|
143
|
+
def gamma_C_oxidized(self) -> dict[Material, float]: ...
|
|
144
|
+
@gamma_C_oxidized.setter
|
|
145
|
+
def gamma_C_oxidized(
|
|
146
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
147
|
+
) -> None: ...
|
|
148
|
+
@property
|
|
149
|
+
def gamma_F(self) -> dict[Material, float]: ...
|
|
150
|
+
@gamma_F.setter
|
|
151
|
+
def gamma_F(
|
|
152
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
153
|
+
) -> None: ...
|
|
154
|
+
@property
|
|
155
|
+
def gamma_F_oxidized(self) -> dict[Material, float]: ...
|
|
156
|
+
@gamma_F_oxidized.setter
|
|
157
|
+
def gamma_F_oxidized(
|
|
158
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
159
|
+
) -> None: ...
|
|
160
|
+
@property
|
|
161
|
+
def gamma_O(self) -> dict[Material, float]: ...
|
|
162
|
+
@gamma_O.setter
|
|
163
|
+
def gamma_O(
|
|
164
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
165
|
+
) -> None: ...
|
|
166
|
+
@property
|
|
167
|
+
def gamma_O_passivated(self) -> dict[Material, float]: ...
|
|
168
|
+
@gamma_O_passivated.setter
|
|
169
|
+
def gamma_O_passivated(
|
|
170
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
171
|
+
) -> None: ...
|
|
172
|
+
@property
|
|
173
|
+
def ionFlux(self) -> float: ...
|
|
174
|
+
@ionFlux.setter
|
|
175
|
+
def ionFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
176
|
+
@property
|
|
177
|
+
def oxygenFlux(self) -> float: ...
|
|
178
|
+
@oxygenFlux.setter
|
|
179
|
+
def oxygenFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
180
|
+
@property
|
|
181
|
+
def polymerFlux(self) -> float: ...
|
|
182
|
+
@polymerFlux.setter
|
|
183
|
+
def polymerFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
184
|
+
|
|
185
|
+
class CF4O2ParametersIons:
|
|
186
|
+
def __init__(self) -> None: ...
|
|
187
|
+
@property
|
|
188
|
+
def exponent(self) -> float: ...
|
|
189
|
+
@exponent.setter
|
|
190
|
+
def exponent(self, arg0: typing.SupportsFloat) -> None: ...
|
|
191
|
+
@property
|
|
192
|
+
def inflectAngle(self) -> float: ...
|
|
193
|
+
@inflectAngle.setter
|
|
194
|
+
def inflectAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
195
|
+
@property
|
|
196
|
+
def meanEnergy(self) -> float: ...
|
|
197
|
+
@meanEnergy.setter
|
|
198
|
+
def meanEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
199
|
+
@property
|
|
200
|
+
def minAngle(self) -> float: ...
|
|
201
|
+
@minAngle.setter
|
|
202
|
+
def minAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
203
|
+
@property
|
|
204
|
+
def n_l(self) -> float: ...
|
|
205
|
+
@n_l.setter
|
|
206
|
+
def n_l(self, arg0: typing.SupportsFloat) -> None: ...
|
|
207
|
+
@property
|
|
208
|
+
def sigmaEnergy(self) -> float: ...
|
|
209
|
+
@sigmaEnergy.setter
|
|
210
|
+
def sigmaEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
211
|
+
|
|
212
|
+
class CF4O2ParametersMask:
|
|
213
|
+
def __init__(self) -> None: ...
|
|
214
|
+
@property
|
|
215
|
+
def A_sp(self) -> float: ...
|
|
216
|
+
@A_sp.setter
|
|
217
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
218
|
+
@property
|
|
219
|
+
def Eth_sp(self) -> float: ...
|
|
220
|
+
@Eth_sp.setter
|
|
221
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
222
|
+
@property
|
|
223
|
+
def rho(self) -> float: ...
|
|
224
|
+
@rho.setter
|
|
225
|
+
def rho(self, arg0: typing.SupportsFloat) -> None: ...
|
|
226
|
+
|
|
227
|
+
class CF4O2ParametersPassivation:
|
|
228
|
+
def __init__(self) -> None: ...
|
|
229
|
+
@property
|
|
230
|
+
def A_C_ie(self) -> float: ...
|
|
231
|
+
@A_C_ie.setter
|
|
232
|
+
def A_C_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
233
|
+
@property
|
|
234
|
+
def A_O_ie(self) -> float: ...
|
|
235
|
+
@A_O_ie.setter
|
|
236
|
+
def A_O_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
237
|
+
@property
|
|
238
|
+
def Eth_C_ie(self) -> float: ...
|
|
239
|
+
@Eth_C_ie.setter
|
|
240
|
+
def Eth_C_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
241
|
+
@property
|
|
242
|
+
def Eth_O_ie(self) -> float: ...
|
|
243
|
+
@Eth_O_ie.setter
|
|
244
|
+
def Eth_O_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
245
|
+
|
|
246
|
+
class CF4O2ParametersSi:
|
|
247
|
+
def __init__(self) -> None: ...
|
|
248
|
+
@property
|
|
249
|
+
def A_ie(self) -> float: ...
|
|
250
|
+
@A_ie.setter
|
|
251
|
+
def A_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
252
|
+
@property
|
|
253
|
+
def A_sp(self) -> float: ...
|
|
254
|
+
@A_sp.setter
|
|
255
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
256
|
+
@property
|
|
257
|
+
def Eth_ie(self) -> float: ...
|
|
258
|
+
@Eth_ie.setter
|
|
259
|
+
def Eth_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
260
|
+
@property
|
|
261
|
+
def Eth_sp(self) -> float: ...
|
|
262
|
+
@Eth_sp.setter
|
|
263
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
264
|
+
@property
|
|
265
|
+
def beta_sigma(self) -> float: ...
|
|
266
|
+
@beta_sigma.setter
|
|
267
|
+
def beta_sigma(self, arg0: typing.SupportsFloat) -> None: ...
|
|
268
|
+
@property
|
|
269
|
+
def k_sigma(self) -> float: ...
|
|
270
|
+
@k_sigma.setter
|
|
271
|
+
def k_sigma(self, arg0: typing.SupportsFloat) -> None: ...
|
|
272
|
+
@property
|
|
273
|
+
def rho(self) -> float: ...
|
|
274
|
+
@rho.setter
|
|
275
|
+
def rho(self, arg0: typing.SupportsFloat) -> None: ...
|
|
276
|
+
|
|
277
|
+
class CF4O2ParametersSiGe:
|
|
278
|
+
def __init__(self) -> None: ...
|
|
279
|
+
def k_sigma_SiGe(self, arg0: typing.SupportsFloat) -> float: ...
|
|
280
|
+
@property
|
|
281
|
+
def A_ie(self) -> float: ...
|
|
282
|
+
@A_ie.setter
|
|
283
|
+
def A_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
284
|
+
@property
|
|
285
|
+
def A_sp(self) -> float: ...
|
|
286
|
+
@A_sp.setter
|
|
287
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
288
|
+
@property
|
|
289
|
+
def Eth_ie(self) -> float: ...
|
|
290
|
+
@Eth_ie.setter
|
|
291
|
+
def Eth_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
292
|
+
@property
|
|
293
|
+
def Eth_sp(self) -> float: ...
|
|
294
|
+
@Eth_sp.setter
|
|
295
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
296
|
+
@property
|
|
297
|
+
def beta_sigma(self) -> float: ...
|
|
298
|
+
@beta_sigma.setter
|
|
299
|
+
def beta_sigma(self, arg0: typing.SupportsFloat) -> None: ...
|
|
300
|
+
@property
|
|
301
|
+
def k_sigma(self) -> float: ...
|
|
302
|
+
@k_sigma.setter
|
|
303
|
+
def k_sigma(self, arg0: typing.SupportsFloat) -> None: ...
|
|
304
|
+
@property
|
|
305
|
+
def rho(self) -> float: ...
|
|
306
|
+
@rho.setter
|
|
307
|
+
def rho(self, arg0: typing.SupportsFloat) -> None: ...
|
|
308
|
+
@property
|
|
309
|
+
def x(self) -> float: ...
|
|
310
|
+
@x.setter
|
|
311
|
+
def x(self, arg0: typing.SupportsFloat) -> None: ...
|
|
312
|
+
|
|
313
|
+
class CoverageParameters:
|
|
314
|
+
def __init__(self) -> None: ...
|
|
315
|
+
def toMetaData(self) -> dict[str, list[float]]:
|
|
316
|
+
"""
|
|
317
|
+
Convert the coverage parameters to a metadata dict.
|
|
318
|
+
"""
|
|
319
|
+
|
|
320
|
+
def toMetaDataString(self) -> str:
|
|
321
|
+
"""
|
|
322
|
+
Convert the coverage parameters to a metadata string.
|
|
323
|
+
"""
|
|
324
|
+
|
|
325
|
+
@property
|
|
326
|
+
def maxIterations(self) -> int: ...
|
|
327
|
+
@maxIterations.setter
|
|
328
|
+
def maxIterations(self, arg0: typing.SupportsInt) -> None: ...
|
|
329
|
+
@property
|
|
330
|
+
def tolerance(self) -> float: ...
|
|
331
|
+
@tolerance.setter
|
|
332
|
+
def tolerance(self, arg0: typing.SupportsFloat) -> None: ...
|
|
333
|
+
|
|
334
|
+
class Extrude:
|
|
335
|
+
@typing.overload
|
|
336
|
+
def __init__(self) -> None: ...
|
|
337
|
+
@typing.overload
|
|
338
|
+
def __init__(
|
|
339
|
+
self,
|
|
340
|
+
inputDomain: viennaps.d2.Domain,
|
|
341
|
+
outputDomain: viennaps.d3.Domain,
|
|
342
|
+
extent: typing.Annotated[
|
|
343
|
+
collections.abc.Sequence[typing.SupportsFloat], "FixedSize(2)"
|
|
344
|
+
],
|
|
345
|
+
extrusionAxis: typing.SupportsInt,
|
|
346
|
+
boundaryConditions: typing.Annotated[
|
|
347
|
+
collections.abc.Sequence[viennals._core.BoundaryConditionEnum],
|
|
348
|
+
"FixedSize(3)",
|
|
349
|
+
],
|
|
350
|
+
) -> None: ...
|
|
351
|
+
def apply(self) -> None:
|
|
352
|
+
"""
|
|
353
|
+
Run the extrusion.
|
|
354
|
+
"""
|
|
355
|
+
|
|
356
|
+
def setBoundaryConditions(
|
|
357
|
+
self,
|
|
358
|
+
arg0: typing.Annotated[
|
|
359
|
+
collections.abc.Sequence[viennals._core.BoundaryConditionEnum],
|
|
360
|
+
"FixedSize(3)",
|
|
361
|
+
],
|
|
362
|
+
) -> None:
|
|
363
|
+
"""
|
|
364
|
+
Set the boundary conditions in the extruded domain.
|
|
365
|
+
"""
|
|
366
|
+
|
|
367
|
+
def setExtent(
|
|
368
|
+
self,
|
|
369
|
+
arg0: typing.Annotated[
|
|
370
|
+
collections.abc.Sequence[typing.SupportsFloat], "FixedSize(2)"
|
|
371
|
+
],
|
|
372
|
+
) -> None:
|
|
373
|
+
"""
|
|
374
|
+
Set the min and max extent in the extruded dimension.
|
|
375
|
+
"""
|
|
376
|
+
|
|
377
|
+
def setExtrusionAxis(self, arg0: typing.SupportsInt) -> None:
|
|
378
|
+
"""
|
|
379
|
+
Set the axis along which to extrude (0, 1, or 2).
|
|
380
|
+
"""
|
|
381
|
+
|
|
382
|
+
def setInputDomain(self, arg0: viennaps.d2.Domain) -> None:
|
|
383
|
+
"""
|
|
384
|
+
Set the input domain to be extruded.
|
|
385
|
+
"""
|
|
386
|
+
|
|
387
|
+
def setOutputDomain(self, arg0: viennaps.d3.Domain) -> None:
|
|
388
|
+
"""
|
|
389
|
+
Set the output domain. The 3D output domain will be overwritten by the extruded domain.
|
|
390
|
+
"""
|
|
391
|
+
|
|
392
|
+
class FaradayCageParameters:
|
|
393
|
+
ibeParams: IBEParameters
|
|
394
|
+
def __init__(self) -> None: ...
|
|
395
|
+
@property
|
|
396
|
+
def cageAngle(self) -> float: ...
|
|
397
|
+
@cageAngle.setter
|
|
398
|
+
def cageAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
399
|
+
|
|
400
|
+
class FluorocarbonMaterialParameters:
|
|
401
|
+
id: Material
|
|
402
|
+
def __init__(self) -> None: ...
|
|
403
|
+
@property
|
|
404
|
+
def A_ie(self) -> float: ...
|
|
405
|
+
@A_ie.setter
|
|
406
|
+
def A_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
407
|
+
@property
|
|
408
|
+
def A_sp(self) -> float: ...
|
|
409
|
+
@A_sp.setter
|
|
410
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
411
|
+
@property
|
|
412
|
+
def B_sp(self) -> float: ...
|
|
413
|
+
@B_sp.setter
|
|
414
|
+
def B_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
415
|
+
@property
|
|
416
|
+
def E_a(self) -> float: ...
|
|
417
|
+
@E_a.setter
|
|
418
|
+
def E_a(self, arg0: typing.SupportsFloat) -> None: ...
|
|
419
|
+
@property
|
|
420
|
+
def Eth_ie(self) -> float: ...
|
|
421
|
+
@Eth_ie.setter
|
|
422
|
+
def Eth_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
423
|
+
@property
|
|
424
|
+
def Eth_sp(self) -> float: ...
|
|
425
|
+
@Eth_sp.setter
|
|
426
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
427
|
+
@property
|
|
428
|
+
def K(self) -> float: ...
|
|
429
|
+
@K.setter
|
|
430
|
+
def K(self, arg0: typing.SupportsFloat) -> None: ...
|
|
431
|
+
@property
|
|
432
|
+
def beta_e(self) -> float: ...
|
|
433
|
+
@beta_e.setter
|
|
434
|
+
def beta_e(self, arg0: typing.SupportsFloat) -> None: ...
|
|
435
|
+
@property
|
|
436
|
+
def beta_p(self) -> float: ...
|
|
437
|
+
@beta_p.setter
|
|
438
|
+
def beta_p(self, arg0: typing.SupportsFloat) -> None: ...
|
|
439
|
+
@property
|
|
440
|
+
def density(self) -> float: ...
|
|
441
|
+
@density.setter
|
|
442
|
+
def density(self, arg0: typing.SupportsFloat) -> None: ...
|
|
443
|
+
|
|
444
|
+
class FluorocarbonParameters:
|
|
445
|
+
Ions: FluorocarbonParametersIons
|
|
446
|
+
def __init__(self) -> None: ...
|
|
447
|
+
def addMaterial(
|
|
448
|
+
self, materialParameters: FluorocarbonMaterialParameters
|
|
449
|
+
) -> None: ...
|
|
450
|
+
def getMaterialParameters(
|
|
451
|
+
self, material: Material
|
|
452
|
+
) -> FluorocarbonMaterialParameters: ...
|
|
453
|
+
@property
|
|
454
|
+
def delta_p(self) -> float: ...
|
|
455
|
+
@delta_p.setter
|
|
456
|
+
def delta_p(self, arg0: typing.SupportsFloat) -> None: ...
|
|
457
|
+
@property
|
|
458
|
+
def etchStopDepth(self) -> float: ...
|
|
459
|
+
@etchStopDepth.setter
|
|
460
|
+
def etchStopDepth(self, arg0: typing.SupportsFloat) -> None: ...
|
|
461
|
+
@property
|
|
462
|
+
def etchantFlux(self) -> float: ...
|
|
463
|
+
@etchantFlux.setter
|
|
464
|
+
def etchantFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
465
|
+
@property
|
|
466
|
+
def ionFlux(self) -> float: ...
|
|
467
|
+
@ionFlux.setter
|
|
468
|
+
def ionFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
469
|
+
@property
|
|
470
|
+
def k_ev(self) -> float: ...
|
|
471
|
+
@k_ev.setter
|
|
472
|
+
def k_ev(self, arg0: typing.SupportsFloat) -> None: ...
|
|
473
|
+
@property
|
|
474
|
+
def k_ie(self) -> float: ...
|
|
475
|
+
@k_ie.setter
|
|
476
|
+
def k_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
477
|
+
@property
|
|
478
|
+
def polyFlux(self) -> float: ...
|
|
479
|
+
@polyFlux.setter
|
|
480
|
+
def polyFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
481
|
+
@property
|
|
482
|
+
def temperature(self) -> float: ...
|
|
483
|
+
@temperature.setter
|
|
484
|
+
def temperature(self, arg0: typing.SupportsFloat) -> None: ...
|
|
485
|
+
|
|
486
|
+
class FluorocarbonParametersIons:
|
|
487
|
+
def __init__(self) -> None: ...
|
|
488
|
+
@property
|
|
489
|
+
def exponent(self) -> float: ...
|
|
490
|
+
@exponent.setter
|
|
491
|
+
def exponent(self, arg0: typing.SupportsFloat) -> None: ...
|
|
492
|
+
@property
|
|
493
|
+
def inflectAngle(self) -> float: ...
|
|
494
|
+
@inflectAngle.setter
|
|
495
|
+
def inflectAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
496
|
+
@property
|
|
497
|
+
def meanEnergy(self) -> float: ...
|
|
498
|
+
@meanEnergy.setter
|
|
499
|
+
def meanEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
500
|
+
@property
|
|
501
|
+
def minAngle(self) -> float: ...
|
|
502
|
+
@minAngle.setter
|
|
503
|
+
def minAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
504
|
+
@property
|
|
505
|
+
def n_l(self) -> float: ...
|
|
506
|
+
@n_l.setter
|
|
507
|
+
def n_l(self, arg0: typing.SupportsFloat) -> None: ...
|
|
508
|
+
@property
|
|
509
|
+
def sigmaEnergy(self) -> float: ...
|
|
510
|
+
@sigmaEnergy.setter
|
|
511
|
+
def sigmaEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
512
|
+
|
|
513
|
+
class FluxEngineType(enum.IntEnum):
|
|
514
|
+
AUTO: typing.ClassVar[FluxEngineType] # value = <FluxEngineType.AUTO: 0>
|
|
515
|
+
CPU_DISK: typing.ClassVar[FluxEngineType] # value = <FluxEngineType.CPU_DISK: 1>
|
|
516
|
+
GPU_DISK: typing.ClassVar[FluxEngineType] # value = <FluxEngineType.GPU_DISK: 3>
|
|
517
|
+
GPU_LINE: typing.ClassVar[FluxEngineType] # value = <FluxEngineType.GPU_LINE: 4>
|
|
518
|
+
GPU_TRIANGLE: typing.ClassVar[
|
|
519
|
+
FluxEngineType
|
|
520
|
+
] # value = <FluxEngineType.GPU_TRIANGLE: 2>
|
|
521
|
+
@classmethod
|
|
522
|
+
def __new__(cls, value): ...
|
|
523
|
+
def __format__(self, format_spec):
|
|
524
|
+
"""
|
|
525
|
+
Convert to a string according to format_spec.
|
|
526
|
+
"""
|
|
527
|
+
|
|
528
|
+
class HoleShape(enum.IntEnum):
|
|
529
|
+
FULL: typing.ClassVar[HoleShape] # value = <HoleShape.FULL: 0>
|
|
530
|
+
HALF: typing.ClassVar[HoleShape] # value = <HoleShape.HALF: 1>
|
|
531
|
+
QUARTER: typing.ClassVar[HoleShape] # value = <HoleShape.QUARTER: 2>
|
|
532
|
+
@classmethod
|
|
533
|
+
def __new__(cls, value): ...
|
|
534
|
+
def __format__(self, format_spec):
|
|
535
|
+
"""
|
|
536
|
+
Convert to a string according to format_spec.
|
|
537
|
+
"""
|
|
538
|
+
|
|
539
|
+
class IBEParameters:
|
|
540
|
+
cos4Yield: IBEParametersCos4Yield
|
|
541
|
+
def __init__(self) -> None: ...
|
|
542
|
+
def toProcessMetaData(self) -> dict[str, list[float]]:
|
|
543
|
+
"""
|
|
544
|
+
Convert the IBE parameters to a metadata dict.
|
|
545
|
+
"""
|
|
546
|
+
|
|
547
|
+
@property
|
|
548
|
+
def exponent(self) -> float: ...
|
|
549
|
+
@exponent.setter
|
|
550
|
+
def exponent(self, arg0: typing.SupportsFloat) -> None: ...
|
|
551
|
+
@property
|
|
552
|
+
def inflectAngle(self) -> float: ...
|
|
553
|
+
@inflectAngle.setter
|
|
554
|
+
def inflectAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
555
|
+
@property
|
|
556
|
+
def materialPlaneWaferRate(self) -> dict[Material, float]: ...
|
|
557
|
+
@materialPlaneWaferRate.setter
|
|
558
|
+
def materialPlaneWaferRate(
|
|
559
|
+
self, arg0: collections.abc.Mapping[Material, typing.SupportsFloat]
|
|
560
|
+
) -> None: ...
|
|
561
|
+
@property
|
|
562
|
+
def meanEnergy(self) -> float: ...
|
|
563
|
+
@meanEnergy.setter
|
|
564
|
+
def meanEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
565
|
+
@property
|
|
566
|
+
def minAngle(self) -> float: ...
|
|
567
|
+
@minAngle.setter
|
|
568
|
+
def minAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
569
|
+
@property
|
|
570
|
+
def n_l(self) -> float: ...
|
|
571
|
+
@n_l.setter
|
|
572
|
+
def n_l(self, arg0: typing.SupportsFloat) -> None: ...
|
|
573
|
+
@property
|
|
574
|
+
def planeWaferRate(self) -> float: ...
|
|
575
|
+
@planeWaferRate.setter
|
|
576
|
+
def planeWaferRate(self, arg0: typing.SupportsFloat) -> None: ...
|
|
577
|
+
@property
|
|
578
|
+
def redepositionRate(self) -> float: ...
|
|
579
|
+
@redepositionRate.setter
|
|
580
|
+
def redepositionRate(self, arg0: typing.SupportsFloat) -> None: ...
|
|
581
|
+
@property
|
|
582
|
+
def redepositionThreshold(self) -> float: ...
|
|
583
|
+
@redepositionThreshold.setter
|
|
584
|
+
def redepositionThreshold(self, arg0: typing.SupportsFloat) -> None: ...
|
|
585
|
+
@property
|
|
586
|
+
def sigmaEnergy(self) -> float: ...
|
|
587
|
+
@sigmaEnergy.setter
|
|
588
|
+
def sigmaEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
589
|
+
@property
|
|
590
|
+
def thetaRMax(self) -> float: ...
|
|
591
|
+
@thetaRMax.setter
|
|
592
|
+
def thetaRMax(self, arg0: typing.SupportsFloat) -> None: ...
|
|
593
|
+
@property
|
|
594
|
+
def thetaRMin(self) -> float: ...
|
|
595
|
+
@thetaRMin.setter
|
|
596
|
+
def thetaRMin(self, arg0: typing.SupportsFloat) -> None: ...
|
|
597
|
+
@property
|
|
598
|
+
def thresholdEnergy(self) -> float: ...
|
|
599
|
+
@thresholdEnergy.setter
|
|
600
|
+
def thresholdEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
601
|
+
@property
|
|
602
|
+
def tiltAngle(self) -> float: ...
|
|
603
|
+
@tiltAngle.setter
|
|
604
|
+
def tiltAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
605
|
+
|
|
606
|
+
class IBEParametersCos4Yield:
|
|
607
|
+
isDefined: bool
|
|
608
|
+
def __init__(self) -> None: ...
|
|
609
|
+
def aSum(self) -> float: ...
|
|
610
|
+
@property
|
|
611
|
+
def a1(self) -> float: ...
|
|
612
|
+
@a1.setter
|
|
613
|
+
def a1(self, arg0: typing.SupportsFloat) -> None: ...
|
|
614
|
+
@property
|
|
615
|
+
def a2(self) -> float: ...
|
|
616
|
+
@a2.setter
|
|
617
|
+
def a2(self, arg0: typing.SupportsFloat) -> None: ...
|
|
618
|
+
@property
|
|
619
|
+
def a3(self) -> float: ...
|
|
620
|
+
@a3.setter
|
|
621
|
+
def a3(self, arg0: typing.SupportsFloat) -> None: ...
|
|
622
|
+
@property
|
|
623
|
+
def a4(self) -> float: ...
|
|
624
|
+
@a4.setter
|
|
625
|
+
def a4(self, arg0: typing.SupportsFloat) -> None: ...
|
|
626
|
+
|
|
627
|
+
class Length:
|
|
628
|
+
@staticmethod
|
|
629
|
+
def convertAngstrom() -> float: ...
|
|
630
|
+
@staticmethod
|
|
631
|
+
def convertCentimeter() -> float: ...
|
|
632
|
+
@staticmethod
|
|
633
|
+
def convertMeter() -> float: ...
|
|
634
|
+
@staticmethod
|
|
635
|
+
def convertMicrometer() -> float: ...
|
|
636
|
+
@staticmethod
|
|
637
|
+
def convertMillimeter() -> float: ...
|
|
638
|
+
@staticmethod
|
|
639
|
+
def convertNanometer() -> float: ...
|
|
640
|
+
@staticmethod
|
|
641
|
+
def getInstance() -> Length: ...
|
|
642
|
+
@staticmethod
|
|
643
|
+
def setUnit(arg0: str) -> None: ...
|
|
644
|
+
@staticmethod
|
|
645
|
+
def toShortString() -> str: ...
|
|
646
|
+
@staticmethod
|
|
647
|
+
def toString() -> str: ...
|
|
648
|
+
|
|
649
|
+
class LengthUnit(enum.IntEnum):
|
|
650
|
+
ANGSTROM: typing.ClassVar[LengthUnit] # value = <LengthUnit.ANGSTROM: 5>
|
|
651
|
+
CENTIMETER: typing.ClassVar[LengthUnit] # value = <LengthUnit.CENTIMETER: 1>
|
|
652
|
+
METER: typing.ClassVar[LengthUnit] # value = <LengthUnit.METER: 0>
|
|
653
|
+
MICROMETER: typing.ClassVar[LengthUnit] # value = <LengthUnit.MICROMETER: 3>
|
|
654
|
+
MILLIMETER: typing.ClassVar[LengthUnit] # value = <LengthUnit.MILLIMETER: 2>
|
|
655
|
+
NANOMETER: typing.ClassVar[LengthUnit] # value = <LengthUnit.NANOMETER: 4>
|
|
656
|
+
UNDEFINED: typing.ClassVar[LengthUnit] # value = <LengthUnit.UNDEFINED: 6>
|
|
657
|
+
@classmethod
|
|
658
|
+
def __new__(cls, value): ...
|
|
659
|
+
def __format__(self, format_spec):
|
|
660
|
+
"""
|
|
661
|
+
Convert to a string according to format_spec.
|
|
662
|
+
"""
|
|
663
|
+
|
|
664
|
+
class Logger:
|
|
665
|
+
@staticmethod
|
|
666
|
+
def appendToLogFile(arg0: str) -> bool: ...
|
|
667
|
+
@staticmethod
|
|
668
|
+
def closeLogFile() -> None: ...
|
|
669
|
+
@staticmethod
|
|
670
|
+
def getInstance() -> Logger: ...
|
|
671
|
+
@staticmethod
|
|
672
|
+
def getLogLevel() -> int: ...
|
|
673
|
+
@staticmethod
|
|
674
|
+
def setLogFile(arg0: str) -> bool: ...
|
|
675
|
+
@staticmethod
|
|
676
|
+
def setLogLevel(arg0: ...) -> None: ...
|
|
677
|
+
def addDebug(self, arg0: str) -> Logger: ...
|
|
678
|
+
def addError(self, s: str, shouldAbort: bool = True) -> Logger: ...
|
|
679
|
+
def addInfo(self, arg0: str) -> Logger: ...
|
|
680
|
+
@typing.overload
|
|
681
|
+
def addTiming(self, arg0: str, arg1: typing.SupportsFloat) -> Logger: ...
|
|
682
|
+
@typing.overload
|
|
683
|
+
def addTiming(
|
|
684
|
+
self, arg0: str, arg1: typing.SupportsFloat, arg2: typing.SupportsFloat
|
|
685
|
+
) -> Logger: ...
|
|
686
|
+
def addWarning(self, arg0: str) -> Logger: ...
|
|
687
|
+
def print(self) -> None: ...
|
|
688
|
+
|
|
689
|
+
class Material(enum.IntEnum):
|
|
690
|
+
"""
|
|
691
|
+
Material types for domain and level sets
|
|
692
|
+
"""
|
|
693
|
+
|
|
694
|
+
ARC: typing.ClassVar[Material] # value = <Material.ARC: 57>
|
|
695
|
+
AZO: typing.ClassVar[Material] # value = <Material.AZO: 152>
|
|
696
|
+
Air: typing.ClassVar[Material] # value = <Material.Air: 2>
|
|
697
|
+
Al2O3: typing.ClassVar[Material] # value = <Material.Al2O3: 31>
|
|
698
|
+
AlN: typing.ClassVar[Material] # value = <Material.AlN: 37>
|
|
699
|
+
BN: typing.ClassVar[Material] # value = <Material.BN: 39>
|
|
700
|
+
BPSG: typing.ClassVar[Material] # value = <Material.BPSG: 54>
|
|
701
|
+
C: typing.ClassVar[Material] # value = <Material.C: 50>
|
|
702
|
+
Co: typing.ClassVar[Material] # value = <Material.Co: 72>
|
|
703
|
+
CoW: typing.ClassVar[Material] # value = <Material.CoW: 85>
|
|
704
|
+
Cu: typing.ClassVar[Material] # value = <Material.Cu: 71>
|
|
705
|
+
Dielectric: typing.ClassVar[Material] # value = <Material.Dielectric: 4>
|
|
706
|
+
GAS: typing.ClassVar[Material] # value = <Material.GAS: 3>
|
|
707
|
+
GST: typing.ClassVar[Material] # value = <Material.GST: 135>
|
|
708
|
+
GaAs: typing.ClassVar[Material] # value = <Material.GaAs: 112>
|
|
709
|
+
GaN: typing.ClassVar[Material] # value = <Material.GaN: 111>
|
|
710
|
+
Ge: typing.ClassVar[Material] # value = <Material.Ge: 110>
|
|
711
|
+
Graphene: typing.ClassVar[Material] # value = <Material.Graphene: 130>
|
|
712
|
+
HSQ: typing.ClassVar[Material] # value = <Material.HSQ: 60>
|
|
713
|
+
HfO2: typing.ClassVar[Material] # value = <Material.HfO2: 32>
|
|
714
|
+
ITO: typing.ClassVar[Material] # value = <Material.ITO: 150>
|
|
715
|
+
InGaAs: typing.ClassVar[Material] # value = <Material.InGaAs: 114>
|
|
716
|
+
InP: typing.ClassVar[Material] # value = <Material.InP: 113>
|
|
717
|
+
Ir: typing.ClassVar[Material] # value = <Material.Ir: 81>
|
|
718
|
+
La2O3: typing.ClassVar[Material] # value = <Material.La2O3: 36>
|
|
719
|
+
Mask: typing.ClassVar[Material] # value = <Material.Mask: 0>
|
|
720
|
+
Metal: typing.ClassVar[Material] # value = <Material.Metal: 5>
|
|
721
|
+
Mn: typing.ClassVar[Material] # value = <Material.Mn: 88>
|
|
722
|
+
MnN: typing.ClassVar[Material] # value = <Material.MnN: 90>
|
|
723
|
+
MnO: typing.ClassVar[Material] # value = <Material.MnO: 89>
|
|
724
|
+
Mo: typing.ClassVar[Material] # value = <Material.Mo: 80>
|
|
725
|
+
MoS2: typing.ClassVar[Material] # value = <Material.MoS2: 131>
|
|
726
|
+
MoSi2: typing.ClassVar[Material] # value = <Material.MoSi2: 102>
|
|
727
|
+
Ni: typing.ClassVar[Material] # value = <Material.Ni: 74>
|
|
728
|
+
NiW: typing.ClassVar[Material] # value = <Material.NiW: 86>
|
|
729
|
+
PHS: typing.ClassVar[Material] # value = <Material.PHS: 59>
|
|
730
|
+
PMMA: typing.ClassVar[Material] # value = <Material.PMMA: 58>
|
|
731
|
+
PSG: typing.ClassVar[Material] # value = <Material.PSG: 55>
|
|
732
|
+
Pd: typing.ClassVar[Material] # value = <Material.Pd: 83>
|
|
733
|
+
PolySi: typing.ClassVar[Material] # value = <Material.PolySi: 11>
|
|
734
|
+
Polymer: typing.ClassVar[Material] # value = <Material.Polymer: 1>
|
|
735
|
+
Pt: typing.ClassVar[Material] # value = <Material.Pt: 75>
|
|
736
|
+
Rh: typing.ClassVar[Material] # value = <Material.Rh: 82>
|
|
737
|
+
Ru: typing.ClassVar[Material] # value = <Material.Ru: 73>
|
|
738
|
+
RuTa: typing.ClassVar[Material] # value = <Material.RuTa: 84>
|
|
739
|
+
SOC: typing.ClassVar[Material] # value = <Material.SOC: 52>
|
|
740
|
+
SOG: typing.ClassVar[Material] # value = <Material.SOG: 53>
|
|
741
|
+
Si: typing.ClassVar[Material] # value = <Material.Si: 10>
|
|
742
|
+
Si3N4: typing.ClassVar[Material] # value = <Material.Si3N4: 16>
|
|
743
|
+
SiBCN: typing.ClassVar[Material] # value = <Material.SiBCN: 19>
|
|
744
|
+
SiC: typing.ClassVar[Material] # value = <Material.SiC: 14>
|
|
745
|
+
SiCN: typing.ClassVar[Material] # value = <Material.SiCN: 18>
|
|
746
|
+
SiCOH: typing.ClassVar[Material] # value = <Material.SiCOH: 20>
|
|
747
|
+
SiC_HM: typing.ClassVar[Material] # value = <Material.SiC_HM: 172>
|
|
748
|
+
SiGaN: typing.ClassVar[Material] # value = <Material.SiGaN: 115>
|
|
749
|
+
SiGe: typing.ClassVar[Material] # value = <Material.SiGe: 13>
|
|
750
|
+
SiLK: typing.ClassVar[Material] # value = <Material.SiLK: 56>
|
|
751
|
+
SiN: typing.ClassVar[Material] # value = <Material.SiN: 15>
|
|
752
|
+
SiN_HM: typing.ClassVar[Material] # value = <Material.SiN_HM: 171>
|
|
753
|
+
SiO2: typing.ClassVar[Material] # value = <Material.SiO2: 30>
|
|
754
|
+
SiO2_HM: typing.ClassVar[Material] # value = <Material.SiO2_HM: 175>
|
|
755
|
+
SiOCH: typing.ClassVar[Material] # value = <Material.SiOCH: 116>
|
|
756
|
+
SiOCN: typing.ClassVar[Material] # value = <Material.SiOCN: 21>
|
|
757
|
+
SiON: typing.ClassVar[Material] # value = <Material.SiON: 17>
|
|
758
|
+
SiON_HM: typing.ClassVar[Material] # value = <Material.SiON_HM: 170>
|
|
759
|
+
Ta: typing.ClassVar[Material] # value = <Material.Ta: 76>
|
|
760
|
+
Ta2O5: typing.ClassVar[Material] # value = <Material.Ta2O5: 38>
|
|
761
|
+
TaN: typing.ClassVar[Material] # value = <Material.TaN: 77>
|
|
762
|
+
Ti: typing.ClassVar[Material] # value = <Material.Ti: 78>
|
|
763
|
+
TiAlN: typing.ClassVar[Material] # value = <Material.TiAlN: 87>
|
|
764
|
+
TiN: typing.ClassVar[Material] # value = <Material.TiN: 79>
|
|
765
|
+
TiO: typing.ClassVar[Material] # value = <Material.TiO: 173>
|
|
766
|
+
TiO2: typing.ClassVar[Material] # value = <Material.TiO2: 34>
|
|
767
|
+
TiSi2: typing.ClassVar[Material] # value = <Material.TiSi2: 101>
|
|
768
|
+
Undefined: typing.ClassVar[Material] # value = <Material.Undefined: 6>
|
|
769
|
+
VO2: typing.ClassVar[Material] # value = <Material.VO2: 134>
|
|
770
|
+
W: typing.ClassVar[Material] # value = <Material.W: 70>
|
|
771
|
+
WS2: typing.ClassVar[Material] # value = <Material.WS2: 132>
|
|
772
|
+
WSe2: typing.ClassVar[Material] # value = <Material.WSe2: 133>
|
|
773
|
+
WSi2: typing.ClassVar[Material] # value = <Material.WSi2: 100>
|
|
774
|
+
Y2O3: typing.ClassVar[Material] # value = <Material.Y2O3: 35>
|
|
775
|
+
ZnO: typing.ClassVar[Material] # value = <Material.ZnO: 151>
|
|
776
|
+
ZrO: typing.ClassVar[Material] # value = <Material.ZrO: 174>
|
|
777
|
+
ZrO2: typing.ClassVar[Material] # value = <Material.ZrO2: 33>
|
|
778
|
+
aC: typing.ClassVar[Material] # value = <Material.aC: 51>
|
|
779
|
+
aSi: typing.ClassVar[Material] # value = <Material.aSi: 12>
|
|
780
|
+
hBN: typing.ClassVar[Material] # value = <Material.hBN: 40>
|
|
781
|
+
@classmethod
|
|
782
|
+
def __new__(cls, value): ...
|
|
783
|
+
def __format__(self, format_spec):
|
|
784
|
+
"""
|
|
785
|
+
Convert to a string according to format_spec.
|
|
786
|
+
"""
|
|
787
|
+
|
|
788
|
+
class MaterialMap:
|
|
789
|
+
@staticmethod
|
|
790
|
+
def isMaterial(arg0: typing.SupportsFloat, arg1: Material) -> bool: ...
|
|
791
|
+
@staticmethod
|
|
792
|
+
def mapToMaterial(arg0: typing.SupportsFloat) -> Material:
|
|
793
|
+
"""
|
|
794
|
+
Map a float to a material.
|
|
795
|
+
"""
|
|
796
|
+
|
|
797
|
+
@staticmethod
|
|
798
|
+
def toString(arg0: Material) -> str:
|
|
799
|
+
"""
|
|
800
|
+
Get the name of a material.
|
|
801
|
+
"""
|
|
802
|
+
|
|
803
|
+
def __init__(self) -> None: ...
|
|
804
|
+
def getMaterialAtIdx(self, arg0: typing.SupportsInt) -> Material: ...
|
|
805
|
+
def getMaterialMap(self) -> viennals._core.MaterialMap: ...
|
|
806
|
+
def insertNextMaterial(self, material: Material = ...) -> None: ...
|
|
807
|
+
def size(self) -> int: ...
|
|
808
|
+
|
|
809
|
+
class MetaDataLevel(enum.IntEnum):
|
|
810
|
+
FULL: typing.ClassVar[MetaDataLevel] # value = <MetaDataLevel.FULL: 3>
|
|
811
|
+
GRID: typing.ClassVar[MetaDataLevel] # value = <MetaDataLevel.GRID: 1>
|
|
812
|
+
NONE: typing.ClassVar[MetaDataLevel] # value = <MetaDataLevel.NONE: 0>
|
|
813
|
+
PROCESS: typing.ClassVar[MetaDataLevel] # value = <MetaDataLevel.PROCESS: 2>
|
|
814
|
+
@classmethod
|
|
815
|
+
def __new__(cls, value): ...
|
|
816
|
+
def __format__(self, format_spec):
|
|
817
|
+
"""
|
|
818
|
+
Convert to a string according to format_spec.
|
|
819
|
+
"""
|
|
820
|
+
|
|
821
|
+
class NormalizationType(enum.IntEnum):
|
|
822
|
+
MAX: typing.ClassVar[NormalizationType] # value = <NormalizationType.MAX: 1>
|
|
823
|
+
SOURCE: typing.ClassVar[NormalizationType] # value = <NormalizationType.SOURCE: 0>
|
|
824
|
+
@classmethod
|
|
825
|
+
def __new__(cls, value): ...
|
|
826
|
+
def __format__(self, format_spec):
|
|
827
|
+
"""
|
|
828
|
+
Convert to a string according to format_spec.
|
|
829
|
+
"""
|
|
830
|
+
|
|
831
|
+
class PlasmaEtchingParameters:
|
|
832
|
+
Ions: PlasmaEtchingParametersIons
|
|
833
|
+
Mask: PlasmaEtchingParametersMask
|
|
834
|
+
Passivation: PlasmaEtchingParametersPassivation
|
|
835
|
+
Substrate: PlasmaEtchingParametersSubstrate
|
|
836
|
+
def __init__(self) -> None: ...
|
|
837
|
+
@property
|
|
838
|
+
def beta_E(self) -> dict[int, float]: ...
|
|
839
|
+
@beta_E.setter
|
|
840
|
+
def beta_E(
|
|
841
|
+
self, arg0: collections.abc.Mapping[typing.SupportsInt, typing.SupportsFloat]
|
|
842
|
+
) -> None: ...
|
|
843
|
+
@property
|
|
844
|
+
def beta_P(self) -> dict[int, float]: ...
|
|
845
|
+
@beta_P.setter
|
|
846
|
+
def beta_P(
|
|
847
|
+
self, arg0: collections.abc.Mapping[typing.SupportsInt, typing.SupportsFloat]
|
|
848
|
+
) -> None: ...
|
|
849
|
+
@property
|
|
850
|
+
def etchStopDepth(self) -> float: ...
|
|
851
|
+
@etchStopDepth.setter
|
|
852
|
+
def etchStopDepth(self, arg0: typing.SupportsFloat) -> None: ...
|
|
853
|
+
@property
|
|
854
|
+
def etchantFlux(self) -> float: ...
|
|
855
|
+
@etchantFlux.setter
|
|
856
|
+
def etchantFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
857
|
+
@property
|
|
858
|
+
def ionFlux(self) -> float: ...
|
|
859
|
+
@ionFlux.setter
|
|
860
|
+
def ionFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
861
|
+
@property
|
|
862
|
+
def passivationFlux(self) -> float: ...
|
|
863
|
+
@passivationFlux.setter
|
|
864
|
+
def passivationFlux(self, arg0: typing.SupportsFloat) -> None: ...
|
|
865
|
+
|
|
866
|
+
class PlasmaEtchingParametersIons:
|
|
867
|
+
def __init__(self) -> None: ...
|
|
868
|
+
@property
|
|
869
|
+
def exponent(self) -> float: ...
|
|
870
|
+
@exponent.setter
|
|
871
|
+
def exponent(self, arg0: typing.SupportsFloat) -> None: ...
|
|
872
|
+
@property
|
|
873
|
+
def inflectAngle(self) -> float: ...
|
|
874
|
+
@inflectAngle.setter
|
|
875
|
+
def inflectAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
876
|
+
@property
|
|
877
|
+
def meanEnergy(self) -> float: ...
|
|
878
|
+
@meanEnergy.setter
|
|
879
|
+
def meanEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
880
|
+
@property
|
|
881
|
+
def minAngle(self) -> float: ...
|
|
882
|
+
@minAngle.setter
|
|
883
|
+
def minAngle(self, arg0: typing.SupportsFloat) -> None: ...
|
|
884
|
+
@property
|
|
885
|
+
def n_l(self) -> float: ...
|
|
886
|
+
@n_l.setter
|
|
887
|
+
def n_l(self, arg0: typing.SupportsFloat) -> None: ...
|
|
888
|
+
@property
|
|
889
|
+
def sigmaEnergy(self) -> float: ...
|
|
890
|
+
@sigmaEnergy.setter
|
|
891
|
+
def sigmaEnergy(self, arg0: typing.SupportsFloat) -> None: ...
|
|
892
|
+
@property
|
|
893
|
+
def thetaRMax(self) -> float: ...
|
|
894
|
+
@thetaRMax.setter
|
|
895
|
+
def thetaRMax(self, arg0: typing.SupportsFloat) -> None: ...
|
|
896
|
+
@property
|
|
897
|
+
def thetaRMin(self) -> float: ...
|
|
898
|
+
@thetaRMin.setter
|
|
899
|
+
def thetaRMin(self, arg0: typing.SupportsFloat) -> None: ...
|
|
900
|
+
|
|
901
|
+
class PlasmaEtchingParametersMask:
|
|
902
|
+
def __init__(self) -> None: ...
|
|
903
|
+
@property
|
|
904
|
+
def A_sp(self) -> float: ...
|
|
905
|
+
@A_sp.setter
|
|
906
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
907
|
+
@property
|
|
908
|
+
def B_sp(self) -> float: ...
|
|
909
|
+
@B_sp.setter
|
|
910
|
+
def B_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
911
|
+
@property
|
|
912
|
+
def Eth_sp(self) -> float: ...
|
|
913
|
+
@Eth_sp.setter
|
|
914
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
915
|
+
@property
|
|
916
|
+
def rho(self) -> float: ...
|
|
917
|
+
@rho.setter
|
|
918
|
+
def rho(self, arg0: typing.SupportsFloat) -> None: ...
|
|
919
|
+
|
|
920
|
+
class PlasmaEtchingParametersPassivation:
|
|
921
|
+
def __init__(self) -> None: ...
|
|
922
|
+
@property
|
|
923
|
+
def A_ie(self) -> float: ...
|
|
924
|
+
@A_ie.setter
|
|
925
|
+
def A_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
926
|
+
@property
|
|
927
|
+
def Eth_ie(self) -> float: ...
|
|
928
|
+
@Eth_ie.setter
|
|
929
|
+
def Eth_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
930
|
+
|
|
931
|
+
class PlasmaEtchingParametersPolymer:
|
|
932
|
+
def __init__(self) -> None: ...
|
|
933
|
+
@property
|
|
934
|
+
def A_sp(self) -> float: ...
|
|
935
|
+
@A_sp.setter
|
|
936
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
937
|
+
@property
|
|
938
|
+
def B_sp(self) -> float: ...
|
|
939
|
+
@B_sp.setter
|
|
940
|
+
def B_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
941
|
+
@property
|
|
942
|
+
def Eth_sp(self) -> float: ...
|
|
943
|
+
@Eth_sp.setter
|
|
944
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
945
|
+
@property
|
|
946
|
+
def rho(self) -> float: ...
|
|
947
|
+
@rho.setter
|
|
948
|
+
def rho(self, arg0: typing.SupportsFloat) -> None: ...
|
|
949
|
+
|
|
950
|
+
class PlasmaEtchingParametersSubstrate:
|
|
951
|
+
def __init__(self) -> None: ...
|
|
952
|
+
@property
|
|
953
|
+
def A_ie(self) -> float: ...
|
|
954
|
+
@A_ie.setter
|
|
955
|
+
def A_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
956
|
+
@property
|
|
957
|
+
def A_sp(self) -> float: ...
|
|
958
|
+
@A_sp.setter
|
|
959
|
+
def A_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
960
|
+
@property
|
|
961
|
+
def B_ie(self) -> float: ...
|
|
962
|
+
@B_ie.setter
|
|
963
|
+
def B_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
964
|
+
@property
|
|
965
|
+
def B_sp(self) -> float: ...
|
|
966
|
+
@B_sp.setter
|
|
967
|
+
def B_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
968
|
+
@property
|
|
969
|
+
def Eth_ie(self) -> float: ...
|
|
970
|
+
@Eth_ie.setter
|
|
971
|
+
def Eth_ie(self, arg0: typing.SupportsFloat) -> None: ...
|
|
972
|
+
@property
|
|
973
|
+
def Eth_sp(self) -> float: ...
|
|
974
|
+
@Eth_sp.setter
|
|
975
|
+
def Eth_sp(self, arg0: typing.SupportsFloat) -> None: ...
|
|
976
|
+
@property
|
|
977
|
+
def beta_sigma(self) -> float: ...
|
|
978
|
+
@beta_sigma.setter
|
|
979
|
+
def beta_sigma(self, arg0: typing.SupportsFloat) -> None: ...
|
|
980
|
+
@property
|
|
981
|
+
def k_sigma(self) -> float: ...
|
|
982
|
+
@k_sigma.setter
|
|
983
|
+
def k_sigma(self, arg0: typing.SupportsFloat) -> None: ...
|
|
984
|
+
@property
|
|
985
|
+
def rho(self) -> float: ...
|
|
986
|
+
@rho.setter
|
|
987
|
+
def rho(self, arg0: typing.SupportsFloat) -> None: ...
|
|
988
|
+
|
|
989
|
+
class ProcessParams:
|
|
990
|
+
def __init__(self) -> None: ...
|
|
991
|
+
@typing.overload
|
|
992
|
+
def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
|
|
993
|
+
@typing.overload
|
|
994
|
+
def getScalarData(self, arg0: typing.SupportsInt) -> float: ...
|
|
995
|
+
@typing.overload
|
|
996
|
+
def getScalarData(self, arg0: str) -> float: ...
|
|
997
|
+
@typing.overload
|
|
998
|
+
def getScalarData(self) -> list[float]: ...
|
|
999
|
+
@typing.overload
|
|
1000
|
+
def getScalarData(self) -> list[float]: ...
|
|
1001
|
+
def getScalarDataIndex(self, arg0: str) -> int: ...
|
|
1002
|
+
def getScalarDataLabel(self, arg0: typing.SupportsInt) -> str: ...
|
|
1003
|
+
def insertNextScalar(self, arg0: typing.SupportsFloat, arg1: str) -> None: ...
|
|
1004
|
+
|
|
1005
|
+
class RateSet:
|
|
1006
|
+
calculateVisibility: bool
|
|
1007
|
+
def __init__(
|
|
1008
|
+
self,
|
|
1009
|
+
direction: typing.Annotated[
|
|
1010
|
+
collections.abc.Sequence[typing.SupportsFloat], "FixedSize(3)"
|
|
1011
|
+
] = [0.0, 0.0, 0.0],
|
|
1012
|
+
directionalVelocity: typing.SupportsFloat = 0.0,
|
|
1013
|
+
isotropicVelocity: typing.SupportsFloat = 0.0,
|
|
1014
|
+
maskMaterials: collections.abc.Sequence[Material] = ...,
|
|
1015
|
+
calculateVisibility: bool = True,
|
|
1016
|
+
) -> None: ...
|
|
1017
|
+
def print(self) -> None: ...
|
|
1018
|
+
@property
|
|
1019
|
+
def direction(self) -> typing.Annotated[list[float], "FixedSize(3)"]: ...
|
|
1020
|
+
@direction.setter
|
|
1021
|
+
def direction(
|
|
1022
|
+
self,
|
|
1023
|
+
arg0: typing.Annotated[
|
|
1024
|
+
collections.abc.Sequence[typing.SupportsFloat], "FixedSize(3)"
|
|
1025
|
+
],
|
|
1026
|
+
) -> None: ...
|
|
1027
|
+
@property
|
|
1028
|
+
def directionalVelocity(self) -> float: ...
|
|
1029
|
+
@directionalVelocity.setter
|
|
1030
|
+
def directionalVelocity(self, arg0: typing.SupportsFloat) -> None: ...
|
|
1031
|
+
@property
|
|
1032
|
+
def isotropicVelocity(self) -> float: ...
|
|
1033
|
+
@isotropicVelocity.setter
|
|
1034
|
+
def isotropicVelocity(self, arg0: typing.SupportsFloat) -> None: ...
|
|
1035
|
+
@property
|
|
1036
|
+
def maskMaterials(self) -> list[Material]: ...
|
|
1037
|
+
@maskMaterials.setter
|
|
1038
|
+
def maskMaterials(self, arg0: collections.abc.Sequence[Material]) -> None: ...
|
|
1039
|
+
|
|
1040
|
+
class RayTracingParameters:
|
|
1041
|
+
ignoreFluxBoundaries: bool
|
|
1042
|
+
normalizationType: NormalizationType
|
|
1043
|
+
useRandomSeeds: bool
|
|
1044
|
+
def __init__(self) -> None: ...
|
|
1045
|
+
def toMetaData(self) -> dict[str, list[float]]:
|
|
1046
|
+
"""
|
|
1047
|
+
Convert the ray tracing parameters to a metadata dict.
|
|
1048
|
+
"""
|
|
1049
|
+
|
|
1050
|
+
def toMetaDataString(self) -> str:
|
|
1051
|
+
"""
|
|
1052
|
+
Convert the ray tracing parameters to a metadata string.
|
|
1053
|
+
"""
|
|
1054
|
+
|
|
1055
|
+
@property
|
|
1056
|
+
def diskRadius(self) -> float: ...
|
|
1057
|
+
@diskRadius.setter
|
|
1058
|
+
def diskRadius(self, arg0: typing.SupportsFloat) -> None: ...
|
|
1059
|
+
@property
|
|
1060
|
+
def raysPerPoint(self) -> int: ...
|
|
1061
|
+
@raysPerPoint.setter
|
|
1062
|
+
def raysPerPoint(self, arg0: typing.SupportsInt) -> None: ...
|
|
1063
|
+
@property
|
|
1064
|
+
def smoothingNeighbors(self) -> int: ...
|
|
1065
|
+
@smoothingNeighbors.setter
|
|
1066
|
+
def smoothingNeighbors(self, arg0: typing.SupportsInt) -> None: ...
|
|
1067
|
+
|
|
1068
|
+
class Slice:
|
|
1069
|
+
@typing.overload
|
|
1070
|
+
def __init__(self) -> None: ...
|
|
1071
|
+
@typing.overload
|
|
1072
|
+
def __init__(
|
|
1073
|
+
self,
|
|
1074
|
+
inputDomain: viennaps.d3.Domain,
|
|
1075
|
+
outputDomain: viennaps.d2.Domain,
|
|
1076
|
+
sliceDimension: typing.SupportsInt,
|
|
1077
|
+
slicePosition: typing.SupportsFloat,
|
|
1078
|
+
) -> None: ...
|
|
1079
|
+
def apply(self) -> None:
|
|
1080
|
+
"""
|
|
1081
|
+
Run the slicing.
|
|
1082
|
+
"""
|
|
1083
|
+
|
|
1084
|
+
def setInputDomain(self, arg0: viennaps.d3.Domain) -> None:
|
|
1085
|
+
"""
|
|
1086
|
+
Set the input domain to be sliced.
|
|
1087
|
+
"""
|
|
1088
|
+
|
|
1089
|
+
def setOutputDomain(self, arg0: viennaps.d2.Domain) -> None:
|
|
1090
|
+
"""
|
|
1091
|
+
Set the output domain. The 2D output domain will be overwritten by the sliced domain.
|
|
1092
|
+
"""
|
|
1093
|
+
|
|
1094
|
+
def setReflectX(self, arg0: bool) -> None:
|
|
1095
|
+
"""
|
|
1096
|
+
Set whether to reflect the slice along the X axis.
|
|
1097
|
+
"""
|
|
1098
|
+
|
|
1099
|
+
def setSliceDimension(self, arg0: typing.SupportsInt) -> None:
|
|
1100
|
+
"""
|
|
1101
|
+
Set the dimension along which to slice (0, 1).
|
|
1102
|
+
"""
|
|
1103
|
+
|
|
1104
|
+
def setSlicePosition(self, arg0: typing.SupportsFloat) -> None:
|
|
1105
|
+
"""
|
|
1106
|
+
Set the position along the slice dimension at which to slice.
|
|
1107
|
+
"""
|
|
1108
|
+
|
|
1109
|
+
class Time:
|
|
1110
|
+
@staticmethod
|
|
1111
|
+
def convertMillisecond() -> float: ...
|
|
1112
|
+
@staticmethod
|
|
1113
|
+
def convertMinute() -> float: ...
|
|
1114
|
+
@staticmethod
|
|
1115
|
+
def convertSecond() -> float: ...
|
|
1116
|
+
@staticmethod
|
|
1117
|
+
def getInstance() -> Time: ...
|
|
1118
|
+
@staticmethod
|
|
1119
|
+
def setUnit(arg0: str) -> None: ...
|
|
1120
|
+
@staticmethod
|
|
1121
|
+
def toShortString() -> str: ...
|
|
1122
|
+
@staticmethod
|
|
1123
|
+
def toString() -> str: ...
|
|
1124
|
+
|
|
1125
|
+
class TimeUnit(enum.IntEnum):
|
|
1126
|
+
MILLISECOND: typing.ClassVar[TimeUnit] # value = <TimeUnit.MILLISECOND: 2>
|
|
1127
|
+
MINUTE: typing.ClassVar[TimeUnit] # value = <TimeUnit.MINUTE: 0>
|
|
1128
|
+
SECOND: typing.ClassVar[TimeUnit] # value = <TimeUnit.SECOND: 1>
|
|
1129
|
+
UNDEFINED: typing.ClassVar[TimeUnit] # value = <TimeUnit.UNDEFINED: 3>
|
|
1130
|
+
@classmethod
|
|
1131
|
+
def __new__(cls, value): ...
|
|
1132
|
+
def __format__(self, format_spec):
|
|
1133
|
+
"""
|
|
1134
|
+
Convert to a string according to format_spec.
|
|
1135
|
+
"""
|
|
1136
|
+
|
|
1137
|
+
def gpuAvailable() -> bool:
|
|
1138
|
+
"""
|
|
1139
|
+
Check if ViennaPS was compiled with GPU support.
|
|
1140
|
+
"""
|
|
1141
|
+
|
|
1142
|
+
def setNumThreads(arg0: typing.SupportsInt) -> None: ...
|
|
1143
|
+
|
|
1144
|
+
__version__: str = "4.0.1"
|
|
1145
|
+
version: str = "4.0.1"
|