ansys-fluent-core 0.27.dev1__py3-none-any.whl → 0.28.dev0__py3-none-any.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 ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +22 -9
- ansys/fluent/core/_version.py +5 -2
- ansys/fluent/core/codegen/__init__.py +0 -3
- ansys/fluent/core/codegen/allapigen.py +1 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +44 -10
- ansys/fluent/core/codegen/datamodelgen.py +53 -12
- ansys/fluent/core/codegen/settingsgen.py +21 -12
- ansys/fluent/core/codegen/settingsgen_old.py +2 -2
- ansys/fluent/core/codegen/tuigen.py +1 -1
- ansys/fluent/core/codegen/write_settings_yaml.py +3 -4
- ansys/fluent/core/data_model_cache.py +132 -70
- ansys/fluent/core/docs/README.rst +2 -2
- ansys/fluent/core/examples/downloads.py +3 -5
- ansys/fluent/core/exceptions.py +1 -0
- ansys/fluent/core/file_session.py +59 -131
- ansys/fluent/core/filereader/case_file.py +17 -17
- ansys/fluent/core/filereader/casereader.py +2 -1
- ansys/fluent/core/filereader/data_file.py +7 -7
- ansys/fluent/core/filereader/lispy.py +6 -1
- ansys/fluent/core/fluent_connection.py +35 -7
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_222/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_222/PartManagement.py +28 -28
- ansys/fluent/core/generated/datamodel_222/meshing.py +301 -301
- ansys/fluent/core/generated/datamodel_222/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_231/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_231/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_231/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_231/meshing.py +317 -317
- ansys/fluent/core/generated/datamodel_231/solverworkflow.py +51 -51
- ansys/fluent/core/generated/datamodel_231/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_232/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_232/PartManagement.py +55 -55
- ansys/fluent/core/generated/datamodel_232/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_232/meshing.py +335 -335
- ansys/fluent/core/generated/datamodel_232/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_232/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_241/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_241/PartManagement.py +57 -57
- ansys/fluent/core/generated/datamodel_241/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_241/meshing.py +361 -361
- ansys/fluent/core/generated/datamodel_241/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_241/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_242/MeshingUtilities.py +240 -240
- ansys/fluent/core/generated/datamodel_242/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_242/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_242/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_242/meshing.py +371 -371
- ansys/fluent/core/generated/datamodel_242/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_242/workflow.py +9 -9
- ansys/fluent/core/generated/datamodel_251/MeshingUtilities.py +244 -244
- ansys/fluent/core/generated/datamodel_251/PMFileManagement.py +2 -2
- ansys/fluent/core/generated/datamodel_251/PartManagement.py +60 -60
- ansys/fluent/core/generated/datamodel_251/flicing.py +51 -51
- ansys/fluent/core/generated/datamodel_251/meshing.py +384 -382
- ansys/fluent/core/generated/datamodel_251/preferences.py +7 -0
- ansys/fluent/core/generated/datamodel_251/solverworkflow.py +58 -58
- ansys/fluent/core/generated/datamodel_251/workflow.py +10 -10
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +3664 -0
- ansys/fluent/core/generated/datamodel_252/PMFileManagement.py +288 -0
- ansys/fluent/core/generated/datamodel_252/PartManagement.py +2588 -0
- ansys/fluent/core/generated/datamodel_252/flicing.py +7972 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +2644 -0
- ansys/fluent/core/generated/datamodel_252/preferences.py +2760 -0
- ansys/fluent/core/generated/datamodel_252/solverworkflow.py +479 -0
- ansys/fluent/core/generated/datamodel_252/workflow.py +466 -0
- ansys/fluent/core/generated/fluent_version_251.py +4 -4
- ansys/fluent/core/generated/fluent_version_252.py +5 -0
- ansys/fluent/core/generated/meshing/tui_251.py +1139 -1179
- ansys/fluent/core/generated/meshing/tui_252.py +10181 -0
- ansys/fluent/core/generated/solver/settings_222.py +3 -3
- ansys/fluent/core/generated/solver/settings_231.py +4 -4
- ansys/fluent/core/generated/solver/settings_232.py +5 -5
- ansys/fluent/core/generated/solver/settings_241.py +5 -5
- ansys/fluent/core/generated/solver/settings_242.py +1185 -1185
- ansys/fluent/core/generated/solver/settings_251.py +1847 -1652
- ansys/fluent/core/generated/solver/settings_251.pyi +237 -211
- ansys/fluent/core/generated/solver/settings_252.py +90369 -0
- ansys/fluent/core/generated/solver/settings_252.pyi +63778 -0
- ansys/fluent/core/generated/solver/settings_builtin.py +612 -1
- ansys/fluent/core/generated/solver/settings_builtin.pyi +235 -0
- ansys/fluent/core/generated/solver/tui_251.py +2283 -2103
- ansys/fluent/core/generated/solver/tui_252.py +37720 -0
- ansys/fluent/core/journaling.py +1 -1
- ansys/fluent/core/launcher/error_handler.py +3 -0
- ansys/fluent/core/launcher/fluent_container.py +5 -0
- ansys/fluent/core/launcher/launcher.py +1 -2
- ansys/fluent/core/launcher/launcher_utils.py +17 -6
- ansys/fluent/core/launcher/process_launch_string.py +3 -3
- ansys/fluent/core/launcher/pyfluent_enums.py +1 -1
- ansys/fluent/core/launcher/slurm_launcher.py +2 -1
- ansys/fluent/core/launcher/standalone_launcher.py +11 -5
- ansys/fluent/core/launcher/watchdog.py +1 -1
- ansys/fluent/core/launcher/watchdog_exec +6 -3
- ansys/fluent/core/logging.py +1 -5
- ansys/fluent/core/parametric.py +6 -3
- ansys/fluent/core/post_objects/meta.py +1 -39
- ansys/fluent/core/post_objects/post_helper.py +4 -3
- ansys/fluent/core/post_objects/post_object_definitions.py +12 -7
- ansys/fluent/core/post_objects/post_objects_container.py +39 -2
- ansys/fluent/core/rpvars.py +2 -1
- ansys/fluent/core/scheduler/machine_list.py +3 -1
- ansys/fluent/core/search.py +109 -262
- ansys/fluent/core/services/__init__.py +3 -0
- ansys/fluent/core/services/api_upgrade.py +1 -0
- ansys/fluent/core/services/batch_ops.py +3 -1
- ansys/fluent/core/services/datamodel_se.py +37 -30
- ansys/fluent/core/services/datamodel_tui.py +8 -3
- ansys/fluent/core/services/deprecated_field_data.py +691 -0
- ansys/fluent/core/services/field_data.py +67 -357
- ansys/fluent/core/services/interceptors.py +6 -4
- ansys/fluent/core/services/reduction.py +1 -2
- ansys/fluent/core/services/scheme_eval.py +2 -3
- ansys/fluent/core/services/solution_variables.py +46 -48
- ansys/fluent/core/session.py +6 -4
- ansys/fluent/core/session_meshing.pyi +5 -0
- ansys/fluent/core/session_pure_meshing.pyi +4 -1
- ansys/fluent/core/session_solver_lite.py +2 -1
- ansys/fluent/core/solver/flobject.py +179 -207
- ansys/fluent/core/solver/flunits.py +65 -56
- ansys/fluent/core/solver/function/reduction.py +9 -29
- ansys/fluent/core/solver/settings_builtin_bases.py +28 -22
- ansys/fluent/core/solver/settings_builtin_data.py +105 -1
- ansys/fluent/core/solver/settings_external.py +0 -28
- ansys/fluent/core/streaming_services/field_data_streaming.py +1 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +0 -1
- ansys/fluent/core/systemcoupling.py +145 -14
- ansys/fluent/core/utils/__init__.py +18 -2
- ansys/fluent/core/utils/dump_session_data.py +7 -4
- ansys/fluent/core/utils/execution.py +2 -2
- ansys/fluent/core/utils/file_transfer_service.py +37 -42
- ansys/fluent/core/utils/fluent_version.py +20 -2
- ansys/fluent/core/utils/networking.py +39 -1
- ansys/fluent/core/workflow.py +3 -15
- ansys/fluent/tests/conftest.py +89 -7
- ansys/fluent/tests/fluent/test_version/test.py +2 -0
- ansys/fluent/tests/fluent_fixtures.py +195 -0
- ansys/fluent/tests/integration/test_optislang/test_optislang_integration.py +7 -7
- ansys/fluent/tests/parametric/test_parametric_workflow.py +14 -4
- ansys/fluent/tests/test_builtin_settings.py +28 -0
- ansys/fluent/tests/test_cad_to_post_ftm.py +1 -3
- ansys/fluent/tests/test_cad_to_post_wtm.py +1 -1
- ansys/fluent/tests/test_casereader.py +1 -1
- ansys/fluent/tests/test_codegen.py +116 -6
- ansys/fluent/tests/test_data_model_cache.py +1 -1
- ansys/fluent/tests/test_datamodel_service.py +14 -19
- ansys/fluent/tests/test_field_data.py +93 -45
- ansys/fluent/tests/test_file_session.py +32 -29
- ansys/fluent/tests/test_flobject.py +16 -58
- ansys/fluent/tests/test_fluent_fixes.py +5 -5
- ansys/fluent/tests/test_fluent_session.py +11 -8
- ansys/fluent/tests/test_fluent_version.py +1 -1
- ansys/fluent/tests/test_launcher.py +22 -5
- ansys/fluent/tests/test_launcher_remote.py +80 -4
- ansys/fluent/tests/test_meshing_utilities.py +93 -44
- ansys/fluent/tests/test_meshing_workflow.py +6 -6
- ansys/fluent/tests/test_meshingmode/test_meshing_launch.py +1 -1
- ansys/fluent/tests/test_new_meshing_workflow.py +42 -3
- ansys/fluent/tests/test_preferences.py +6 -6
- ansys/fluent/tests/test_reduction.py +61 -30
- ansys/fluent/tests/test_rp_vars.py +1 -1
- ansys/fluent/tests/test_search.py +53 -200
- ansys/fluent/tests/test_session.py +18 -13
- ansys/fluent/tests/test_settings_api.py +93 -29
- ansys/fluent/tests/test_settings_reader.py +1 -1
- ansys/fluent/tests/test_solver_monitors.py +1 -1
- ansys/fluent/tests/test_solvermode/test_calculationactivities.py +4 -4
- ansys/fluent/tests/test_solvermode/test_controls.py +3 -3
- ansys/fluent/tests/test_solvermode/test_methods.py +1 -1
- ansys/fluent/tests/test_solvermode/test_models.py +3 -3
- ansys/fluent/tests/test_systemcoupling.py +33 -5
- ansys/fluent/tests/test_topy.py +2 -2
- ansys/fluent/tests/test_tui_api.py +5 -5
- ansys/fluent/tests/test_utils.py +1 -1
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/METADATA +6 -17
- ansys_fluent_core-0.28.dev0.dist-info/RECORD +291 -0
- ansys/fluent/core/generated/api_tree_222.pickle +0 -0
- ansys/fluent/core/generated/api_tree_231.pickle +0 -0
- ansys/fluent/core/generated/api_tree_232.pickle +0 -0
- ansys/fluent/core/generated/api_tree_241.pickle +0 -0
- ansys/fluent/core/generated/api_tree_242.pickle +0 -0
- ansys/fluent/core/generated/api_tree_251.pickle +0 -0
- ansys/fluent/tests/test_tests_util.py +0 -47
- ansys/fluent/tests/util/__init__.py +0 -38
- ansys_fluent_core-0.27.dev1.dist-info/RECORD +0 -283
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/AUTHORS +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.27.dev1.dist-info → ansys_fluent_core-0.28.dev0.dist-info}/WHEEL +0 -0
|
@@ -130,85 +130,85 @@ class Root(PyMenu):
|
|
|
130
130
|
|
|
131
131
|
class AllOversetNameList(PyTextual):
|
|
132
132
|
"""
|
|
133
|
-
Parameter AllOversetNameList of value type
|
|
133
|
+
Parameter AllOversetNameList of value type list[str].
|
|
134
134
|
"""
|
|
135
135
|
pass
|
|
136
136
|
|
|
137
137
|
class AllOversetSizeList(PyTextual):
|
|
138
138
|
"""
|
|
139
|
-
Parameter AllOversetSizeList of value type
|
|
139
|
+
Parameter AllOversetSizeList of value type list[str].
|
|
140
140
|
"""
|
|
141
141
|
pass
|
|
142
142
|
|
|
143
143
|
class AllOversetTypeList(PyTextual):
|
|
144
144
|
"""
|
|
145
|
-
Parameter AllOversetTypeList of value type
|
|
145
|
+
Parameter AllOversetTypeList of value type list[str].
|
|
146
146
|
"""
|
|
147
147
|
pass
|
|
148
148
|
|
|
149
149
|
class AllOversetVolumeFillList(PyTextual):
|
|
150
150
|
"""
|
|
151
|
-
Parameter AllOversetVolumeFillList of value type
|
|
151
|
+
Parameter AllOversetVolumeFillList of value type list[str].
|
|
152
152
|
"""
|
|
153
153
|
pass
|
|
154
154
|
|
|
155
155
|
class AllRegionFilterCategories(PyTextual):
|
|
156
156
|
"""
|
|
157
|
-
Parameter AllRegionFilterCategories of value type
|
|
157
|
+
Parameter AllRegionFilterCategories of value type list[str].
|
|
158
158
|
"""
|
|
159
159
|
pass
|
|
160
160
|
|
|
161
161
|
class AllRegionLeakageSizeList(PyTextual):
|
|
162
162
|
"""
|
|
163
|
-
Parameter AllRegionLeakageSizeList of value type
|
|
163
|
+
Parameter AllRegionLeakageSizeList of value type list[str].
|
|
164
164
|
"""
|
|
165
165
|
pass
|
|
166
166
|
|
|
167
167
|
class AllRegionLinkedConstructionSurfaceList(PyTextual):
|
|
168
168
|
"""
|
|
169
|
-
Parameter AllRegionLinkedConstructionSurfaceList of value type
|
|
169
|
+
Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
|
|
170
170
|
"""
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
class AllRegionMeshMethodList(PyTextual):
|
|
174
174
|
"""
|
|
175
|
-
Parameter AllRegionMeshMethodList of value type
|
|
175
|
+
Parameter AllRegionMeshMethodList of value type list[str].
|
|
176
176
|
"""
|
|
177
177
|
pass
|
|
178
178
|
|
|
179
179
|
class AllRegionNameList(PyTextual):
|
|
180
180
|
"""
|
|
181
|
-
Parameter AllRegionNameList of value type
|
|
181
|
+
Parameter AllRegionNameList of value type list[str].
|
|
182
182
|
"""
|
|
183
183
|
pass
|
|
184
184
|
|
|
185
185
|
class AllRegionOversetComponenList(PyTextual):
|
|
186
186
|
"""
|
|
187
|
-
Parameter AllRegionOversetComponenList of value type
|
|
187
|
+
Parameter AllRegionOversetComponenList of value type list[str].
|
|
188
188
|
"""
|
|
189
189
|
pass
|
|
190
190
|
|
|
191
191
|
class AllRegionSizeList(PyTextual):
|
|
192
192
|
"""
|
|
193
|
-
Parameter AllRegionSizeList of value type
|
|
193
|
+
Parameter AllRegionSizeList of value type list[str].
|
|
194
194
|
"""
|
|
195
195
|
pass
|
|
196
196
|
|
|
197
197
|
class AllRegionSourceList(PyTextual):
|
|
198
198
|
"""
|
|
199
|
-
Parameter AllRegionSourceList of value type
|
|
199
|
+
Parameter AllRegionSourceList of value type list[str].
|
|
200
200
|
"""
|
|
201
201
|
pass
|
|
202
202
|
|
|
203
203
|
class AllRegionTypeList(PyTextual):
|
|
204
204
|
"""
|
|
205
|
-
Parameter AllRegionTypeList of value type
|
|
205
|
+
Parameter AllRegionTypeList of value type list[str].
|
|
206
206
|
"""
|
|
207
207
|
pass
|
|
208
208
|
|
|
209
209
|
class AllRegionVolumeFillList(PyTextual):
|
|
210
210
|
"""
|
|
211
|
-
Parameter AllRegionVolumeFillList of value type
|
|
211
|
+
Parameter AllRegionVolumeFillList of value type list[str].
|
|
212
212
|
"""
|
|
213
213
|
pass
|
|
214
214
|
|
|
@@ -281,20 +281,20 @@ class Root(PyMenu):
|
|
|
281
281
|
TransitionRatio : float
|
|
282
282
|
Rate : float
|
|
283
283
|
FirstHeight : float
|
|
284
|
-
FaceScope :
|
|
285
|
-
RegionScope :
|
|
286
|
-
BlLabelList :
|
|
287
|
-
ZoneSelectionList :
|
|
288
|
-
ZoneLocation :
|
|
289
|
-
LocalPrismPreferences :
|
|
290
|
-
BLZoneList :
|
|
291
|
-
BLRegionList :
|
|
292
|
-
CompleteRegionScope :
|
|
293
|
-
CompleteBlLabelList :
|
|
294
|
-
CompleteBLZoneList :
|
|
295
|
-
CompleteBLRegionList :
|
|
296
|
-
CompleteZoneSelectionList :
|
|
297
|
-
CompleteLabelSelectionList :
|
|
284
|
+
FaceScope : dict[str, Any]
|
|
285
|
+
RegionScope : list[str]
|
|
286
|
+
BlLabelList : list[str]
|
|
287
|
+
ZoneSelectionList : list[str]
|
|
288
|
+
ZoneLocation : list[str]
|
|
289
|
+
LocalPrismPreferences : dict[str, Any]
|
|
290
|
+
BLZoneList : list[str]
|
|
291
|
+
BLRegionList : list[str]
|
|
292
|
+
CompleteRegionScope : list[str]
|
|
293
|
+
CompleteBlLabelList : list[str]
|
|
294
|
+
CompleteBLZoneList : list[str]
|
|
295
|
+
CompleteBLRegionList : list[str]
|
|
296
|
+
CompleteZoneSelectionList : list[str]
|
|
297
|
+
CompleteLabelSelectionList : list[str]
|
|
298
298
|
|
|
299
299
|
Returns
|
|
300
300
|
-------
|
|
@@ -317,20 +317,20 @@ class Root(PyMenu):
|
|
|
317
317
|
TransitionRatio : float
|
|
318
318
|
Rate : float
|
|
319
319
|
FirstHeight : float
|
|
320
|
-
FaceScope :
|
|
321
|
-
RegionScope :
|
|
322
|
-
BlLabelList :
|
|
323
|
-
ZoneSelectionList :
|
|
324
|
-
ZoneLocation :
|
|
325
|
-
LocalPrismPreferences :
|
|
326
|
-
BLZoneList :
|
|
327
|
-
BLRegionList :
|
|
328
|
-
CompleteRegionScope :
|
|
329
|
-
CompleteBlLabelList :
|
|
330
|
-
CompleteBLZoneList :
|
|
331
|
-
CompleteBLRegionList :
|
|
332
|
-
CompleteZoneSelectionList :
|
|
333
|
-
CompleteLabelSelectionList :
|
|
320
|
+
FaceScope : dict[str, Any]
|
|
321
|
+
RegionScope : list[str]
|
|
322
|
+
BlLabelList : list[str]
|
|
323
|
+
ZoneSelectionList : list[str]
|
|
324
|
+
ZoneLocation : list[str]
|
|
325
|
+
LocalPrismPreferences : dict[str, Any]
|
|
326
|
+
BLZoneList : list[str]
|
|
327
|
+
BLRegionList : list[str]
|
|
328
|
+
CompleteRegionScope : list[str]
|
|
329
|
+
CompleteBlLabelList : list[str]
|
|
330
|
+
CompleteBLZoneList : list[str]
|
|
331
|
+
CompleteBLRegionList : list[str]
|
|
332
|
+
CompleteZoneSelectionList : list[str]
|
|
333
|
+
CompleteLabelSelectionList : list[str]
|
|
334
334
|
|
|
335
335
|
Returns
|
|
336
336
|
-------
|
|
@@ -347,9 +347,9 @@ class Root(PyMenu):
|
|
|
347
347
|
MeshObject : str
|
|
348
348
|
NewBoundaryLabelName : str
|
|
349
349
|
NewBoundaryType : str
|
|
350
|
-
BoundaryFaceZoneList :
|
|
350
|
+
BoundaryFaceZoneList : list[str]
|
|
351
351
|
Merge : str
|
|
352
|
-
ZoneLocation :
|
|
352
|
+
ZoneLocation : list[str]
|
|
353
353
|
|
|
354
354
|
Returns
|
|
355
355
|
-------
|
|
@@ -365,17 +365,17 @@ class Root(PyMenu):
|
|
|
365
365
|
----------
|
|
366
366
|
LocalSettingsName : str
|
|
367
367
|
SelectionType : str
|
|
368
|
-
ObjectSelectionList :
|
|
369
|
-
LabelSelectionList :
|
|
370
|
-
ZoneSelectionList :
|
|
371
|
-
ZoneLocation :
|
|
372
|
-
EdgeSelectionList :
|
|
373
|
-
LocalSizeControlParameters :
|
|
368
|
+
ObjectSelectionList : list[str]
|
|
369
|
+
LabelSelectionList : list[str]
|
|
370
|
+
ZoneSelectionList : list[str]
|
|
371
|
+
ZoneLocation : list[str]
|
|
372
|
+
EdgeSelectionList : list[str]
|
|
373
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
374
374
|
ValueChanged : str
|
|
375
|
-
CompleteZoneSelectionList :
|
|
376
|
-
CompleteLabelSelectionList :
|
|
377
|
-
CompleteObjectSelectionList :
|
|
378
|
-
CompleteEdgeSelectionList :
|
|
375
|
+
CompleteZoneSelectionList : list[str]
|
|
376
|
+
CompleteLabelSelectionList : list[str]
|
|
377
|
+
CompleteObjectSelectionList : list[str]
|
|
378
|
+
CompleteEdgeSelectionList : list[str]
|
|
379
379
|
|
|
380
380
|
Returns
|
|
381
381
|
-------
|
|
@@ -401,17 +401,17 @@ class Root(PyMenu):
|
|
|
401
401
|
BOIScopeTo : str
|
|
402
402
|
IgnoreOrientation : str
|
|
403
403
|
BOIZoneorLabel : str
|
|
404
|
-
BOIFaceLabelList :
|
|
405
|
-
BOIFaceZoneList :
|
|
406
|
-
EdgeLabelList :
|
|
407
|
-
TopologyList :
|
|
404
|
+
BOIFaceLabelList : list[str]
|
|
405
|
+
BOIFaceZoneList : list[str]
|
|
406
|
+
EdgeLabelList : list[str]
|
|
407
|
+
TopologyList : list[str]
|
|
408
408
|
BOIPatchingtoggle : bool
|
|
409
409
|
DrawSizeControl : bool
|
|
410
|
-
ZoneLocation :
|
|
411
|
-
CompleteFaceZoneList :
|
|
412
|
-
CompleteFaceLabelList :
|
|
413
|
-
CompleteEdgeLabelList :
|
|
414
|
-
CompleteTopologyList :
|
|
410
|
+
ZoneLocation : list[str]
|
|
411
|
+
CompleteFaceZoneList : list[str]
|
|
412
|
+
CompleteFaceLabelList : list[str]
|
|
413
|
+
CompleteEdgeLabelList : list[str]
|
|
414
|
+
CompleteTopologyList : list[str]
|
|
415
415
|
|
|
416
416
|
Returns
|
|
417
417
|
-------
|
|
@@ -431,12 +431,12 @@ class Root(PyMenu):
|
|
|
431
431
|
FillWith : str
|
|
432
432
|
UseSweepSize : str
|
|
433
433
|
MaxSweepSize : float
|
|
434
|
-
RegionScope :
|
|
434
|
+
RegionScope : list[str]
|
|
435
435
|
SourceMethod : str
|
|
436
436
|
ParallelSelection : bool
|
|
437
|
-
LabelSourceList :
|
|
438
|
-
ZoneSourceList :
|
|
439
|
-
ZoneLocation :
|
|
437
|
+
LabelSourceList : list[str]
|
|
438
|
+
ZoneSourceList : list[str]
|
|
439
|
+
ZoneLocation : list[str]
|
|
440
440
|
AssignSizeUsing : str
|
|
441
441
|
Intervals : int
|
|
442
442
|
Size : float
|
|
@@ -445,10 +445,10 @@ class Root(PyMenu):
|
|
|
445
445
|
GrowthMethod : str
|
|
446
446
|
GrowthRate : float
|
|
447
447
|
BiasFactor : float
|
|
448
|
-
EdgeLabelList :
|
|
449
|
-
CFDSurfaceMeshControls :
|
|
450
|
-
CompleteRegionScope :
|
|
451
|
-
CompleteEdgeScope :
|
|
448
|
+
EdgeLabelList : list[str]
|
|
449
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
450
|
+
CompleteRegionScope : list[str]
|
|
451
|
+
CompleteEdgeScope : list[str]
|
|
452
452
|
|
|
453
453
|
Returns
|
|
454
454
|
-------
|
|
@@ -470,9 +470,9 @@ class Root(PyMenu):
|
|
|
470
470
|
LastAspectRatio : float
|
|
471
471
|
Rate : float
|
|
472
472
|
FirstHeight : float
|
|
473
|
-
FaceLabelList :
|
|
474
|
-
EdgeLabelList :
|
|
475
|
-
PrimeShellBLPreferences :
|
|
473
|
+
FaceLabelList : list[str]
|
|
474
|
+
EdgeLabelList : list[str]
|
|
475
|
+
PrimeShellBLPreferences : dict[str, Any]
|
|
476
476
|
|
|
477
477
|
Returns
|
|
478
478
|
-------
|
|
@@ -488,10 +488,10 @@ class Root(PyMenu):
|
|
|
488
488
|
----------
|
|
489
489
|
ZeroThicknessName : str
|
|
490
490
|
SelectionType : str
|
|
491
|
-
ZoneSelectionList :
|
|
492
|
-
ZoneLocation :
|
|
493
|
-
ObjectSelectionList :
|
|
494
|
-
LabelSelectionList :
|
|
491
|
+
ZoneSelectionList : list[str]
|
|
492
|
+
ZoneLocation : list[str]
|
|
493
|
+
ObjectSelectionList : list[str]
|
|
494
|
+
LabelSelectionList : list[str]
|
|
495
495
|
Distance : float
|
|
496
496
|
|
|
497
497
|
Returns
|
|
@@ -510,18 +510,18 @@ class Root(PyMenu):
|
|
|
510
510
|
ZoneType : str
|
|
511
511
|
PatchType : str
|
|
512
512
|
SelectionType : str
|
|
513
|
-
LabelSelectionList :
|
|
514
|
-
ZoneSelectionList :
|
|
515
|
-
TopologyList :
|
|
516
|
-
CreatePatchPreferences :
|
|
513
|
+
LabelSelectionList : list[str]
|
|
514
|
+
ZoneSelectionList : list[str]
|
|
515
|
+
TopologyList : list[str]
|
|
516
|
+
CreatePatchPreferences : dict[str, Any]
|
|
517
517
|
ObjectAssociation : str
|
|
518
518
|
NewObjectName : str
|
|
519
519
|
PatchObjectName : str
|
|
520
|
-
CapLabels :
|
|
521
|
-
ZoneLocation :
|
|
522
|
-
CompleteZoneSelectionList :
|
|
523
|
-
CompleteLabelSelectionList :
|
|
524
|
-
CompleteTopologyList :
|
|
520
|
+
CapLabels : list[str]
|
|
521
|
+
ZoneLocation : list[str]
|
|
522
|
+
CompleteZoneSelectionList : list[str]
|
|
523
|
+
CompleteLabelSelectionList : list[str]
|
|
524
|
+
CompleteTopologyList : list[str]
|
|
525
525
|
|
|
526
526
|
Returns
|
|
527
527
|
-------
|
|
@@ -543,7 +543,7 @@ class Root(PyMenu):
|
|
|
543
543
|
GlobalMin : float
|
|
544
544
|
GlobalMax : float
|
|
545
545
|
GlobalGrowthRate : float
|
|
546
|
-
MeshControlOptions :
|
|
546
|
+
MeshControlOptions : dict[str, Any]
|
|
547
547
|
|
|
548
548
|
Returns
|
|
549
549
|
-------
|
|
@@ -622,15 +622,15 @@ class Root(PyMenu):
|
|
|
622
622
|
BOIMaxSize : float
|
|
623
623
|
BOISizeName : str
|
|
624
624
|
SelectionType : str
|
|
625
|
-
ZoneSelectionList :
|
|
626
|
-
ZoneLocation :
|
|
627
|
-
LabelSelectionList :
|
|
628
|
-
ObjectSelectionList :
|
|
629
|
-
ZoneSelectionSingle :
|
|
630
|
-
ObjectSelectionSingle :
|
|
631
|
-
BoundingBoxObject :
|
|
632
|
-
OffsetObject :
|
|
633
|
-
CylinderObject :
|
|
625
|
+
ZoneSelectionList : list[str]
|
|
626
|
+
ZoneLocation : list[str]
|
|
627
|
+
LabelSelectionList : list[str]
|
|
628
|
+
ObjectSelectionList : list[str]
|
|
629
|
+
ZoneSelectionSingle : list[str]
|
|
630
|
+
ObjectSelectionSingle : list[str]
|
|
631
|
+
BoundingBoxObject : dict[str, Any]
|
|
632
|
+
OffsetObject : dict[str, Any]
|
|
633
|
+
CylinderObject : dict[str, Any]
|
|
634
634
|
|
|
635
635
|
Returns
|
|
636
636
|
-------
|
|
@@ -649,15 +649,15 @@ class Root(PyMenu):
|
|
|
649
649
|
BOIMaxSize : float
|
|
650
650
|
BOISizeName : str
|
|
651
651
|
SelectionType : str
|
|
652
|
-
ZoneSelectionList :
|
|
653
|
-
ZoneLocation :
|
|
654
|
-
LabelSelectionList :
|
|
655
|
-
ObjectSelectionList :
|
|
656
|
-
ZoneSelectionSingle :
|
|
657
|
-
ObjectSelectionSingle :
|
|
658
|
-
BoundingBoxObject :
|
|
659
|
-
OffsetObject :
|
|
660
|
-
CylinderObject :
|
|
652
|
+
ZoneSelectionList : list[str]
|
|
653
|
+
ZoneLocation : list[str]
|
|
654
|
+
LabelSelectionList : list[str]
|
|
655
|
+
ObjectSelectionList : list[str]
|
|
656
|
+
ZoneSelectionSingle : list[str]
|
|
657
|
+
ObjectSelectionSingle : list[str]
|
|
658
|
+
BoundingBoxObject : dict[str, Any]
|
|
659
|
+
OffsetObject : dict[str, Any]
|
|
660
|
+
CylinderObject : dict[str, Any]
|
|
661
661
|
VolumeFill : str
|
|
662
662
|
|
|
663
663
|
Returns
|
|
@@ -677,15 +677,15 @@ class Root(PyMenu):
|
|
|
677
677
|
BOIMaxSize : float
|
|
678
678
|
BOISizeName : str
|
|
679
679
|
SelectionType : str
|
|
680
|
-
ZoneSelectionList :
|
|
681
|
-
ZoneLocation :
|
|
682
|
-
LabelSelectionList :
|
|
683
|
-
ObjectSelectionList :
|
|
684
|
-
ZoneSelectionSingle :
|
|
685
|
-
ObjectSelectionSingle :
|
|
686
|
-
BoundingBoxObject :
|
|
687
|
-
OffsetObject :
|
|
688
|
-
CylinderObject :
|
|
680
|
+
ZoneSelectionList : list[str]
|
|
681
|
+
ZoneLocation : list[str]
|
|
682
|
+
LabelSelectionList : list[str]
|
|
683
|
+
ObjectSelectionList : list[str]
|
|
684
|
+
ZoneSelectionSingle : list[str]
|
|
685
|
+
ObjectSelectionSingle : list[str]
|
|
686
|
+
BoundingBoxObject : dict[str, Any]
|
|
687
|
+
OffsetObject : dict[str, Any]
|
|
688
|
+
CylinderObject : dict[str, Any]
|
|
689
689
|
VolumeFill : str
|
|
690
690
|
|
|
691
691
|
Returns
|
|
@@ -702,11 +702,11 @@ class Root(PyMenu):
|
|
|
702
702
|
----------
|
|
703
703
|
ContactPatchName : str
|
|
704
704
|
SelectionType : str
|
|
705
|
-
ZoneSelectionList :
|
|
706
|
-
ZoneLocation :
|
|
707
|
-
ObjectSelectionList :
|
|
708
|
-
LabelSelectionList :
|
|
709
|
-
GroundZoneSelectionList :
|
|
705
|
+
ZoneSelectionList : list[str]
|
|
706
|
+
ZoneLocation : list[str]
|
|
707
|
+
ObjectSelectionList : list[str]
|
|
708
|
+
LabelSelectionList : list[str]
|
|
709
|
+
GroundZoneSelectionList : list[str]
|
|
710
710
|
Distance : float
|
|
711
711
|
FeatureAngle : float
|
|
712
712
|
PatchHole : bool
|
|
@@ -728,15 +728,15 @@ class Root(PyMenu):
|
|
|
728
728
|
CreationMethod : str
|
|
729
729
|
ExtractionMethod : str
|
|
730
730
|
SelectionType : str
|
|
731
|
-
ObjectSelectionList :
|
|
732
|
-
ZoneSelectionList :
|
|
733
|
-
ZoneLocation :
|
|
734
|
-
LabelSelectionList :
|
|
735
|
-
ObjectSelectionSingle :
|
|
736
|
-
ZoneSelectionSingle :
|
|
737
|
-
LabelSelectionSingle :
|
|
731
|
+
ObjectSelectionList : list[str]
|
|
732
|
+
ZoneSelectionList : list[str]
|
|
733
|
+
ZoneLocation : list[str]
|
|
734
|
+
LabelSelectionList : list[str]
|
|
735
|
+
ObjectSelectionSingle : list[str]
|
|
736
|
+
ZoneSelectionSingle : list[str]
|
|
737
|
+
LabelSelectionSingle : list[str]
|
|
738
738
|
OriginalObjectName : str
|
|
739
|
-
BoundingBoxObject :
|
|
739
|
+
BoundingBoxObject : dict[str, Any]
|
|
740
740
|
|
|
741
741
|
Returns
|
|
742
742
|
-------
|
|
@@ -755,10 +755,10 @@ class Root(PyMenu):
|
|
|
755
755
|
GapSizeRatio : float
|
|
756
756
|
GapSize : float
|
|
757
757
|
SelectionType : str
|
|
758
|
-
ZoneSelectionList :
|
|
759
|
-
ZoneLocation :
|
|
760
|
-
LabelSelectionList :
|
|
761
|
-
ObjectSelectionList :
|
|
758
|
+
ZoneSelectionList : list[str]
|
|
759
|
+
ZoneLocation : list[str]
|
|
760
|
+
LabelSelectionList : list[str]
|
|
761
|
+
ObjectSelectionList : list[str]
|
|
762
762
|
GapCoverBetweenZones : str
|
|
763
763
|
GapCoverRefineFactor : float
|
|
764
764
|
RefineWrapperBeforeProjection : str
|
|
@@ -783,15 +783,15 @@ class Root(PyMenu):
|
|
|
783
783
|
BOIMaxSize : float
|
|
784
784
|
BOISizeName : str
|
|
785
785
|
SelectionType : str
|
|
786
|
-
ZoneSelectionList :
|
|
787
|
-
ZoneLocation :
|
|
788
|
-
LabelSelectionList :
|
|
789
|
-
ObjectSelectionList :
|
|
790
|
-
ZoneSelectionSingle :
|
|
791
|
-
ObjectSelectionSingle :
|
|
792
|
-
BoundingBoxObject :
|
|
793
|
-
OffsetObject :
|
|
794
|
-
CylinderObject :
|
|
786
|
+
ZoneSelectionList : list[str]
|
|
787
|
+
ZoneLocation : list[str]
|
|
788
|
+
LabelSelectionList : list[str]
|
|
789
|
+
ObjectSelectionList : list[str]
|
|
790
|
+
ZoneSelectionSingle : list[str]
|
|
791
|
+
ObjectSelectionSingle : list[str]
|
|
792
|
+
BoundingBoxObject : dict[str, Any]
|
|
793
|
+
OffsetObject : dict[str, Any]
|
|
794
|
+
CylinderObject : dict[str, Any]
|
|
795
795
|
VolumeFill : str
|
|
796
796
|
|
|
797
797
|
Returns
|
|
@@ -807,7 +807,7 @@ class Root(PyMenu):
|
|
|
807
807
|
Parameters
|
|
808
808
|
----------
|
|
809
809
|
OversetInterfacesName : str
|
|
810
|
-
ObjectSelectionList :
|
|
810
|
+
ObjectSelectionList : list[str]
|
|
811
811
|
|
|
812
812
|
Returns
|
|
813
813
|
-------
|
|
@@ -829,11 +829,11 @@ class Root(PyMenu):
|
|
|
829
829
|
CellSizeP1P3 : float
|
|
830
830
|
CellSizeP1P4 : float
|
|
831
831
|
BufferSizeRatio : float
|
|
832
|
-
P1 :
|
|
833
|
-
P2 :
|
|
834
|
-
P3 :
|
|
835
|
-
P4 :
|
|
836
|
-
NonRectangularParameters :
|
|
832
|
+
P1 : list[float]
|
|
833
|
+
P2 : list[float]
|
|
834
|
+
P3 : list[float]
|
|
835
|
+
P4 : list[float]
|
|
836
|
+
NonRectangularParameters : dict[str, Any]
|
|
837
837
|
|
|
838
838
|
Returns
|
|
839
839
|
-------
|
|
@@ -866,8 +866,8 @@ class Root(PyMenu):
|
|
|
866
866
|
AddChild : str
|
|
867
867
|
LeakageName : str
|
|
868
868
|
SelectionType : str
|
|
869
|
-
DeadRegionsList :
|
|
870
|
-
RegionSelectionSingle :
|
|
869
|
+
DeadRegionsList : list[str]
|
|
870
|
+
RegionSelectionSingle : list[str]
|
|
871
871
|
DeadRegionsSize : float
|
|
872
872
|
PlaneClippingValue : int
|
|
873
873
|
PlaneDirection : str
|
|
@@ -890,7 +890,7 @@ class Root(PyMenu):
|
|
|
890
890
|
AddEnclosure : str
|
|
891
891
|
CloseCaps : str
|
|
892
892
|
LocalRefinementRegions : str
|
|
893
|
-
DescribeGeometryAndFlowOptions :
|
|
893
|
+
DescribeGeometryAndFlowOptions : dict[str, Any]
|
|
894
894
|
|
|
895
895
|
Returns
|
|
896
896
|
-------
|
|
@@ -925,17 +925,17 @@ class Root(PyMenu):
|
|
|
925
925
|
ExtractEdgesName : str
|
|
926
926
|
ExtractMethodType : str
|
|
927
927
|
SelectionType : str
|
|
928
|
-
ObjectSelectionList :
|
|
929
|
-
GeomObjectSelectionList :
|
|
930
|
-
ZoneSelectionList :
|
|
931
|
-
ZoneLocation :
|
|
932
|
-
LabelSelectionList :
|
|
928
|
+
ObjectSelectionList : list[str]
|
|
929
|
+
GeomObjectSelectionList : list[str]
|
|
930
|
+
ZoneSelectionList : list[str]
|
|
931
|
+
ZoneLocation : list[str]
|
|
932
|
+
LabelSelectionList : list[str]
|
|
933
933
|
FeatureAngleLocal : int
|
|
934
934
|
IndividualCollective : str
|
|
935
935
|
SharpAngle : int
|
|
936
|
-
CompleteObjectSelectionList :
|
|
937
|
-
CompleteGeomObjectSelectionList :
|
|
938
|
-
NonExtractedObjects :
|
|
936
|
+
CompleteObjectSelectionList : list[str]
|
|
937
|
+
CompleteGeomObjectSelectionList : list[str]
|
|
938
|
+
NonExtractedObjects : list[str]
|
|
939
939
|
|
|
940
940
|
Returns
|
|
941
941
|
-------
|
|
@@ -951,13 +951,13 @@ class Root(PyMenu):
|
|
|
951
951
|
----------
|
|
952
952
|
MExControlName : str
|
|
953
953
|
Method : str
|
|
954
|
-
ExternalBoundaryZoneList :
|
|
954
|
+
ExternalBoundaryZoneList : list[str]
|
|
955
955
|
TotalHeight : float
|
|
956
956
|
FirstHeight : float
|
|
957
957
|
NumberofLayers : int
|
|
958
958
|
GrowthRate : float
|
|
959
|
-
VMExtrudePreferences :
|
|
960
|
-
ZoneLocation :
|
|
959
|
+
VMExtrudePreferences : dict[str, Any]
|
|
960
|
+
ZoneLocation : list[str]
|
|
961
961
|
|
|
962
962
|
Returns
|
|
963
963
|
-------
|
|
@@ -977,7 +977,7 @@ class Root(PyMenu):
|
|
|
977
977
|
SizeFunctions : str
|
|
978
978
|
CurvatureNormalAngle : float
|
|
979
979
|
CellsPerGap : float
|
|
980
|
-
PrimeMeshPreferences :
|
|
980
|
+
PrimeMeshPreferences : dict[str, Any]
|
|
981
981
|
|
|
982
982
|
Returns
|
|
983
983
|
-------
|
|
@@ -1006,11 +1006,11 @@ class Root(PyMenu):
|
|
|
1006
1006
|
Parameters
|
|
1007
1007
|
----------
|
|
1008
1008
|
OrthogonalQualityLimit : float
|
|
1009
|
-
RegionScope :
|
|
1009
|
+
RegionScope : list[str]
|
|
1010
1010
|
NonConformal : str
|
|
1011
1011
|
SizeFunctionScaleFactor : float
|
|
1012
|
-
CFDSurfaceMeshControls :
|
|
1013
|
-
CompleteRegionScope :
|
|
1012
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1013
|
+
CompleteRegionScope : list[str]
|
|
1014
1014
|
|
|
1015
1015
|
Returns
|
|
1016
1016
|
-------
|
|
@@ -1055,13 +1055,13 @@ class Root(PyMenu):
|
|
|
1055
1055
|
|
|
1056
1056
|
Parameters
|
|
1057
1057
|
----------
|
|
1058
|
-
CFDSurfaceMeshControls :
|
|
1058
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1059
1059
|
SeparationRequired : str
|
|
1060
1060
|
SeparationAngle : float
|
|
1061
1061
|
RemeshSelectionType : str
|
|
1062
|
-
RemeshZoneList :
|
|
1063
|
-
RemeshLabelList :
|
|
1064
|
-
SurfaceMeshPreferences :
|
|
1062
|
+
RemeshZoneList : list[str]
|
|
1063
|
+
RemeshLabelList : list[str]
|
|
1064
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1065
1065
|
ImportType : str
|
|
1066
1066
|
AppendMesh : bool
|
|
1067
1067
|
CadFacetingFileName : str
|
|
@@ -1069,11 +1069,11 @@ class Root(PyMenu):
|
|
|
1069
1069
|
Pattern : str
|
|
1070
1070
|
LengthUnit : str
|
|
1071
1071
|
TesselationMethod : str
|
|
1072
|
-
OriginalZones :
|
|
1072
|
+
OriginalZones : list[str]
|
|
1073
1073
|
ExecuteShareTopology : str
|
|
1074
|
-
CADFacetingControls :
|
|
1075
|
-
CadImportOptions :
|
|
1076
|
-
ShareTopologyPreferences :
|
|
1074
|
+
CADFacetingControls : dict[str, Any]
|
|
1075
|
+
CadImportOptions : dict[str, Any]
|
|
1076
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1077
1077
|
PreviewSizeToggle : bool
|
|
1078
1078
|
|
|
1079
1079
|
Returns
|
|
@@ -1093,15 +1093,15 @@ class Root(PyMenu):
|
|
|
1093
1093
|
EnableParallel : bool
|
|
1094
1094
|
SaveVolumeMesh : bool
|
|
1095
1095
|
EditVolumeSettings : bool
|
|
1096
|
-
RegionNameList :
|
|
1097
|
-
RegionVolumeFillList :
|
|
1098
|
-
RegionSizeList :
|
|
1099
|
-
OldRegionNameList :
|
|
1100
|
-
OldRegionVolumeFillList :
|
|
1101
|
-
OldRegionSizeList :
|
|
1102
|
-
AllRegionNameList :
|
|
1103
|
-
AllRegionVolumeFillList :
|
|
1104
|
-
AllRegionSizeList :
|
|
1096
|
+
RegionNameList : list[str]
|
|
1097
|
+
RegionVolumeFillList : list[str]
|
|
1098
|
+
RegionSizeList : list[str]
|
|
1099
|
+
OldRegionNameList : list[str]
|
|
1100
|
+
OldRegionVolumeFillList : list[str]
|
|
1101
|
+
OldRegionSizeList : list[str]
|
|
1102
|
+
AllRegionNameList : list[str]
|
|
1103
|
+
AllRegionVolumeFillList : list[str]
|
|
1104
|
+
AllRegionSizeList : list[str]
|
|
1105
1105
|
AdvancedOptions : bool
|
|
1106
1106
|
SpikeRemovalAngle : float
|
|
1107
1107
|
DihedralMinAngle : float
|
|
@@ -1131,12 +1131,12 @@ class Root(PyMenu):
|
|
|
1131
1131
|
MeshFluidRegions : bool
|
|
1132
1132
|
MeshSolidRegions : bool
|
|
1133
1133
|
SizingMethod : str
|
|
1134
|
-
VolumeFillControls :
|
|
1134
|
+
VolumeFillControls : dict[str, Any]
|
|
1135
1135
|
RegionBasedPreferences : bool
|
|
1136
1136
|
ReMergeZones : str
|
|
1137
1137
|
ParallelMeshing : bool
|
|
1138
|
-
VolumeMeshPreferences :
|
|
1139
|
-
PrismPreferences :
|
|
1138
|
+
VolumeMeshPreferences : dict[str, Any]
|
|
1139
|
+
PrismPreferences : dict[str, Any]
|
|
1140
1140
|
InvokePrimsControl : str
|
|
1141
1141
|
OffsetMethodType : str
|
|
1142
1142
|
NumberOfLayers : int
|
|
@@ -1146,20 +1146,20 @@ class Root(PyMenu):
|
|
|
1146
1146
|
FirstHeight : float
|
|
1147
1147
|
MeshObject : str
|
|
1148
1148
|
MeshDeadRegions : bool
|
|
1149
|
-
BodyLabelList :
|
|
1149
|
+
BodyLabelList : list[str]
|
|
1150
1150
|
PrismLayers : bool
|
|
1151
1151
|
QuadTetTransition : str
|
|
1152
1152
|
MergeCellZones : bool
|
|
1153
|
-
FaceScope :
|
|
1154
|
-
RegionTetNameList :
|
|
1155
|
-
RegionTetMaxCellLengthList :
|
|
1156
|
-
RegionTetGrowthRateList :
|
|
1157
|
-
RegionHexNameList :
|
|
1158
|
-
RegionHexMaxCellLengthList :
|
|
1159
|
-
OldRegionTetMaxCellLengthList :
|
|
1160
|
-
OldRegionTetGrowthRateList :
|
|
1161
|
-
OldRegionHexMaxCellLengthList :
|
|
1162
|
-
CFDSurfaceMeshControls :
|
|
1153
|
+
FaceScope : dict[str, Any]
|
|
1154
|
+
RegionTetNameList : list[str]
|
|
1155
|
+
RegionTetMaxCellLengthList : list[str]
|
|
1156
|
+
RegionTetGrowthRateList : list[str]
|
|
1157
|
+
RegionHexNameList : list[str]
|
|
1158
|
+
RegionHexMaxCellLengthList : list[str]
|
|
1159
|
+
OldRegionTetMaxCellLengthList : list[str]
|
|
1160
|
+
OldRegionTetGrowthRateList : list[str]
|
|
1161
|
+
OldRegionHexMaxCellLengthList : list[str]
|
|
1162
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1163
1163
|
|
|
1164
1164
|
Returns
|
|
1165
1165
|
-------
|
|
@@ -1179,13 +1179,13 @@ class Root(PyMenu):
|
|
|
1179
1179
|
InvokeShareTopology : str
|
|
1180
1180
|
NonConformal : str
|
|
1181
1181
|
Multizone : str
|
|
1182
|
-
SetupInternals :
|
|
1183
|
-
SetupInternalTypes :
|
|
1184
|
-
OldZoneList :
|
|
1185
|
-
OldZoneTypeList :
|
|
1186
|
-
RegionList :
|
|
1187
|
-
EdgeLabels :
|
|
1188
|
-
SMImprovePreferences :
|
|
1182
|
+
SetupInternals : list[str]
|
|
1183
|
+
SetupInternalTypes : list[str]
|
|
1184
|
+
OldZoneList : list[str]
|
|
1185
|
+
OldZoneTypeList : list[str]
|
|
1186
|
+
RegionList : list[str]
|
|
1187
|
+
EdgeLabels : list[str]
|
|
1188
|
+
SMImprovePreferences : dict[str, Any]
|
|
1189
1189
|
|
|
1190
1190
|
Returns
|
|
1191
1191
|
-------
|
|
@@ -1202,20 +1202,20 @@ class Root(PyMenu):
|
|
|
1202
1202
|
MRFName : str
|
|
1203
1203
|
CreationMethod : str
|
|
1204
1204
|
SelectionType : str
|
|
1205
|
-
ObjectSelectionSingle :
|
|
1206
|
-
ZoneSelectionSingle :
|
|
1207
|
-
LabelSelectionSingle :
|
|
1208
|
-
ObjectSelectionList :
|
|
1209
|
-
ZoneSelectionList :
|
|
1210
|
-
ZoneLocation :
|
|
1211
|
-
LabelSelectionList :
|
|
1205
|
+
ObjectSelectionSingle : list[str]
|
|
1206
|
+
ZoneSelectionSingle : list[str]
|
|
1207
|
+
LabelSelectionSingle : list[str]
|
|
1208
|
+
ObjectSelectionList : list[str]
|
|
1209
|
+
ZoneSelectionList : list[str]
|
|
1210
|
+
ZoneLocation : list[str]
|
|
1211
|
+
LabelSelectionList : list[str]
|
|
1212
1212
|
DefeaturingSize : float
|
|
1213
1213
|
OffsetHeight : float
|
|
1214
|
-
Pivot :
|
|
1215
|
-
Axis :
|
|
1216
|
-
Rotation :
|
|
1217
|
-
CylinderObject :
|
|
1218
|
-
BoundingBoxObject :
|
|
1214
|
+
Pivot : dict[str, Any]
|
|
1215
|
+
Axis : dict[str, Any]
|
|
1216
|
+
Rotation : dict[str, Any]
|
|
1217
|
+
CylinderObject : dict[str, Any]
|
|
1218
|
+
BoundingBoxObject : dict[str, Any]
|
|
1219
1219
|
|
|
1220
1220
|
Returns
|
|
1221
1221
|
-------
|
|
@@ -1231,9 +1231,9 @@ class Root(PyMenu):
|
|
|
1231
1231
|
----------
|
|
1232
1232
|
DisplayGridName : str
|
|
1233
1233
|
SelectionType : str
|
|
1234
|
-
ObjectSelectionList :
|
|
1235
|
-
ZoneSelectionList :
|
|
1236
|
-
ZoneLocation :
|
|
1234
|
+
ObjectSelectionList : list[str]
|
|
1235
|
+
ZoneSelectionList : list[str]
|
|
1236
|
+
ZoneLocation : list[str]
|
|
1237
1237
|
AdvancedOptions : bool
|
|
1238
1238
|
DeviationMinValue : float
|
|
1239
1239
|
DeviationMaxValue : float
|
|
@@ -1253,15 +1253,15 @@ class Root(PyMenu):
|
|
|
1253
1253
|
Parameters
|
|
1254
1254
|
----------
|
|
1255
1255
|
NumberOfOrphans : str
|
|
1256
|
-
ObjectSelectionList :
|
|
1256
|
+
ObjectSelectionList : list[str]
|
|
1257
1257
|
EnableGridPriority : bool
|
|
1258
1258
|
DonorPriorityMethod : str
|
|
1259
1259
|
OverlapBoundaries : str
|
|
1260
1260
|
CheckOversetInterfaceIntersection : str
|
|
1261
|
-
RegionNameList :
|
|
1262
|
-
RegionSizeList :
|
|
1263
|
-
OldRegionNameList :
|
|
1264
|
-
OldRegionSizeList :
|
|
1261
|
+
RegionNameList : list[str]
|
|
1262
|
+
RegionSizeList : list[str]
|
|
1263
|
+
OldRegionNameList : list[str]
|
|
1264
|
+
OldRegionSizeList : list[str]
|
|
1265
1265
|
|
|
1266
1266
|
Returns
|
|
1267
1267
|
-------
|
|
@@ -1281,10 +1281,10 @@ class Root(PyMenu):
|
|
|
1281
1281
|
NewRegionType : str
|
|
1282
1282
|
LinkConstruction : str
|
|
1283
1283
|
SelectionType : str
|
|
1284
|
-
ZoneSelectionList :
|
|
1285
|
-
ZoneLocation :
|
|
1286
|
-
LabelSelectionList :
|
|
1287
|
-
ObjectSelectionList :
|
|
1284
|
+
ZoneSelectionList : list[str]
|
|
1285
|
+
ZoneLocation : list[str]
|
|
1286
|
+
LabelSelectionList : list[str]
|
|
1287
|
+
ObjectSelectionList : list[str]
|
|
1288
1288
|
GraphicalSelection : bool
|
|
1289
1289
|
ShowCoordinates : bool
|
|
1290
1290
|
X : float
|
|
@@ -1310,8 +1310,8 @@ class Root(PyMenu):
|
|
|
1310
1310
|
Type : str
|
|
1311
1311
|
GeometryFileName : str
|
|
1312
1312
|
MeshFileName : str
|
|
1313
|
-
ImportedObjects :
|
|
1314
|
-
CadImportOptions :
|
|
1313
|
+
ImportedObjects : list[str]
|
|
1314
|
+
CadImportOptions : dict[str, Any]
|
|
1315
1315
|
|
|
1316
1316
|
Returns
|
|
1317
1317
|
-------
|
|
@@ -1328,7 +1328,7 @@ class Root(PyMenu):
|
|
|
1328
1328
|
FileFormat : str
|
|
1329
1329
|
LengthUnit : str
|
|
1330
1330
|
MeshUnit : str
|
|
1331
|
-
ImportCadPreferences :
|
|
1331
|
+
ImportCadPreferences : dict[str, Any]
|
|
1332
1332
|
FileName : str
|
|
1333
1333
|
FileNames : str
|
|
1334
1334
|
MeshFileName : str
|
|
@@ -1337,7 +1337,7 @@ class Root(PyMenu):
|
|
|
1337
1337
|
AppendMesh : bool
|
|
1338
1338
|
Directory : str
|
|
1339
1339
|
Pattern : str
|
|
1340
|
-
CadImportOptions :
|
|
1340
|
+
CadImportOptions : dict[str, Any]
|
|
1341
1341
|
|
|
1342
1342
|
Returns
|
|
1343
1343
|
-------
|
|
@@ -1354,7 +1354,7 @@ class Root(PyMenu):
|
|
|
1354
1354
|
MeshObject : str
|
|
1355
1355
|
FaceQualityLimit : float
|
|
1356
1356
|
SQMinSize : float
|
|
1357
|
-
SMImprovePreferences :
|
|
1357
|
+
SMImprovePreferences : dict[str, Any]
|
|
1358
1358
|
|
|
1359
1359
|
Returns
|
|
1360
1360
|
-------
|
|
@@ -1369,7 +1369,7 @@ class Root(PyMenu):
|
|
|
1369
1369
|
Parameters
|
|
1370
1370
|
----------
|
|
1371
1371
|
CellQualityLimit : float
|
|
1372
|
-
VMImprovePreferences :
|
|
1372
|
+
VMImprovePreferences : dict[str, Any]
|
|
1373
1373
|
|
|
1374
1374
|
Returns
|
|
1375
1375
|
-------
|
|
@@ -1384,13 +1384,13 @@ class Root(PyMenu):
|
|
|
1384
1384
|
Parameters
|
|
1385
1385
|
----------
|
|
1386
1386
|
ChildName : str
|
|
1387
|
-
ObjectList :
|
|
1387
|
+
ObjectList : list[str]
|
|
1388
1388
|
AutoPopulateVector : str
|
|
1389
|
-
PatternVector :
|
|
1389
|
+
PatternVector : dict[str, Any]
|
|
1390
1390
|
Pitch : float
|
|
1391
1391
|
NumberOfUnits : int
|
|
1392
1392
|
CheckOverlappingFaces : str
|
|
1393
|
-
BatteryModelingOptions :
|
|
1393
|
+
BatteryModelingOptions : dict[str, Any]
|
|
1394
1394
|
|
|
1395
1395
|
Returns
|
|
1396
1396
|
-------
|
|
@@ -1409,7 +1409,7 @@ class Root(PyMenu):
|
|
|
1409
1409
|
Route : str
|
|
1410
1410
|
CreateObjectPer : str
|
|
1411
1411
|
NumParts : float
|
|
1412
|
-
2DRefaceting :
|
|
1412
|
+
2DRefaceting : dict[str, Any]
|
|
1413
1413
|
|
|
1414
1414
|
Returns
|
|
1415
1415
|
-------
|
|
@@ -1425,17 +1425,17 @@ class Root(PyMenu):
|
|
|
1425
1425
|
----------
|
|
1426
1426
|
LocalSettingsName : str
|
|
1427
1427
|
SelectionType : str
|
|
1428
|
-
ObjectSelectionList :
|
|
1429
|
-
LabelSelectionList :
|
|
1430
|
-
ZoneSelectionList :
|
|
1431
|
-
ZoneLocation :
|
|
1432
|
-
EdgeSelectionList :
|
|
1433
|
-
LocalSizeControlParameters :
|
|
1428
|
+
ObjectSelectionList : list[str]
|
|
1429
|
+
LabelSelectionList : list[str]
|
|
1430
|
+
ZoneSelectionList : list[str]
|
|
1431
|
+
ZoneLocation : list[str]
|
|
1432
|
+
EdgeSelectionList : list[str]
|
|
1433
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
1434
1434
|
ValueChanged : str
|
|
1435
|
-
CompleteZoneSelectionList :
|
|
1436
|
-
CompleteLabelSelectionList :
|
|
1437
|
-
CompleteObjectSelectionList :
|
|
1438
|
-
CompleteEdgeSelectionList :
|
|
1435
|
+
CompleteZoneSelectionList : list[str]
|
|
1436
|
+
CompleteLabelSelectionList : list[str]
|
|
1437
|
+
CompleteObjectSelectionList : list[str]
|
|
1438
|
+
CompleteEdgeSelectionList : list[str]
|
|
1439
1439
|
|
|
1440
1440
|
Returns
|
|
1441
1441
|
-------
|
|
@@ -1456,18 +1456,18 @@ class Root(PyMenu):
|
|
|
1456
1456
|
Volume : float
|
|
1457
1457
|
EqualRange : float
|
|
1458
1458
|
ZoneOrLabel : str
|
|
1459
|
-
LabelList :
|
|
1460
|
-
ManageFaceZoneList :
|
|
1461
|
-
ManageCellZoneList :
|
|
1462
|
-
BodyLabelList :
|
|
1459
|
+
LabelList : list[str]
|
|
1460
|
+
ManageFaceZoneList : list[str]
|
|
1461
|
+
ManageCellZoneList : list[str]
|
|
1462
|
+
BodyLabelList : list[str]
|
|
1463
1463
|
Operation : str
|
|
1464
1464
|
OperationName : str
|
|
1465
1465
|
MZChildName : str
|
|
1466
1466
|
AddPrefixName : str
|
|
1467
1467
|
FaceMerge : str
|
|
1468
1468
|
Angle : float
|
|
1469
|
-
ZoneList :
|
|
1470
|
-
ZoneLocation :
|
|
1469
|
+
ZoneList : list[str]
|
|
1470
|
+
ZoneLocation : list[str]
|
|
1471
1471
|
|
|
1472
1472
|
Returns
|
|
1473
1473
|
-------
|
|
@@ -1500,16 +1500,16 @@ class Root(PyMenu):
|
|
|
1500
1500
|
RemeshControlName : str
|
|
1501
1501
|
LocalSize : float
|
|
1502
1502
|
FaceZoneOrLabel : str
|
|
1503
|
-
RemeshFaceZoneList :
|
|
1504
|
-
RemeshFaceLabelList :
|
|
1503
|
+
RemeshFaceZoneList : list[str]
|
|
1504
|
+
RemeshFaceLabelList : list[str]
|
|
1505
1505
|
SizingType : str
|
|
1506
1506
|
LocalMinSize : float
|
|
1507
1507
|
LocalMaxSize : float
|
|
1508
1508
|
RemeshGrowthRate : float
|
|
1509
1509
|
RemeshCurvatureNormalAngle : float
|
|
1510
1510
|
RemeshCellsPerGap : float
|
|
1511
|
-
CFDSurfaceMeshControls :
|
|
1512
|
-
RemeshPreferences :
|
|
1511
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1512
|
+
RemeshPreferences : dict[str, Any]
|
|
1513
1513
|
|
|
1514
1514
|
Returns
|
|
1515
1515
|
-------
|
|
@@ -1540,10 +1540,10 @@ class Root(PyMenu):
|
|
|
1540
1540
|
RemoveEmptyParts : bool
|
|
1541
1541
|
FeatureAngle : float
|
|
1542
1542
|
OneZonePer : str
|
|
1543
|
-
Refaceting :
|
|
1543
|
+
Refaceting : dict[str, Any]
|
|
1544
1544
|
IgnoreSolidNames : bool
|
|
1545
1545
|
IgnoreSolidNamesAppend : bool
|
|
1546
|
-
Options :
|
|
1546
|
+
Options : dict[str, Any]
|
|
1547
1547
|
EdgeExtraction : str
|
|
1548
1548
|
Context : int
|
|
1549
1549
|
ObjectSetting : str
|
|
@@ -1563,8 +1563,8 @@ class Root(PyMenu):
|
|
|
1563
1563
|
PartReplacementName : str
|
|
1564
1564
|
ManagementMethod : str
|
|
1565
1565
|
CreationMethod : str
|
|
1566
|
-
OldObjectSelectionList :
|
|
1567
|
-
NewObjectSelectionList :
|
|
1566
|
+
OldObjectSelectionList : list[str]
|
|
1567
|
+
NewObjectSelectionList : list[str]
|
|
1568
1568
|
AdvancedOptions : bool
|
|
1569
1569
|
ScalingFactor : float
|
|
1570
1570
|
MptMethodType : str
|
|
@@ -1632,14 +1632,14 @@ class Root(PyMenu):
|
|
|
1632
1632
|
Type : str
|
|
1633
1633
|
Method : str
|
|
1634
1634
|
PeriodicityAngle : float
|
|
1635
|
-
LCSOrigin :
|
|
1636
|
-
LCSVector :
|
|
1637
|
-
TransShift :
|
|
1635
|
+
LCSOrigin : dict[str, Any]
|
|
1636
|
+
LCSVector : dict[str, Any]
|
|
1637
|
+
TransShift : dict[str, Any]
|
|
1638
1638
|
SelectionType : str
|
|
1639
|
-
ZoneList :
|
|
1640
|
-
LabelList :
|
|
1639
|
+
ZoneList : list[str]
|
|
1640
|
+
LabelList : list[str]
|
|
1641
1641
|
RemeshBoundariesOption : str
|
|
1642
|
-
ZoneLocation :
|
|
1642
|
+
ZoneLocation : list[str]
|
|
1643
1643
|
ListAllLabelToggle : bool
|
|
1644
1644
|
|
|
1645
1645
|
Returns
|
|
@@ -1662,7 +1662,7 @@ class Root(PyMenu):
|
|
|
1662
1662
|
LastRatioPercentage : float
|
|
1663
1663
|
FirstHeight : float
|
|
1664
1664
|
PrismLayers : int
|
|
1665
|
-
RegionSelectionList :
|
|
1665
|
+
RegionSelectionList : list[str]
|
|
1666
1666
|
|
|
1667
1667
|
Returns
|
|
1668
1668
|
-------
|
|
@@ -1680,9 +1680,9 @@ class Root(PyMenu):
|
|
|
1680
1680
|
GapDistanceConnect : float
|
|
1681
1681
|
STMinSize : float
|
|
1682
1682
|
InterfaceSelect : str
|
|
1683
|
-
ShareTopologyPreferences :
|
|
1684
|
-
SMImprovePreferences :
|
|
1685
|
-
SurfaceMeshPreferences :
|
|
1683
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1684
|
+
SMImprovePreferences : dict[str, Any]
|
|
1685
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1686
1686
|
|
|
1687
1687
|
Returns
|
|
1688
1688
|
-------
|
|
@@ -1703,7 +1703,7 @@ class Root(PyMenu):
|
|
|
1703
1703
|
InitialSizeControl : bool
|
|
1704
1704
|
TargetSizeControl : bool
|
|
1705
1705
|
SizeControlInterval : float
|
|
1706
|
-
SizeControlParameters :
|
|
1706
|
+
SizeControlParameters : dict[str, Any]
|
|
1707
1707
|
|
|
1708
1708
|
Returns
|
|
1709
1709
|
-------
|
|
@@ -1720,10 +1720,10 @@ class Root(PyMenu):
|
|
|
1720
1720
|
MTControlName : str
|
|
1721
1721
|
Type : str
|
|
1722
1722
|
Method : str
|
|
1723
|
-
CellZoneList :
|
|
1724
|
-
LCSOrigin :
|
|
1725
|
-
LCSVector :
|
|
1726
|
-
TransShift :
|
|
1723
|
+
CellZoneList : list[str]
|
|
1724
|
+
LCSOrigin : dict[str, Any]
|
|
1725
|
+
LCSVector : dict[str, Any]
|
|
1726
|
+
TransShift : dict[str, Any]
|
|
1727
1727
|
Angle : float
|
|
1728
1728
|
Copy : str
|
|
1729
1729
|
NumOfCopies : int
|
|
@@ -1744,21 +1744,21 @@ class Root(PyMenu):
|
|
|
1744
1744
|
----------
|
|
1745
1745
|
MeshObject : str
|
|
1746
1746
|
SelectionType : str
|
|
1747
|
-
BoundaryLabelList :
|
|
1748
|
-
BoundaryLabelTypeList :
|
|
1749
|
-
BoundaryZoneList :
|
|
1750
|
-
BoundaryZoneTypeList :
|
|
1751
|
-
OldBoundaryLabelList :
|
|
1752
|
-
OldBoundaryLabelTypeList :
|
|
1753
|
-
OldBoundaryZoneList :
|
|
1754
|
-
OldBoundaryZoneTypeList :
|
|
1755
|
-
OldLabelZoneList :
|
|
1747
|
+
BoundaryLabelList : list[str]
|
|
1748
|
+
BoundaryLabelTypeList : list[str]
|
|
1749
|
+
BoundaryZoneList : list[str]
|
|
1750
|
+
BoundaryZoneTypeList : list[str]
|
|
1751
|
+
OldBoundaryLabelList : list[str]
|
|
1752
|
+
OldBoundaryLabelTypeList : list[str]
|
|
1753
|
+
OldBoundaryZoneList : list[str]
|
|
1754
|
+
OldBoundaryZoneTypeList : list[str]
|
|
1755
|
+
OldLabelZoneList : list[str]
|
|
1756
1756
|
ListAllBoundariesToggle : bool
|
|
1757
|
-
ZoneLocation :
|
|
1758
|
-
TopologyList :
|
|
1759
|
-
TopologyTypeList :
|
|
1760
|
-
OldTopologyList :
|
|
1761
|
-
OldTopologyTypeList :
|
|
1757
|
+
ZoneLocation : list[str]
|
|
1758
|
+
TopologyList : list[str]
|
|
1759
|
+
TopologyTypeList : list[str]
|
|
1760
|
+
OldTopologyList : list[str]
|
|
1761
|
+
OldTopologyTypeList : list[str]
|
|
1762
1762
|
|
|
1763
1763
|
Returns
|
|
1764
1764
|
-------
|
|
@@ -1774,27 +1774,27 @@ class Root(PyMenu):
|
|
|
1774
1774
|
----------
|
|
1775
1775
|
MainFluidRegion : str
|
|
1776
1776
|
FilterCategory : str
|
|
1777
|
-
RegionNameList :
|
|
1778
|
-
RegionMeshMethodList :
|
|
1779
|
-
RegionTypeList :
|
|
1780
|
-
RegionVolumeFillList :
|
|
1781
|
-
RegionLeakageSizeList :
|
|
1782
|
-
RegionOversetComponenList :
|
|
1783
|
-
OldRegionNameList :
|
|
1784
|
-
OldRegionMeshMethodList :
|
|
1785
|
-
OldRegionTypeList :
|
|
1786
|
-
OldRegionVolumeFillList :
|
|
1787
|
-
OldRegionLeakageSizeList :
|
|
1788
|
-
OldRegionOversetComponenList :
|
|
1789
|
-
AllRegionNameList :
|
|
1790
|
-
AllRegionMeshMethodList :
|
|
1791
|
-
AllRegionTypeList :
|
|
1792
|
-
AllRegionVolumeFillList :
|
|
1793
|
-
AllRegionLeakageSizeList :
|
|
1794
|
-
AllRegionOversetComponenList :
|
|
1795
|
-
AllRegionLinkedConstructionSurfaceList :
|
|
1796
|
-
AllRegionSourceList :
|
|
1797
|
-
AllRegionFilterCategories :
|
|
1777
|
+
RegionNameList : list[str]
|
|
1778
|
+
RegionMeshMethodList : list[str]
|
|
1779
|
+
RegionTypeList : list[str]
|
|
1780
|
+
RegionVolumeFillList : list[str]
|
|
1781
|
+
RegionLeakageSizeList : list[str]
|
|
1782
|
+
RegionOversetComponenList : list[str]
|
|
1783
|
+
OldRegionNameList : list[str]
|
|
1784
|
+
OldRegionMeshMethodList : list[str]
|
|
1785
|
+
OldRegionTypeList : list[str]
|
|
1786
|
+
OldRegionVolumeFillList : list[str]
|
|
1787
|
+
OldRegionLeakageSizeList : list[str]
|
|
1788
|
+
OldRegionOversetComponenList : list[str]
|
|
1789
|
+
AllRegionNameList : list[str]
|
|
1790
|
+
AllRegionMeshMethodList : list[str]
|
|
1791
|
+
AllRegionTypeList : list[str]
|
|
1792
|
+
AllRegionVolumeFillList : list[str]
|
|
1793
|
+
AllRegionLeakageSizeList : list[str]
|
|
1794
|
+
AllRegionOversetComponenList : list[str]
|
|
1795
|
+
AllRegionLinkedConstructionSurfaceList : list[str]
|
|
1796
|
+
AllRegionSourceList : list[str]
|
|
1797
|
+
AllRegionFilterCategories : list[str]
|
|
1798
1798
|
|
|
1799
1799
|
Returns
|
|
1800
1800
|
-------
|
|
@@ -1809,12 +1809,12 @@ class Root(PyMenu):
|
|
|
1809
1809
|
Parameters
|
|
1810
1810
|
----------
|
|
1811
1811
|
MeshObject : str
|
|
1812
|
-
RegionNameList :
|
|
1813
|
-
RegionTypeList :
|
|
1814
|
-
OldRegionNameList :
|
|
1815
|
-
OldRegionTypeList :
|
|
1816
|
-
RegionInternals :
|
|
1817
|
-
RegionInternalTypes :
|
|
1812
|
+
RegionNameList : list[str]
|
|
1813
|
+
RegionTypeList : list[str]
|
|
1814
|
+
OldRegionNameList : list[str]
|
|
1815
|
+
OldRegionTypeList : list[str]
|
|
1816
|
+
RegionInternals : list[str]
|
|
1817
|
+
RegionInternalTypes : list[str]
|
|
1818
1818
|
|
|
1819
1819
|
Returns
|
|
1820
1820
|
-------
|