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
|
@@ -135,85 +135,85 @@ class Root(PyMenu):
|
|
|
135
135
|
|
|
136
136
|
class AllOversetNameList(PyTextual):
|
|
137
137
|
"""
|
|
138
|
-
Parameter AllOversetNameList of value type
|
|
138
|
+
Parameter AllOversetNameList of value type list[str].
|
|
139
139
|
"""
|
|
140
140
|
pass
|
|
141
141
|
|
|
142
142
|
class AllOversetSizeList(PyTextual):
|
|
143
143
|
"""
|
|
144
|
-
Parameter AllOversetSizeList of value type
|
|
144
|
+
Parameter AllOversetSizeList of value type list[str].
|
|
145
145
|
"""
|
|
146
146
|
pass
|
|
147
147
|
|
|
148
148
|
class AllOversetTypeList(PyTextual):
|
|
149
149
|
"""
|
|
150
|
-
Parameter AllOversetTypeList of value type
|
|
150
|
+
Parameter AllOversetTypeList of value type list[str].
|
|
151
151
|
"""
|
|
152
152
|
pass
|
|
153
153
|
|
|
154
154
|
class AllOversetVolumeFillList(PyTextual):
|
|
155
155
|
"""
|
|
156
|
-
Parameter AllOversetVolumeFillList of value type
|
|
156
|
+
Parameter AllOversetVolumeFillList of value type list[str].
|
|
157
157
|
"""
|
|
158
158
|
pass
|
|
159
159
|
|
|
160
160
|
class AllRegionFilterCategories(PyTextual):
|
|
161
161
|
"""
|
|
162
|
-
Parameter AllRegionFilterCategories of value type
|
|
162
|
+
Parameter AllRegionFilterCategories of value type list[str].
|
|
163
163
|
"""
|
|
164
164
|
pass
|
|
165
165
|
|
|
166
166
|
class AllRegionLeakageSizeList(PyTextual):
|
|
167
167
|
"""
|
|
168
|
-
Parameter AllRegionLeakageSizeList of value type
|
|
168
|
+
Parameter AllRegionLeakageSizeList of value type list[str].
|
|
169
169
|
"""
|
|
170
170
|
pass
|
|
171
171
|
|
|
172
172
|
class AllRegionLinkedConstructionSurfaceList(PyTextual):
|
|
173
173
|
"""
|
|
174
|
-
Parameter AllRegionLinkedConstructionSurfaceList of value type
|
|
174
|
+
Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
|
|
175
175
|
"""
|
|
176
176
|
pass
|
|
177
177
|
|
|
178
178
|
class AllRegionMeshMethodList(PyTextual):
|
|
179
179
|
"""
|
|
180
|
-
Parameter AllRegionMeshMethodList of value type
|
|
180
|
+
Parameter AllRegionMeshMethodList of value type list[str].
|
|
181
181
|
"""
|
|
182
182
|
pass
|
|
183
183
|
|
|
184
184
|
class AllRegionNameList(PyTextual):
|
|
185
185
|
"""
|
|
186
|
-
Parameter AllRegionNameList of value type
|
|
186
|
+
Parameter AllRegionNameList of value type list[str].
|
|
187
187
|
"""
|
|
188
188
|
pass
|
|
189
189
|
|
|
190
190
|
class AllRegionOversetComponenList(PyTextual):
|
|
191
191
|
"""
|
|
192
|
-
Parameter AllRegionOversetComponenList of value type
|
|
192
|
+
Parameter AllRegionOversetComponenList of value type list[str].
|
|
193
193
|
"""
|
|
194
194
|
pass
|
|
195
195
|
|
|
196
196
|
class AllRegionSizeList(PyTextual):
|
|
197
197
|
"""
|
|
198
|
-
Parameter AllRegionSizeList of value type
|
|
198
|
+
Parameter AllRegionSizeList of value type list[str].
|
|
199
199
|
"""
|
|
200
200
|
pass
|
|
201
201
|
|
|
202
202
|
class AllRegionSourceList(PyTextual):
|
|
203
203
|
"""
|
|
204
|
-
Parameter AllRegionSourceList of value type
|
|
204
|
+
Parameter AllRegionSourceList of value type list[str].
|
|
205
205
|
"""
|
|
206
206
|
pass
|
|
207
207
|
|
|
208
208
|
class AllRegionTypeList(PyTextual):
|
|
209
209
|
"""
|
|
210
|
-
Parameter AllRegionTypeList of value type
|
|
210
|
+
Parameter AllRegionTypeList of value type list[str].
|
|
211
211
|
"""
|
|
212
212
|
pass
|
|
213
213
|
|
|
214
214
|
class AllRegionVolumeFillList(PyTextual):
|
|
215
215
|
"""
|
|
216
|
-
Parameter AllRegionVolumeFillList of value type
|
|
216
|
+
Parameter AllRegionVolumeFillList of value type list[str].
|
|
217
217
|
"""
|
|
218
218
|
pass
|
|
219
219
|
|
|
@@ -292,21 +292,21 @@ class Root(PyMenu):
|
|
|
292
292
|
TransitionRatio : float
|
|
293
293
|
Rate : float
|
|
294
294
|
FirstHeight : float
|
|
295
|
-
FaceScope :
|
|
296
|
-
RegionScope :
|
|
297
|
-
BlLabelList :
|
|
298
|
-
ZoneSelectionList :
|
|
299
|
-
ZoneLocation :
|
|
300
|
-
LocalPrismPreferences :
|
|
301
|
-
BLZoneList :
|
|
302
|
-
BLRegionList :
|
|
295
|
+
FaceScope : dict[str, Any]
|
|
296
|
+
RegionScope : list[str]
|
|
297
|
+
BlLabelList : list[str]
|
|
298
|
+
ZoneSelectionList : list[str]
|
|
299
|
+
ZoneLocation : list[str]
|
|
300
|
+
LocalPrismPreferences : dict[str, Any]
|
|
301
|
+
BLZoneList : list[str]
|
|
302
|
+
BLRegionList : list[str]
|
|
303
303
|
InvalidAdded : str
|
|
304
|
-
CompleteRegionScope :
|
|
305
|
-
CompleteBlLabelList :
|
|
306
|
-
CompleteBLZoneList :
|
|
307
|
-
CompleteBLRegionList :
|
|
308
|
-
CompleteZoneSelectionList :
|
|
309
|
-
CompleteLabelSelectionList :
|
|
304
|
+
CompleteRegionScope : list[str]
|
|
305
|
+
CompleteBlLabelList : list[str]
|
|
306
|
+
CompleteBLZoneList : list[str]
|
|
307
|
+
CompleteBLRegionList : list[str]
|
|
308
|
+
CompleteZoneSelectionList : list[str]
|
|
309
|
+
CompleteLabelSelectionList : list[str]
|
|
310
310
|
|
|
311
311
|
Returns
|
|
312
312
|
-------
|
|
@@ -329,20 +329,20 @@ class Root(PyMenu):
|
|
|
329
329
|
TransitionRatio : float
|
|
330
330
|
Rate : float
|
|
331
331
|
FirstHeight : float
|
|
332
|
-
FaceScope :
|
|
333
|
-
RegionScope :
|
|
334
|
-
BlLabelList :
|
|
335
|
-
ZoneSelectionList :
|
|
336
|
-
ZoneLocation :
|
|
337
|
-
LocalPrismPreferences :
|
|
338
|
-
BLZoneList :
|
|
339
|
-
BLRegionList :
|
|
340
|
-
CompleteRegionScope :
|
|
341
|
-
CompleteBlLabelList :
|
|
342
|
-
CompleteBLZoneList :
|
|
343
|
-
CompleteBLRegionList :
|
|
344
|
-
CompleteZoneSelectionList :
|
|
345
|
-
CompleteLabelSelectionList :
|
|
332
|
+
FaceScope : dict[str, Any]
|
|
333
|
+
RegionScope : list[str]
|
|
334
|
+
BlLabelList : list[str]
|
|
335
|
+
ZoneSelectionList : list[str]
|
|
336
|
+
ZoneLocation : list[str]
|
|
337
|
+
LocalPrismPreferences : dict[str, Any]
|
|
338
|
+
BLZoneList : list[str]
|
|
339
|
+
BLRegionList : list[str]
|
|
340
|
+
CompleteRegionScope : list[str]
|
|
341
|
+
CompleteBlLabelList : list[str]
|
|
342
|
+
CompleteBLZoneList : list[str]
|
|
343
|
+
CompleteBLRegionList : list[str]
|
|
344
|
+
CompleteZoneSelectionList : list[str]
|
|
345
|
+
CompleteLabelSelectionList : list[str]
|
|
346
346
|
|
|
347
347
|
Returns
|
|
348
348
|
-------
|
|
@@ -360,10 +360,10 @@ class Root(PyMenu):
|
|
|
360
360
|
NewBoundaryLabelName : str
|
|
361
361
|
NewBoundaryType : str
|
|
362
362
|
SelectionType : str
|
|
363
|
-
BoundaryFaceZoneList :
|
|
364
|
-
TopologyList :
|
|
363
|
+
BoundaryFaceZoneList : list[str]
|
|
364
|
+
TopologyList : list[str]
|
|
365
365
|
Merge : str
|
|
366
|
-
ZoneLocation :
|
|
366
|
+
ZoneLocation : list[str]
|
|
367
367
|
|
|
368
368
|
Returns
|
|
369
369
|
-------
|
|
@@ -379,17 +379,17 @@ class Root(PyMenu):
|
|
|
379
379
|
----------
|
|
380
380
|
LocalSettingsName : str
|
|
381
381
|
SelectionType : str
|
|
382
|
-
ObjectSelectionList :
|
|
383
|
-
LabelSelectionList :
|
|
384
|
-
ZoneSelectionList :
|
|
385
|
-
ZoneLocation :
|
|
386
|
-
EdgeSelectionList :
|
|
387
|
-
LocalSizeControlParameters :
|
|
382
|
+
ObjectSelectionList : list[str]
|
|
383
|
+
LabelSelectionList : list[str]
|
|
384
|
+
ZoneSelectionList : list[str]
|
|
385
|
+
ZoneLocation : list[str]
|
|
386
|
+
EdgeSelectionList : list[str]
|
|
387
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
388
388
|
ValueChanged : str
|
|
389
|
-
CompleteZoneSelectionList :
|
|
390
|
-
CompleteLabelSelectionList :
|
|
391
|
-
CompleteObjectSelectionList :
|
|
392
|
-
CompleteEdgeSelectionList :
|
|
389
|
+
CompleteZoneSelectionList : list[str]
|
|
390
|
+
CompleteLabelSelectionList : list[str]
|
|
391
|
+
CompleteObjectSelectionList : list[str]
|
|
392
|
+
CompleteEdgeSelectionList : list[str]
|
|
393
393
|
|
|
394
394
|
Returns
|
|
395
395
|
-------
|
|
@@ -415,18 +415,18 @@ class Root(PyMenu):
|
|
|
415
415
|
BOIScopeTo : str
|
|
416
416
|
IgnoreOrientation : str
|
|
417
417
|
BOIZoneorLabel : str
|
|
418
|
-
BOIFaceLabelList :
|
|
419
|
-
BOIFaceZoneList :
|
|
420
|
-
EdgeLabelList :
|
|
421
|
-
EdgeZoneList :
|
|
422
|
-
TopologyList :
|
|
418
|
+
BOIFaceLabelList : list[str]
|
|
419
|
+
BOIFaceZoneList : list[str]
|
|
420
|
+
EdgeLabelList : list[str]
|
|
421
|
+
EdgeZoneList : list[str]
|
|
422
|
+
TopologyList : list[str]
|
|
423
423
|
BOIPatchingtoggle : bool
|
|
424
424
|
DrawSizeControl : bool
|
|
425
|
-
ZoneLocation :
|
|
426
|
-
CompleteFaceZoneList :
|
|
427
|
-
CompleteFaceLabelList :
|
|
428
|
-
CompleteEdgeLabelList :
|
|
429
|
-
CompleteTopologyList :
|
|
425
|
+
ZoneLocation : list[str]
|
|
426
|
+
CompleteFaceZoneList : list[str]
|
|
427
|
+
CompleteFaceLabelList : list[str]
|
|
428
|
+
CompleteEdgeLabelList : list[str]
|
|
429
|
+
CompleteTopologyList : list[str]
|
|
430
430
|
PrimeSizeControlId : int
|
|
431
431
|
|
|
432
432
|
Returns
|
|
@@ -447,13 +447,13 @@ class Root(PyMenu):
|
|
|
447
447
|
FillWith : str
|
|
448
448
|
UseSweepSize : str
|
|
449
449
|
MaxSweepSize : float
|
|
450
|
-
RegionScope :
|
|
450
|
+
RegionScope : list[str]
|
|
451
451
|
SourceMethod : str
|
|
452
452
|
ParallelSelection : bool
|
|
453
453
|
ShowEdgeBiasing : str
|
|
454
|
-
LabelSourceList :
|
|
455
|
-
ZoneSourceList :
|
|
456
|
-
ZoneLocation :
|
|
454
|
+
LabelSourceList : list[str]
|
|
455
|
+
ZoneSourceList : list[str]
|
|
456
|
+
ZoneLocation : list[str]
|
|
457
457
|
AssignSizeUsing : str
|
|
458
458
|
Intervals : int
|
|
459
459
|
Size : float
|
|
@@ -462,11 +462,11 @@ class Root(PyMenu):
|
|
|
462
462
|
GrowthMethod : str
|
|
463
463
|
GrowthRate : float
|
|
464
464
|
BiasFactor : float
|
|
465
|
-
EdgeLabelSelection :
|
|
466
|
-
EdgeLabelList :
|
|
467
|
-
CFDSurfaceMeshControls :
|
|
468
|
-
CompleteRegionScope :
|
|
469
|
-
CompleteEdgeScope :
|
|
465
|
+
EdgeLabelSelection : list[str]
|
|
466
|
+
EdgeLabelList : list[str]
|
|
467
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
468
|
+
CompleteRegionScope : list[str]
|
|
469
|
+
CompleteEdgeScope : list[str]
|
|
470
470
|
|
|
471
471
|
Returns
|
|
472
472
|
-------
|
|
@@ -489,12 +489,12 @@ class Root(PyMenu):
|
|
|
489
489
|
Rate : float
|
|
490
490
|
FirstHeight : float
|
|
491
491
|
GrowOn : str
|
|
492
|
-
FaceLabelList :
|
|
493
|
-
FaceZoneList :
|
|
492
|
+
FaceLabelList : list[str]
|
|
493
|
+
FaceZoneList : list[str]
|
|
494
494
|
EdgeSelectionType : str
|
|
495
|
-
EdgeLabelList :
|
|
496
|
-
EdgeZoneList :
|
|
497
|
-
PrimeShellBLPreferences :
|
|
495
|
+
EdgeLabelList : list[str]
|
|
496
|
+
EdgeZoneList : list[str]
|
|
497
|
+
PrimeShellBLPreferences : dict[str, Any]
|
|
498
498
|
|
|
499
499
|
Returns
|
|
500
500
|
-------
|
|
@@ -510,10 +510,10 @@ class Root(PyMenu):
|
|
|
510
510
|
----------
|
|
511
511
|
ZeroThicknessName : str
|
|
512
512
|
SelectionType : str
|
|
513
|
-
ZoneSelectionList :
|
|
514
|
-
ZoneLocation :
|
|
515
|
-
ObjectSelectionList :
|
|
516
|
-
LabelSelectionList :
|
|
513
|
+
ZoneSelectionList : list[str]
|
|
514
|
+
ZoneLocation : list[str]
|
|
515
|
+
ObjectSelectionList : list[str]
|
|
516
|
+
LabelSelectionList : list[str]
|
|
517
517
|
Distance : float
|
|
518
518
|
|
|
519
519
|
Returns
|
|
@@ -531,8 +531,8 @@ class Root(PyMenu):
|
|
|
531
531
|
AddChild : str
|
|
532
532
|
ControlName : str
|
|
533
533
|
SelectionType : str
|
|
534
|
-
FaceLabelList :
|
|
535
|
-
FaceZoneList :
|
|
534
|
+
FaceLabelList : list[str]
|
|
535
|
+
FaceZoneList : list[str]
|
|
536
536
|
|
|
537
537
|
Returns
|
|
538
538
|
-------
|
|
@@ -550,18 +550,18 @@ class Root(PyMenu):
|
|
|
550
550
|
ZoneType : str
|
|
551
551
|
PatchType : str
|
|
552
552
|
SelectionType : str
|
|
553
|
-
LabelSelectionList :
|
|
554
|
-
ZoneSelectionList :
|
|
555
|
-
TopologyList :
|
|
556
|
-
CreatePatchPreferences :
|
|
553
|
+
LabelSelectionList : list[str]
|
|
554
|
+
ZoneSelectionList : list[str]
|
|
555
|
+
TopologyList : list[str]
|
|
556
|
+
CreatePatchPreferences : dict[str, Any]
|
|
557
557
|
ObjectAssociation : str
|
|
558
558
|
NewObjectName : str
|
|
559
559
|
PatchObjectName : str
|
|
560
|
-
CapLabels :
|
|
561
|
-
ZoneLocation :
|
|
562
|
-
CompleteZoneSelectionList :
|
|
563
|
-
CompleteLabelSelectionList :
|
|
564
|
-
CompleteTopologyList :
|
|
560
|
+
CapLabels : list[str]
|
|
561
|
+
ZoneLocation : list[str]
|
|
562
|
+
CompleteZoneSelectionList : list[str]
|
|
563
|
+
CompleteLabelSelectionList : list[str]
|
|
564
|
+
CompleteTopologyList : list[str]
|
|
565
565
|
|
|
566
566
|
Returns
|
|
567
567
|
-------
|
|
@@ -583,7 +583,7 @@ class Root(PyMenu):
|
|
|
583
583
|
GlobalMin : float
|
|
584
584
|
GlobalMax : float
|
|
585
585
|
GlobalGrowthRate : float
|
|
586
|
-
MeshControlOptions :
|
|
586
|
+
MeshControlOptions : dict[str, Any]
|
|
587
587
|
|
|
588
588
|
Returns
|
|
589
589
|
-------
|
|
@@ -662,16 +662,16 @@ class Root(PyMenu):
|
|
|
662
662
|
BOIMaxSize : float
|
|
663
663
|
BOISizeName : str
|
|
664
664
|
SelectionType : str
|
|
665
|
-
ZoneSelectionList :
|
|
666
|
-
ZoneLocation :
|
|
667
|
-
LabelSelectionList :
|
|
668
|
-
ObjectSelectionList :
|
|
669
|
-
ZoneSelectionSingle :
|
|
670
|
-
ObjectSelectionSingle :
|
|
671
|
-
TopologyList :
|
|
672
|
-
BoundingBoxObject :
|
|
673
|
-
OffsetObject :
|
|
674
|
-
CylinderObject :
|
|
665
|
+
ZoneSelectionList : list[str]
|
|
666
|
+
ZoneLocation : list[str]
|
|
667
|
+
LabelSelectionList : list[str]
|
|
668
|
+
ObjectSelectionList : list[str]
|
|
669
|
+
ZoneSelectionSingle : list[str]
|
|
670
|
+
ObjectSelectionSingle : list[str]
|
|
671
|
+
TopologyList : list[str]
|
|
672
|
+
BoundingBoxObject : dict[str, Any]
|
|
673
|
+
OffsetObject : dict[str, Any]
|
|
674
|
+
CylinderObject : dict[str, Any]
|
|
675
675
|
|
|
676
676
|
Returns
|
|
677
677
|
-------
|
|
@@ -690,16 +690,16 @@ class Root(PyMenu):
|
|
|
690
690
|
BOIMaxSize : float
|
|
691
691
|
BOISizeName : str
|
|
692
692
|
SelectionType : str
|
|
693
|
-
ZoneSelectionList :
|
|
694
|
-
ZoneLocation :
|
|
695
|
-
LabelSelectionList :
|
|
696
|
-
ObjectSelectionList :
|
|
697
|
-
ZoneSelectionSingle :
|
|
698
|
-
ObjectSelectionSingle :
|
|
699
|
-
TopologyList :
|
|
700
|
-
BoundingBoxObject :
|
|
701
|
-
OffsetObject :
|
|
702
|
-
CylinderObject :
|
|
693
|
+
ZoneSelectionList : list[str]
|
|
694
|
+
ZoneLocation : list[str]
|
|
695
|
+
LabelSelectionList : list[str]
|
|
696
|
+
ObjectSelectionList : list[str]
|
|
697
|
+
ZoneSelectionSingle : list[str]
|
|
698
|
+
ObjectSelectionSingle : list[str]
|
|
699
|
+
TopologyList : list[str]
|
|
700
|
+
BoundingBoxObject : dict[str, Any]
|
|
701
|
+
OffsetObject : dict[str, Any]
|
|
702
|
+
CylinderObject : dict[str, Any]
|
|
703
703
|
VolumeFill : str
|
|
704
704
|
|
|
705
705
|
Returns
|
|
@@ -719,16 +719,16 @@ class Root(PyMenu):
|
|
|
719
719
|
BOIMaxSize : float
|
|
720
720
|
BOISizeName : str
|
|
721
721
|
SelectionType : str
|
|
722
|
-
ZoneSelectionList :
|
|
723
|
-
ZoneLocation :
|
|
724
|
-
LabelSelectionList :
|
|
725
|
-
ObjectSelectionList :
|
|
726
|
-
ZoneSelectionSingle :
|
|
727
|
-
ObjectSelectionSingle :
|
|
728
|
-
TopologyList :
|
|
729
|
-
BoundingBoxObject :
|
|
730
|
-
OffsetObject :
|
|
731
|
-
CylinderObject :
|
|
722
|
+
ZoneSelectionList : list[str]
|
|
723
|
+
ZoneLocation : list[str]
|
|
724
|
+
LabelSelectionList : list[str]
|
|
725
|
+
ObjectSelectionList : list[str]
|
|
726
|
+
ZoneSelectionSingle : list[str]
|
|
727
|
+
ObjectSelectionSingle : list[str]
|
|
728
|
+
TopologyList : list[str]
|
|
729
|
+
BoundingBoxObject : dict[str, Any]
|
|
730
|
+
OffsetObject : dict[str, Any]
|
|
731
|
+
CylinderObject : dict[str, Any]
|
|
732
732
|
VolumeFill : str
|
|
733
733
|
|
|
734
734
|
Returns
|
|
@@ -745,11 +745,11 @@ class Root(PyMenu):
|
|
|
745
745
|
----------
|
|
746
746
|
ContactPatchName : str
|
|
747
747
|
SelectionType : str
|
|
748
|
-
ZoneSelectionList :
|
|
749
|
-
ZoneLocation :
|
|
750
|
-
ObjectSelectionList :
|
|
751
|
-
LabelSelectionList :
|
|
752
|
-
GroundZoneSelectionList :
|
|
748
|
+
ZoneSelectionList : list[str]
|
|
749
|
+
ZoneLocation : list[str]
|
|
750
|
+
ObjectSelectionList : list[str]
|
|
751
|
+
LabelSelectionList : list[str]
|
|
752
|
+
GroundZoneSelectionList : list[str]
|
|
753
753
|
Distance : float
|
|
754
754
|
ContactPatchDefeaturingSize : float
|
|
755
755
|
FeatureAngle : float
|
|
@@ -772,15 +772,15 @@ class Root(PyMenu):
|
|
|
772
772
|
CreationMethod : str
|
|
773
773
|
ExtractionMethod : str
|
|
774
774
|
SelectionType : str
|
|
775
|
-
ObjectSelectionList :
|
|
776
|
-
ZoneSelectionList :
|
|
777
|
-
ZoneLocation :
|
|
778
|
-
LabelSelectionList :
|
|
779
|
-
ObjectSelectionSingle :
|
|
780
|
-
ZoneSelectionSingle :
|
|
781
|
-
LabelSelectionSingle :
|
|
775
|
+
ObjectSelectionList : list[str]
|
|
776
|
+
ZoneSelectionList : list[str]
|
|
777
|
+
ZoneLocation : list[str]
|
|
778
|
+
LabelSelectionList : list[str]
|
|
779
|
+
ObjectSelectionSingle : list[str]
|
|
780
|
+
ZoneSelectionSingle : list[str]
|
|
781
|
+
LabelSelectionSingle : list[str]
|
|
782
782
|
OriginalObjectName : str
|
|
783
|
-
BoundingBoxObject :
|
|
783
|
+
BoundingBoxObject : dict[str, Any]
|
|
784
784
|
|
|
785
785
|
Returns
|
|
786
786
|
-------
|
|
@@ -799,10 +799,10 @@ class Root(PyMenu):
|
|
|
799
799
|
GapSizeRatio : float
|
|
800
800
|
GapSize : float
|
|
801
801
|
SelectionType : str
|
|
802
|
-
ZoneSelectionList :
|
|
803
|
-
ZoneLocation :
|
|
804
|
-
LabelSelectionList :
|
|
805
|
-
ObjectSelectionList :
|
|
802
|
+
ZoneSelectionList : list[str]
|
|
803
|
+
ZoneLocation : list[str]
|
|
804
|
+
LabelSelectionList : list[str]
|
|
805
|
+
ObjectSelectionList : list[str]
|
|
806
806
|
GapCoverBetweenZones : str
|
|
807
807
|
GapCoverRefineFactor : float
|
|
808
808
|
GapCoverRefineFactorAtGap : float
|
|
@@ -828,16 +828,16 @@ class Root(PyMenu):
|
|
|
828
828
|
BOIMaxSize : float
|
|
829
829
|
BOISizeName : str
|
|
830
830
|
SelectionType : str
|
|
831
|
-
ZoneSelectionList :
|
|
832
|
-
ZoneLocation :
|
|
833
|
-
LabelSelectionList :
|
|
834
|
-
ObjectSelectionList :
|
|
835
|
-
ZoneSelectionSingle :
|
|
836
|
-
ObjectSelectionSingle :
|
|
837
|
-
TopologyList :
|
|
838
|
-
BoundingBoxObject :
|
|
839
|
-
OffsetObject :
|
|
840
|
-
CylinderObject :
|
|
831
|
+
ZoneSelectionList : list[str]
|
|
832
|
+
ZoneLocation : list[str]
|
|
833
|
+
LabelSelectionList : list[str]
|
|
834
|
+
ObjectSelectionList : list[str]
|
|
835
|
+
ZoneSelectionSingle : list[str]
|
|
836
|
+
ObjectSelectionSingle : list[str]
|
|
837
|
+
TopologyList : list[str]
|
|
838
|
+
BoundingBoxObject : dict[str, Any]
|
|
839
|
+
OffsetObject : dict[str, Any]
|
|
840
|
+
CylinderObject : dict[str, Any]
|
|
841
841
|
VolumeFill : str
|
|
842
842
|
|
|
843
843
|
Returns
|
|
@@ -867,7 +867,7 @@ class Root(PyMenu):
|
|
|
867
867
|
Parameters
|
|
868
868
|
----------
|
|
869
869
|
OversetInterfacesName : str
|
|
870
|
-
ObjectSelectionList :
|
|
870
|
+
ObjectSelectionList : list[str]
|
|
871
871
|
|
|
872
872
|
Returns
|
|
873
873
|
-------
|
|
@@ -889,11 +889,11 @@ class Root(PyMenu):
|
|
|
889
889
|
CellSizeP1P3 : float
|
|
890
890
|
CellSizeP1P4 : float
|
|
891
891
|
BufferSizeRatio : float
|
|
892
|
-
P1 :
|
|
893
|
-
P2 :
|
|
894
|
-
P3 :
|
|
895
|
-
P4 :
|
|
896
|
-
NonRectangularParameters :
|
|
892
|
+
P1 : list[float]
|
|
893
|
+
P2 : list[float]
|
|
894
|
+
P3 : list[float]
|
|
895
|
+
P4 : list[float]
|
|
896
|
+
NonRectangularParameters : dict[str, Any]
|
|
897
897
|
|
|
898
898
|
Returns
|
|
899
899
|
-------
|
|
@@ -930,7 +930,7 @@ class Root(PyMenu):
|
|
|
930
930
|
CurvatureNormalAngle : float
|
|
931
931
|
CellsPerGap : float
|
|
932
932
|
ScopeProximityTo : str
|
|
933
|
-
PrimeSizeControlIds :
|
|
933
|
+
PrimeSizeControlIds : list[int]
|
|
934
934
|
|
|
935
935
|
Returns
|
|
936
936
|
-------
|
|
@@ -947,8 +947,8 @@ class Root(PyMenu):
|
|
|
947
947
|
AddChild : str
|
|
948
948
|
LeakageName : str
|
|
949
949
|
SelectionType : str
|
|
950
|
-
DeadRegionsList :
|
|
951
|
-
RegionSelectionSingle :
|
|
950
|
+
DeadRegionsList : list[str]
|
|
951
|
+
RegionSelectionSingle : list[str]
|
|
952
952
|
DeadRegionsSize : float
|
|
953
953
|
PlaneClippingValue : int
|
|
954
954
|
PlaneDirection : str
|
|
@@ -971,7 +971,7 @@ class Root(PyMenu):
|
|
|
971
971
|
AddEnclosure : str
|
|
972
972
|
CloseCaps : str
|
|
973
973
|
LocalRefinementRegions : str
|
|
974
|
-
DescribeGeometryAndFlowOptions :
|
|
974
|
+
DescribeGeometryAndFlowOptions : dict[str, Any]
|
|
975
975
|
|
|
976
976
|
Returns
|
|
977
977
|
-------
|
|
@@ -1006,17 +1006,17 @@ class Root(PyMenu):
|
|
|
1006
1006
|
ExtractEdgesName : str
|
|
1007
1007
|
ExtractMethodType : str
|
|
1008
1008
|
SelectionType : str
|
|
1009
|
-
ObjectSelectionList :
|
|
1010
|
-
GeomObjectSelectionList :
|
|
1011
|
-
ZoneSelectionList :
|
|
1012
|
-
ZoneLocation :
|
|
1013
|
-
LabelSelectionList :
|
|
1009
|
+
ObjectSelectionList : list[str]
|
|
1010
|
+
GeomObjectSelectionList : list[str]
|
|
1011
|
+
ZoneSelectionList : list[str]
|
|
1012
|
+
ZoneLocation : list[str]
|
|
1013
|
+
LabelSelectionList : list[str]
|
|
1014
1014
|
FeatureAngleLocal : int
|
|
1015
1015
|
IndividualCollective : str
|
|
1016
1016
|
SharpAngle : int
|
|
1017
|
-
CompleteObjectSelectionList :
|
|
1018
|
-
CompleteGeomObjectSelectionList :
|
|
1019
|
-
NonExtractedObjects :
|
|
1017
|
+
CompleteObjectSelectionList : list[str]
|
|
1018
|
+
CompleteGeomObjectSelectionList : list[str]
|
|
1019
|
+
NonExtractedObjects : list[str]
|
|
1020
1020
|
|
|
1021
1021
|
Returns
|
|
1022
1022
|
-------
|
|
@@ -1033,14 +1033,14 @@ class Root(PyMenu):
|
|
|
1033
1033
|
MExControlName : str
|
|
1034
1034
|
Method : str
|
|
1035
1035
|
SelectionType : str
|
|
1036
|
-
ExternalBoundaryZoneList :
|
|
1037
|
-
TopologyList :
|
|
1036
|
+
ExternalBoundaryZoneList : list[str]
|
|
1037
|
+
TopologyList : list[str]
|
|
1038
1038
|
TotalHeight : float
|
|
1039
1039
|
FirstHeight : float
|
|
1040
1040
|
NumberofLayers : int
|
|
1041
1041
|
GrowthRate : float
|
|
1042
|
-
VMExtrudePreferences :
|
|
1043
|
-
ZoneLocation :
|
|
1042
|
+
VMExtrudePreferences : dict[str, Any]
|
|
1043
|
+
ZoneLocation : list[str]
|
|
1044
1044
|
|
|
1045
1045
|
Returns
|
|
1046
1046
|
-------
|
|
@@ -1080,8 +1080,8 @@ class Root(PyMenu):
|
|
|
1080
1080
|
SplitQuads : bool
|
|
1081
1081
|
ProjectOnGeometry : bool
|
|
1082
1082
|
SelectionType : str
|
|
1083
|
-
FaceLabelList :
|
|
1084
|
-
FaceZoneList :
|
|
1083
|
+
FaceLabelList : list[str]
|
|
1084
|
+
FaceZoneList : list[str]
|
|
1085
1085
|
|
|
1086
1086
|
Returns
|
|
1087
1087
|
-------
|
|
@@ -1110,12 +1110,12 @@ class Root(PyMenu):
|
|
|
1110
1110
|
Parameters
|
|
1111
1111
|
----------
|
|
1112
1112
|
OrthogonalQualityLimit : float
|
|
1113
|
-
RegionScope :
|
|
1113
|
+
RegionScope : list[str]
|
|
1114
1114
|
NonConformal : str
|
|
1115
1115
|
SizeFunctionScaleFactor : float
|
|
1116
|
-
CFDSurfaceMeshControls :
|
|
1117
|
-
CompleteRegionScope :
|
|
1118
|
-
CellZoneList :
|
|
1116
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1117
|
+
CompleteRegionScope : list[str]
|
|
1118
|
+
CellZoneList : list[str]
|
|
1119
1119
|
|
|
1120
1120
|
Returns
|
|
1121
1121
|
-------
|
|
@@ -1162,13 +1162,13 @@ class Root(PyMenu):
|
|
|
1162
1162
|
|
|
1163
1163
|
Parameters
|
|
1164
1164
|
----------
|
|
1165
|
-
CFDSurfaceMeshControls :
|
|
1165
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1166
1166
|
SeparationRequired : str
|
|
1167
1167
|
SeparationAngle : float
|
|
1168
1168
|
RemeshSelectionType : str
|
|
1169
|
-
RemeshZoneList :
|
|
1170
|
-
RemeshLabelList :
|
|
1171
|
-
SurfaceMeshPreferences :
|
|
1169
|
+
RemeshZoneList : list[str]
|
|
1170
|
+
RemeshLabelList : list[str]
|
|
1171
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1172
1172
|
ImportType : str
|
|
1173
1173
|
AppendMesh : bool
|
|
1174
1174
|
CadFacetingFileName : str
|
|
@@ -1176,11 +1176,11 @@ class Root(PyMenu):
|
|
|
1176
1176
|
Pattern : str
|
|
1177
1177
|
LengthUnit : str
|
|
1178
1178
|
TesselationMethod : str
|
|
1179
|
-
OriginalZones :
|
|
1179
|
+
OriginalZones : list[str]
|
|
1180
1180
|
ExecuteShareTopology : str
|
|
1181
|
-
CADFacetingControls :
|
|
1182
|
-
CadImportOptions :
|
|
1183
|
-
ShareTopologyPreferences :
|
|
1181
|
+
CADFacetingControls : dict[str, Any]
|
|
1182
|
+
CadImportOptions : dict[str, Any]
|
|
1183
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1184
1184
|
PreviewSizeToggle : bool
|
|
1185
1185
|
|
|
1186
1186
|
Returns
|
|
@@ -1200,15 +1200,15 @@ class Root(PyMenu):
|
|
|
1200
1200
|
EnableParallel : bool
|
|
1201
1201
|
SaveVolumeMesh : bool
|
|
1202
1202
|
EditVolumeSettings : bool
|
|
1203
|
-
RegionNameList :
|
|
1204
|
-
RegionVolumeFillList :
|
|
1205
|
-
RegionSizeList :
|
|
1206
|
-
OldRegionNameList :
|
|
1207
|
-
OldRegionVolumeFillList :
|
|
1208
|
-
OldRegionSizeList :
|
|
1209
|
-
AllRegionNameList :
|
|
1210
|
-
AllRegionVolumeFillList :
|
|
1211
|
-
AllRegionSizeList :
|
|
1203
|
+
RegionNameList : list[str]
|
|
1204
|
+
RegionVolumeFillList : list[str]
|
|
1205
|
+
RegionSizeList : list[str]
|
|
1206
|
+
OldRegionNameList : list[str]
|
|
1207
|
+
OldRegionVolumeFillList : list[str]
|
|
1208
|
+
OldRegionSizeList : list[str]
|
|
1209
|
+
AllRegionNameList : list[str]
|
|
1210
|
+
AllRegionVolumeFillList : list[str]
|
|
1211
|
+
AllRegionSizeList : list[str]
|
|
1212
1212
|
AdvancedOptions : bool
|
|
1213
1213
|
SpikeRemovalAngle : float
|
|
1214
1214
|
DihedralMinAngle : float
|
|
@@ -1238,12 +1238,12 @@ class Root(PyMenu):
|
|
|
1238
1238
|
MeshFluidRegions : bool
|
|
1239
1239
|
MeshSolidRegions : bool
|
|
1240
1240
|
SizingMethod : str
|
|
1241
|
-
VolumeFillControls :
|
|
1241
|
+
VolumeFillControls : dict[str, Any]
|
|
1242
1242
|
RegionBasedPreferences : bool
|
|
1243
1243
|
ReMergeZones : str
|
|
1244
1244
|
ParallelMeshing : bool
|
|
1245
|
-
VolumeMeshPreferences :
|
|
1246
|
-
PrismPreferences :
|
|
1245
|
+
VolumeMeshPreferences : dict[str, Any]
|
|
1246
|
+
PrismPreferences : dict[str, Any]
|
|
1247
1247
|
InvokePrimsControl : str
|
|
1248
1248
|
OffsetMethodType : str
|
|
1249
1249
|
NumberOfLayers : int
|
|
@@ -1253,20 +1253,20 @@ class Root(PyMenu):
|
|
|
1253
1253
|
FirstHeight : float
|
|
1254
1254
|
MeshObject : str
|
|
1255
1255
|
MeshDeadRegions : bool
|
|
1256
|
-
BodyLabelList :
|
|
1256
|
+
BodyLabelList : list[str]
|
|
1257
1257
|
PrismLayers : bool
|
|
1258
1258
|
QuadTetTransition : str
|
|
1259
1259
|
MergeCellZones : bool
|
|
1260
|
-
FaceScope :
|
|
1261
|
-
RegionTetNameList :
|
|
1262
|
-
RegionTetMaxCellLengthList :
|
|
1263
|
-
RegionTetGrowthRateList :
|
|
1264
|
-
RegionHexNameList :
|
|
1265
|
-
RegionHexMaxCellLengthList :
|
|
1266
|
-
OldRegionTetMaxCellLengthList :
|
|
1267
|
-
OldRegionTetGrowthRateList :
|
|
1268
|
-
OldRegionHexMaxCellLengthList :
|
|
1269
|
-
CFDSurfaceMeshControls :
|
|
1260
|
+
FaceScope : dict[str, Any]
|
|
1261
|
+
RegionTetNameList : list[str]
|
|
1262
|
+
RegionTetMaxCellLengthList : list[str]
|
|
1263
|
+
RegionTetGrowthRateList : list[str]
|
|
1264
|
+
RegionHexNameList : list[str]
|
|
1265
|
+
RegionHexMaxCellLengthList : list[str]
|
|
1266
|
+
OldRegionTetMaxCellLengthList : list[str]
|
|
1267
|
+
OldRegionTetGrowthRateList : list[str]
|
|
1268
|
+
OldRegionHexMaxCellLengthList : list[str]
|
|
1269
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1270
1270
|
|
|
1271
1271
|
Returns
|
|
1272
1272
|
-------
|
|
@@ -1286,14 +1286,14 @@ class Root(PyMenu):
|
|
|
1286
1286
|
InvokeShareTopology : str
|
|
1287
1287
|
NonConformal : str
|
|
1288
1288
|
Multizone : str
|
|
1289
|
-
SetupInternals :
|
|
1290
|
-
SetupInternalTypes :
|
|
1291
|
-
OldZoneList :
|
|
1292
|
-
OldZoneTypeList :
|
|
1293
|
-
RegionList :
|
|
1294
|
-
EdgeLabels :
|
|
1289
|
+
SetupInternals : list[str]
|
|
1290
|
+
SetupInternalTypes : list[str]
|
|
1291
|
+
OldZoneList : list[str]
|
|
1292
|
+
OldZoneTypeList : list[str]
|
|
1293
|
+
RegionList : list[str]
|
|
1294
|
+
EdgeLabels : list[str]
|
|
1295
1295
|
Duplicates : bool
|
|
1296
|
-
SMImprovePreferences :
|
|
1296
|
+
SMImprovePreferences : dict[str, Any]
|
|
1297
1297
|
|
|
1298
1298
|
Returns
|
|
1299
1299
|
-------
|
|
@@ -1310,20 +1310,20 @@ class Root(PyMenu):
|
|
|
1310
1310
|
MRFName : str
|
|
1311
1311
|
CreationMethod : str
|
|
1312
1312
|
SelectionType : str
|
|
1313
|
-
ObjectSelectionSingle :
|
|
1314
|
-
ZoneSelectionSingle :
|
|
1315
|
-
LabelSelectionSingle :
|
|
1316
|
-
ObjectSelectionList :
|
|
1317
|
-
ZoneSelectionList :
|
|
1318
|
-
ZoneLocation :
|
|
1319
|
-
LabelSelectionList :
|
|
1313
|
+
ObjectSelectionSingle : list[str]
|
|
1314
|
+
ZoneSelectionSingle : list[str]
|
|
1315
|
+
LabelSelectionSingle : list[str]
|
|
1316
|
+
ObjectSelectionList : list[str]
|
|
1317
|
+
ZoneSelectionList : list[str]
|
|
1318
|
+
ZoneLocation : list[str]
|
|
1319
|
+
LabelSelectionList : list[str]
|
|
1320
1320
|
DefeaturingSize : float
|
|
1321
1321
|
OffsetHeight : float
|
|
1322
|
-
Pivot :
|
|
1323
|
-
Axis :
|
|
1324
|
-
Rotation :
|
|
1325
|
-
CylinderObject :
|
|
1326
|
-
BoundingBoxObject :
|
|
1322
|
+
Pivot : dict[str, Any]
|
|
1323
|
+
Axis : dict[str, Any]
|
|
1324
|
+
Rotation : dict[str, Any]
|
|
1325
|
+
CylinderObject : dict[str, Any]
|
|
1326
|
+
BoundingBoxObject : dict[str, Any]
|
|
1327
1327
|
|
|
1328
1328
|
Returns
|
|
1329
1329
|
-------
|
|
@@ -1339,9 +1339,9 @@ class Root(PyMenu):
|
|
|
1339
1339
|
----------
|
|
1340
1340
|
DisplayGridName : str
|
|
1341
1341
|
SelectionType : str
|
|
1342
|
-
ObjectSelectionList :
|
|
1343
|
-
ZoneSelectionList :
|
|
1344
|
-
ZoneLocation :
|
|
1342
|
+
ObjectSelectionList : list[str]
|
|
1343
|
+
ZoneSelectionList : list[str]
|
|
1344
|
+
ZoneLocation : list[str]
|
|
1345
1345
|
AdvancedOptions : bool
|
|
1346
1346
|
DeviationMinValue : float
|
|
1347
1347
|
DeviationMaxValue : float
|
|
@@ -1361,15 +1361,15 @@ class Root(PyMenu):
|
|
|
1361
1361
|
Parameters
|
|
1362
1362
|
----------
|
|
1363
1363
|
NumberOfOrphans : str
|
|
1364
|
-
ObjectSelectionList :
|
|
1364
|
+
ObjectSelectionList : list[str]
|
|
1365
1365
|
EnableGridPriority : bool
|
|
1366
1366
|
DonorPriorityMethod : str
|
|
1367
1367
|
OverlapBoundaries : str
|
|
1368
1368
|
CheckOversetInterfaceIntersection : str
|
|
1369
|
-
RegionNameList :
|
|
1370
|
-
RegionSizeList :
|
|
1371
|
-
OldRegionNameList :
|
|
1372
|
-
OldRegionSizeList :
|
|
1369
|
+
RegionNameList : list[str]
|
|
1370
|
+
RegionSizeList : list[str]
|
|
1371
|
+
OldRegionNameList : list[str]
|
|
1372
|
+
OldRegionSizeList : list[str]
|
|
1373
1373
|
|
|
1374
1374
|
Returns
|
|
1375
1375
|
-------
|
|
@@ -1389,10 +1389,10 @@ class Root(PyMenu):
|
|
|
1389
1389
|
NewRegionType : str
|
|
1390
1390
|
LinkConstruction : str
|
|
1391
1391
|
SelectionType : str
|
|
1392
|
-
ZoneSelectionList :
|
|
1393
|
-
ZoneLocation :
|
|
1394
|
-
LabelSelectionList :
|
|
1395
|
-
ObjectSelectionList :
|
|
1392
|
+
ZoneSelectionList : list[str]
|
|
1393
|
+
ZoneLocation : list[str]
|
|
1394
|
+
LabelSelectionList : list[str]
|
|
1395
|
+
ObjectSelectionList : list[str]
|
|
1396
1396
|
GraphicalSelection : bool
|
|
1397
1397
|
ShowCoordinates : bool
|
|
1398
1398
|
X : float
|
|
@@ -1417,9 +1417,9 @@ class Root(PyMenu):
|
|
|
1417
1417
|
Type : str
|
|
1418
1418
|
GeometryFileName : str
|
|
1419
1419
|
MeshFileName : str
|
|
1420
|
-
ImportedObjects :
|
|
1420
|
+
ImportedObjects : list[str]
|
|
1421
1421
|
LengthUnit : str
|
|
1422
|
-
CadImportOptions :
|
|
1422
|
+
CadImportOptions : dict[str, Any]
|
|
1423
1423
|
|
|
1424
1424
|
Returns
|
|
1425
1425
|
-------
|
|
@@ -1436,7 +1436,7 @@ class Root(PyMenu):
|
|
|
1436
1436
|
FileFormat : str
|
|
1437
1437
|
LengthUnit : str
|
|
1438
1438
|
MeshUnit : str
|
|
1439
|
-
ImportCadPreferences :
|
|
1439
|
+
ImportCadPreferences : dict[str, Any]
|
|
1440
1440
|
FileName : str
|
|
1441
1441
|
FileNames : str
|
|
1442
1442
|
MeshFileName : str
|
|
@@ -1446,7 +1446,7 @@ class Root(PyMenu):
|
|
|
1446
1446
|
AppendMesh : bool
|
|
1447
1447
|
Directory : str
|
|
1448
1448
|
Pattern : str
|
|
1449
|
-
CadImportOptions :
|
|
1449
|
+
CadImportOptions : dict[str, Any]
|
|
1450
1450
|
|
|
1451
1451
|
Returns
|
|
1452
1452
|
-------
|
|
@@ -1463,7 +1463,7 @@ class Root(PyMenu):
|
|
|
1463
1463
|
MeshObject : str
|
|
1464
1464
|
FaceQualityLimit : float
|
|
1465
1465
|
SQMinSize : float
|
|
1466
|
-
SMImprovePreferences :
|
|
1466
|
+
SMImprovePreferences : dict[str, Any]
|
|
1467
1467
|
|
|
1468
1468
|
Returns
|
|
1469
1469
|
-------
|
|
@@ -1479,7 +1479,7 @@ class Root(PyMenu):
|
|
|
1479
1479
|
----------
|
|
1480
1480
|
QualityMethod : str
|
|
1481
1481
|
CellQualityLimit : float
|
|
1482
|
-
VMImprovePreferences :
|
|
1482
|
+
VMImprovePreferences : dict[str, Any]
|
|
1483
1483
|
|
|
1484
1484
|
Returns
|
|
1485
1485
|
-------
|
|
@@ -1494,13 +1494,13 @@ class Root(PyMenu):
|
|
|
1494
1494
|
Parameters
|
|
1495
1495
|
----------
|
|
1496
1496
|
ChildName : str
|
|
1497
|
-
ObjectList :
|
|
1497
|
+
ObjectList : list[str]
|
|
1498
1498
|
AutoPopulateVector : str
|
|
1499
|
-
PatternVector :
|
|
1499
|
+
PatternVector : dict[str, Any]
|
|
1500
1500
|
Pitch : float
|
|
1501
1501
|
NumberOfUnits : int
|
|
1502
1502
|
CheckOverlappingFaces : str
|
|
1503
|
-
BatteryModelingOptions :
|
|
1503
|
+
BatteryModelingOptions : dict[str, Any]
|
|
1504
1504
|
|
|
1505
1505
|
Returns
|
|
1506
1506
|
-------
|
|
@@ -1519,7 +1519,7 @@ class Root(PyMenu):
|
|
|
1519
1519
|
Route : str
|
|
1520
1520
|
CreateObjectPer : str
|
|
1521
1521
|
NumParts : float
|
|
1522
|
-
2DRefaceting :
|
|
1522
|
+
2DRefaceting : dict[str, Any]
|
|
1523
1523
|
|
|
1524
1524
|
Returns
|
|
1525
1525
|
-------
|
|
@@ -1535,17 +1535,17 @@ class Root(PyMenu):
|
|
|
1535
1535
|
----------
|
|
1536
1536
|
LocalSettingsName : str
|
|
1537
1537
|
SelectionType : str
|
|
1538
|
-
ObjectSelectionList :
|
|
1539
|
-
LabelSelectionList :
|
|
1540
|
-
ZoneSelectionList :
|
|
1541
|
-
ZoneLocation :
|
|
1542
|
-
EdgeSelectionList :
|
|
1543
|
-
LocalSizeControlParameters :
|
|
1538
|
+
ObjectSelectionList : list[str]
|
|
1539
|
+
LabelSelectionList : list[str]
|
|
1540
|
+
ZoneSelectionList : list[str]
|
|
1541
|
+
ZoneLocation : list[str]
|
|
1542
|
+
EdgeSelectionList : list[str]
|
|
1543
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
1544
1544
|
ValueChanged : str
|
|
1545
|
-
CompleteZoneSelectionList :
|
|
1546
|
-
CompleteLabelSelectionList :
|
|
1547
|
-
CompleteObjectSelectionList :
|
|
1548
|
-
CompleteEdgeSelectionList :
|
|
1545
|
+
CompleteZoneSelectionList : list[str]
|
|
1546
|
+
CompleteLabelSelectionList : list[str]
|
|
1547
|
+
CompleteObjectSelectionList : list[str]
|
|
1548
|
+
CompleteEdgeSelectionList : list[str]
|
|
1549
1549
|
|
|
1550
1550
|
Returns
|
|
1551
1551
|
-------
|
|
@@ -1566,18 +1566,18 @@ class Root(PyMenu):
|
|
|
1566
1566
|
Volume : float
|
|
1567
1567
|
EqualRange : float
|
|
1568
1568
|
ZoneOrLabel : str
|
|
1569
|
-
LabelList :
|
|
1570
|
-
ManageFaceZoneList :
|
|
1571
|
-
ManageCellZoneList :
|
|
1572
|
-
BodyLabelList :
|
|
1569
|
+
LabelList : list[str]
|
|
1570
|
+
ManageFaceZoneList : list[str]
|
|
1571
|
+
ManageCellZoneList : list[str]
|
|
1572
|
+
BodyLabelList : list[str]
|
|
1573
1573
|
Operation : str
|
|
1574
1574
|
OperationName : str
|
|
1575
1575
|
MZChildName : str
|
|
1576
1576
|
AddPrefixName : str
|
|
1577
1577
|
FaceMerge : str
|
|
1578
1578
|
Angle : float
|
|
1579
|
-
ZoneList :
|
|
1580
|
-
ZoneLocation :
|
|
1579
|
+
ZoneList : list[str]
|
|
1580
|
+
ZoneLocation : list[str]
|
|
1581
1581
|
|
|
1582
1582
|
Returns
|
|
1583
1583
|
-------
|
|
@@ -1610,16 +1610,16 @@ class Root(PyMenu):
|
|
|
1610
1610
|
RemeshControlName : str
|
|
1611
1611
|
LocalSize : float
|
|
1612
1612
|
FaceZoneOrLabel : str
|
|
1613
|
-
RemeshFaceZoneList :
|
|
1614
|
-
RemeshFaceLabelList :
|
|
1613
|
+
RemeshFaceZoneList : list[str]
|
|
1614
|
+
RemeshFaceLabelList : list[str]
|
|
1615
1615
|
SizingType : str
|
|
1616
1616
|
LocalMinSize : float
|
|
1617
1617
|
LocalMaxSize : float
|
|
1618
1618
|
RemeshGrowthRate : float
|
|
1619
1619
|
RemeshCurvatureNormalAngle : float
|
|
1620
1620
|
RemeshCellsPerGap : float
|
|
1621
|
-
CFDSurfaceMeshControls :
|
|
1622
|
-
RemeshPreferences :
|
|
1621
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1622
|
+
RemeshPreferences : dict[str, Any]
|
|
1623
1623
|
|
|
1624
1624
|
Returns
|
|
1625
1625
|
-------
|
|
@@ -1650,10 +1650,10 @@ class Root(PyMenu):
|
|
|
1650
1650
|
RemoveEmptyParts : bool
|
|
1651
1651
|
FeatureAngle : float
|
|
1652
1652
|
OneZonePer : str
|
|
1653
|
-
Refaceting :
|
|
1653
|
+
Refaceting : dict[str, Any]
|
|
1654
1654
|
IgnoreSolidNames : bool
|
|
1655
1655
|
IgnoreSolidNamesAppend : bool
|
|
1656
|
-
Options :
|
|
1656
|
+
Options : dict[str, Any]
|
|
1657
1657
|
EdgeExtraction : str
|
|
1658
1658
|
Context : int
|
|
1659
1659
|
ObjectSetting : str
|
|
@@ -1673,8 +1673,8 @@ class Root(PyMenu):
|
|
|
1673
1673
|
PartReplacementName : str
|
|
1674
1674
|
ManagementMethod : str
|
|
1675
1675
|
CreationMethod : str
|
|
1676
|
-
OldObjectSelectionList :
|
|
1677
|
-
NewObjectSelectionList :
|
|
1676
|
+
OldObjectSelectionList : list[str]
|
|
1677
|
+
NewObjectSelectionList : list[str]
|
|
1678
1678
|
AdvancedOptions : bool
|
|
1679
1679
|
ScalingFactor : float
|
|
1680
1680
|
MptMethodType : str
|
|
@@ -1743,15 +1743,15 @@ class Root(PyMenu):
|
|
|
1743
1743
|
Type : str
|
|
1744
1744
|
Method : str
|
|
1745
1745
|
PeriodicityAngle : float
|
|
1746
|
-
LCSOrigin :
|
|
1747
|
-
LCSVector :
|
|
1748
|
-
TransShift :
|
|
1746
|
+
LCSOrigin : dict[str, Any]
|
|
1747
|
+
LCSVector : dict[str, Any]
|
|
1748
|
+
TransShift : dict[str, Any]
|
|
1749
1749
|
SelectionType : str
|
|
1750
|
-
ZoneList :
|
|
1751
|
-
LabelList :
|
|
1752
|
-
TopologyList :
|
|
1750
|
+
ZoneList : list[str]
|
|
1751
|
+
LabelList : list[str]
|
|
1752
|
+
TopologyList : list[str]
|
|
1753
1753
|
RemeshBoundariesOption : str
|
|
1754
|
-
ZoneLocation :
|
|
1754
|
+
ZoneLocation : list[str]
|
|
1755
1755
|
ListAllLabelToggle : bool
|
|
1756
1756
|
|
|
1757
1757
|
Returns
|
|
@@ -1774,7 +1774,7 @@ class Root(PyMenu):
|
|
|
1774
1774
|
LastRatioPercentage : float
|
|
1775
1775
|
FirstHeight : float
|
|
1776
1776
|
PrismLayers : int
|
|
1777
|
-
RegionSelectionList :
|
|
1777
|
+
RegionSelectionList : list[str]
|
|
1778
1778
|
|
|
1779
1779
|
Returns
|
|
1780
1780
|
-------
|
|
@@ -1792,10 +1792,10 @@ class Root(PyMenu):
|
|
|
1792
1792
|
GapDistanceConnect : float
|
|
1793
1793
|
STMinSize : float
|
|
1794
1794
|
InterfaceSelect : str
|
|
1795
|
-
EdgeLabels :
|
|
1796
|
-
ShareTopologyPreferences :
|
|
1797
|
-
SMImprovePreferences :
|
|
1798
|
-
SurfaceMeshPreferences :
|
|
1795
|
+
EdgeLabels : list[str]
|
|
1796
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1797
|
+
SMImprovePreferences : dict[str, Any]
|
|
1798
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1799
1799
|
|
|
1800
1800
|
Returns
|
|
1801
1801
|
-------
|
|
@@ -1816,7 +1816,7 @@ class Root(PyMenu):
|
|
|
1816
1816
|
InitialSizeControl : bool
|
|
1817
1817
|
TargetSizeControl : bool
|
|
1818
1818
|
SizeControlInterval : float
|
|
1819
|
-
SizeControlParameters :
|
|
1819
|
+
SizeControlParameters : dict[str, Any]
|
|
1820
1820
|
|
|
1821
1821
|
Returns
|
|
1822
1822
|
-------
|
|
@@ -1834,11 +1834,11 @@ class Root(PyMenu):
|
|
|
1834
1834
|
Type : str
|
|
1835
1835
|
Method : str
|
|
1836
1836
|
SelectionType : str
|
|
1837
|
-
TopoBodyList :
|
|
1838
|
-
CellZoneList :
|
|
1839
|
-
LCSOrigin :
|
|
1840
|
-
LCSVector :
|
|
1841
|
-
TransShift :
|
|
1837
|
+
TopoBodyList : list[str]
|
|
1838
|
+
CellZoneList : list[str]
|
|
1839
|
+
LCSOrigin : dict[str, Any]
|
|
1840
|
+
LCSVector : dict[str, Any]
|
|
1841
|
+
TransShift : dict[str, Any]
|
|
1842
1842
|
Angle : float
|
|
1843
1843
|
Copy : str
|
|
1844
1844
|
NumOfCopies : int
|
|
@@ -1859,21 +1859,21 @@ class Root(PyMenu):
|
|
|
1859
1859
|
----------
|
|
1860
1860
|
MeshObject : str
|
|
1861
1861
|
SelectionType : str
|
|
1862
|
-
BoundaryLabelList :
|
|
1863
|
-
BoundaryLabelTypeList :
|
|
1864
|
-
BoundaryZoneList :
|
|
1865
|
-
BoundaryZoneTypeList :
|
|
1866
|
-
OldBoundaryLabelList :
|
|
1867
|
-
OldBoundaryLabelTypeList :
|
|
1868
|
-
OldBoundaryZoneList :
|
|
1869
|
-
OldBoundaryZoneTypeList :
|
|
1870
|
-
OldLabelZoneList :
|
|
1862
|
+
BoundaryLabelList : list[str]
|
|
1863
|
+
BoundaryLabelTypeList : list[str]
|
|
1864
|
+
BoundaryZoneList : list[str]
|
|
1865
|
+
BoundaryZoneTypeList : list[str]
|
|
1866
|
+
OldBoundaryLabelList : list[str]
|
|
1867
|
+
OldBoundaryLabelTypeList : list[str]
|
|
1868
|
+
OldBoundaryZoneList : list[str]
|
|
1869
|
+
OldBoundaryZoneTypeList : list[str]
|
|
1870
|
+
OldLabelZoneList : list[str]
|
|
1871
1871
|
ListAllBoundariesToggle : bool
|
|
1872
|
-
ZoneLocation :
|
|
1873
|
-
TopologyList :
|
|
1874
|
-
TopologyTypeList :
|
|
1875
|
-
OldTopologyList :
|
|
1876
|
-
OldTopologyTypeList :
|
|
1872
|
+
ZoneLocation : list[str]
|
|
1873
|
+
TopologyList : list[str]
|
|
1874
|
+
TopologyTypeList : list[str]
|
|
1875
|
+
OldTopologyList : list[str]
|
|
1876
|
+
OldTopologyTypeList : list[str]
|
|
1877
1877
|
|
|
1878
1878
|
Returns
|
|
1879
1879
|
-------
|
|
@@ -1889,27 +1889,27 @@ class Root(PyMenu):
|
|
|
1889
1889
|
----------
|
|
1890
1890
|
MainFluidRegion : str
|
|
1891
1891
|
FilterCategory : str
|
|
1892
|
-
RegionNameList :
|
|
1893
|
-
RegionMeshMethodList :
|
|
1894
|
-
RegionTypeList :
|
|
1895
|
-
RegionVolumeFillList :
|
|
1896
|
-
RegionLeakageSizeList :
|
|
1897
|
-
RegionOversetComponenList :
|
|
1898
|
-
OldRegionNameList :
|
|
1899
|
-
OldRegionMeshMethodList :
|
|
1900
|
-
OldRegionTypeList :
|
|
1901
|
-
OldRegionVolumeFillList :
|
|
1902
|
-
OldRegionLeakageSizeList :
|
|
1903
|
-
OldRegionOversetComponenList :
|
|
1904
|
-
AllRegionNameList :
|
|
1905
|
-
AllRegionMeshMethodList :
|
|
1906
|
-
AllRegionTypeList :
|
|
1907
|
-
AllRegionVolumeFillList :
|
|
1908
|
-
AllRegionLeakageSizeList :
|
|
1909
|
-
AllRegionOversetComponenList :
|
|
1910
|
-
AllRegionLinkedConstructionSurfaceList :
|
|
1911
|
-
AllRegionSourceList :
|
|
1912
|
-
AllRegionFilterCategories :
|
|
1892
|
+
RegionNameList : list[str]
|
|
1893
|
+
RegionMeshMethodList : list[str]
|
|
1894
|
+
RegionTypeList : list[str]
|
|
1895
|
+
RegionVolumeFillList : list[str]
|
|
1896
|
+
RegionLeakageSizeList : list[str]
|
|
1897
|
+
RegionOversetComponenList : list[str]
|
|
1898
|
+
OldRegionNameList : list[str]
|
|
1899
|
+
OldRegionMeshMethodList : list[str]
|
|
1900
|
+
OldRegionTypeList : list[str]
|
|
1901
|
+
OldRegionVolumeFillList : list[str]
|
|
1902
|
+
OldRegionLeakageSizeList : list[str]
|
|
1903
|
+
OldRegionOversetComponenList : list[str]
|
|
1904
|
+
AllRegionNameList : list[str]
|
|
1905
|
+
AllRegionMeshMethodList : list[str]
|
|
1906
|
+
AllRegionTypeList : list[str]
|
|
1907
|
+
AllRegionVolumeFillList : list[str]
|
|
1908
|
+
AllRegionLeakageSizeList : list[str]
|
|
1909
|
+
AllRegionOversetComponenList : list[str]
|
|
1910
|
+
AllRegionLinkedConstructionSurfaceList : list[str]
|
|
1911
|
+
AllRegionSourceList : list[str]
|
|
1912
|
+
AllRegionFilterCategories : list[str]
|
|
1913
1913
|
|
|
1914
1914
|
Returns
|
|
1915
1915
|
-------
|
|
@@ -1924,12 +1924,12 @@ class Root(PyMenu):
|
|
|
1924
1924
|
Parameters
|
|
1925
1925
|
----------
|
|
1926
1926
|
MeshObject : str
|
|
1927
|
-
RegionNameList :
|
|
1928
|
-
RegionTypeList :
|
|
1929
|
-
OldRegionNameList :
|
|
1930
|
-
OldRegionTypeList :
|
|
1931
|
-
RegionInternals :
|
|
1932
|
-
RegionInternalTypes :
|
|
1927
|
+
RegionNameList : list[str]
|
|
1928
|
+
RegionTypeList : list[str]
|
|
1929
|
+
OldRegionNameList : list[str]
|
|
1930
|
+
OldRegionTypeList : list[str]
|
|
1931
|
+
RegionInternals : list[str]
|
|
1932
|
+
RegionInternalTypes : list[str]
|
|
1933
1933
|
|
|
1934
1934
|
Returns
|
|
1935
1935
|
-------
|