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
|
@@ -136,7 +136,7 @@ class Root(PyMenu):
|
|
|
136
136
|
|
|
137
137
|
Parameters
|
|
138
138
|
----------
|
|
139
|
-
FileName :
|
|
139
|
+
FileName : list[str]
|
|
140
140
|
ChangeDirectory : bool
|
|
141
141
|
|
|
142
142
|
Returns
|
|
@@ -254,85 +254,85 @@ class Root(PyMenu):
|
|
|
254
254
|
|
|
255
255
|
class AllOversetNameList(PyTextual):
|
|
256
256
|
"""
|
|
257
|
-
Parameter AllOversetNameList of value type
|
|
257
|
+
Parameter AllOversetNameList of value type list[str].
|
|
258
258
|
"""
|
|
259
259
|
pass
|
|
260
260
|
|
|
261
261
|
class AllOversetSizeList(PyTextual):
|
|
262
262
|
"""
|
|
263
|
-
Parameter AllOversetSizeList of value type
|
|
263
|
+
Parameter AllOversetSizeList of value type list[str].
|
|
264
264
|
"""
|
|
265
265
|
pass
|
|
266
266
|
|
|
267
267
|
class AllOversetTypeList(PyTextual):
|
|
268
268
|
"""
|
|
269
|
-
Parameter AllOversetTypeList of value type
|
|
269
|
+
Parameter AllOversetTypeList of value type list[str].
|
|
270
270
|
"""
|
|
271
271
|
pass
|
|
272
272
|
|
|
273
273
|
class AllOversetVolumeFillList(PyTextual):
|
|
274
274
|
"""
|
|
275
|
-
Parameter AllOversetVolumeFillList of value type
|
|
275
|
+
Parameter AllOversetVolumeFillList of value type list[str].
|
|
276
276
|
"""
|
|
277
277
|
pass
|
|
278
278
|
|
|
279
279
|
class AllRegionFilterCategories(PyTextual):
|
|
280
280
|
"""
|
|
281
|
-
Parameter AllRegionFilterCategories of value type
|
|
281
|
+
Parameter AllRegionFilterCategories of value type list[str].
|
|
282
282
|
"""
|
|
283
283
|
pass
|
|
284
284
|
|
|
285
285
|
class AllRegionLeakageSizeList(PyTextual):
|
|
286
286
|
"""
|
|
287
|
-
Parameter AllRegionLeakageSizeList of value type
|
|
287
|
+
Parameter AllRegionLeakageSizeList of value type list[str].
|
|
288
288
|
"""
|
|
289
289
|
pass
|
|
290
290
|
|
|
291
291
|
class AllRegionLinkedConstructionSurfaceList(PyTextual):
|
|
292
292
|
"""
|
|
293
|
-
Parameter AllRegionLinkedConstructionSurfaceList of value type
|
|
293
|
+
Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
|
|
294
294
|
"""
|
|
295
295
|
pass
|
|
296
296
|
|
|
297
297
|
class AllRegionMeshMethodList(PyTextual):
|
|
298
298
|
"""
|
|
299
|
-
Parameter AllRegionMeshMethodList of value type
|
|
299
|
+
Parameter AllRegionMeshMethodList of value type list[str].
|
|
300
300
|
"""
|
|
301
301
|
pass
|
|
302
302
|
|
|
303
303
|
class AllRegionNameList(PyTextual):
|
|
304
304
|
"""
|
|
305
|
-
Parameter AllRegionNameList of value type
|
|
305
|
+
Parameter AllRegionNameList of value type list[str].
|
|
306
306
|
"""
|
|
307
307
|
pass
|
|
308
308
|
|
|
309
309
|
class AllRegionOversetComponenList(PyTextual):
|
|
310
310
|
"""
|
|
311
|
-
Parameter AllRegionOversetComponenList of value type
|
|
311
|
+
Parameter AllRegionOversetComponenList of value type list[str].
|
|
312
312
|
"""
|
|
313
313
|
pass
|
|
314
314
|
|
|
315
315
|
class AllRegionSizeList(PyTextual):
|
|
316
316
|
"""
|
|
317
|
-
Parameter AllRegionSizeList of value type
|
|
317
|
+
Parameter AllRegionSizeList of value type list[str].
|
|
318
318
|
"""
|
|
319
319
|
pass
|
|
320
320
|
|
|
321
321
|
class AllRegionSourceList(PyTextual):
|
|
322
322
|
"""
|
|
323
|
-
Parameter AllRegionSourceList of value type
|
|
323
|
+
Parameter AllRegionSourceList of value type list[str].
|
|
324
324
|
"""
|
|
325
325
|
pass
|
|
326
326
|
|
|
327
327
|
class AllRegionTypeList(PyTextual):
|
|
328
328
|
"""
|
|
329
|
-
Parameter AllRegionTypeList of value type
|
|
329
|
+
Parameter AllRegionTypeList of value type list[str].
|
|
330
330
|
"""
|
|
331
331
|
pass
|
|
332
332
|
|
|
333
333
|
class AllRegionVolumeFillList(PyTextual):
|
|
334
334
|
"""
|
|
335
|
-
Parameter AllRegionVolumeFillList of value type
|
|
335
|
+
Parameter AllRegionVolumeFillList of value type list[str].
|
|
336
336
|
"""
|
|
337
337
|
pass
|
|
338
338
|
|
|
@@ -418,11 +418,11 @@ class Root(PyMenu):
|
|
|
418
418
|
FirstLayerHeight : float
|
|
419
419
|
MaxLayerHeight : float
|
|
420
420
|
Addin : str
|
|
421
|
-
FaceLabelList :
|
|
421
|
+
FaceLabelList : list[str]
|
|
422
422
|
GrowOn : str
|
|
423
|
-
EdgeLabelList :
|
|
424
|
-
EdgeZoneList :
|
|
425
|
-
ShellBLAdvancedOptions :
|
|
423
|
+
EdgeLabelList : list[str]
|
|
424
|
+
EdgeZoneList : list[str]
|
|
425
|
+
ShellBLAdvancedOptions : dict[str, Any]
|
|
426
426
|
|
|
427
427
|
Returns
|
|
428
428
|
-------
|
|
@@ -446,21 +446,21 @@ class Root(PyMenu):
|
|
|
446
446
|
Rate : float
|
|
447
447
|
FirstHeight : float
|
|
448
448
|
MaxLayerHeight : float
|
|
449
|
-
FaceScope :
|
|
450
|
-
RegionScope :
|
|
451
|
-
BlLabelList :
|
|
452
|
-
ZoneSelectionList :
|
|
453
|
-
ZoneLocation :
|
|
454
|
-
LocalPrismPreferences :
|
|
455
|
-
BLZoneList :
|
|
456
|
-
BLRegionList :
|
|
449
|
+
FaceScope : dict[str, Any]
|
|
450
|
+
RegionScope : list[str]
|
|
451
|
+
BlLabelList : list[str]
|
|
452
|
+
ZoneSelectionList : list[str]
|
|
453
|
+
ZoneLocation : list[str]
|
|
454
|
+
LocalPrismPreferences : dict[str, Any]
|
|
455
|
+
BLZoneList : list[str]
|
|
456
|
+
BLRegionList : list[str]
|
|
457
457
|
InvalidAdded : str
|
|
458
|
-
CompleteRegionScope :
|
|
459
|
-
CompleteBlLabelList :
|
|
460
|
-
CompleteBLZoneList :
|
|
461
|
-
CompleteBLRegionList :
|
|
462
|
-
CompleteZoneSelectionList :
|
|
463
|
-
CompleteLabelSelectionList :
|
|
458
|
+
CompleteRegionScope : list[str]
|
|
459
|
+
CompleteBlLabelList : list[str]
|
|
460
|
+
CompleteBLZoneList : list[str]
|
|
461
|
+
CompleteBLRegionList : list[str]
|
|
462
|
+
CompleteZoneSelectionList : list[str]
|
|
463
|
+
CompleteLabelSelectionList : list[str]
|
|
464
464
|
|
|
465
465
|
Returns
|
|
466
466
|
-------
|
|
@@ -484,20 +484,20 @@ class Root(PyMenu):
|
|
|
484
484
|
Rate : float
|
|
485
485
|
FirstHeight : float
|
|
486
486
|
MaxLayerHeight : float
|
|
487
|
-
FaceScope :
|
|
488
|
-
RegionScope :
|
|
489
|
-
BlLabelList :
|
|
490
|
-
ZoneSelectionList :
|
|
491
|
-
ZoneLocation :
|
|
492
|
-
LocalPrismPreferences :
|
|
493
|
-
BLZoneList :
|
|
494
|
-
BLRegionList :
|
|
495
|
-
CompleteRegionScope :
|
|
496
|
-
CompleteBlLabelList :
|
|
497
|
-
CompleteBLZoneList :
|
|
498
|
-
CompleteBLRegionList :
|
|
499
|
-
CompleteZoneSelectionList :
|
|
500
|
-
CompleteLabelSelectionList :
|
|
487
|
+
FaceScope : dict[str, Any]
|
|
488
|
+
RegionScope : list[str]
|
|
489
|
+
BlLabelList : list[str]
|
|
490
|
+
ZoneSelectionList : list[str]
|
|
491
|
+
ZoneLocation : list[str]
|
|
492
|
+
LocalPrismPreferences : dict[str, Any]
|
|
493
|
+
BLZoneList : list[str]
|
|
494
|
+
BLRegionList : list[str]
|
|
495
|
+
CompleteRegionScope : list[str]
|
|
496
|
+
CompleteBlLabelList : list[str]
|
|
497
|
+
CompleteBLZoneList : list[str]
|
|
498
|
+
CompleteBLRegionList : list[str]
|
|
499
|
+
CompleteZoneSelectionList : list[str]
|
|
500
|
+
CompleteLabelSelectionList : list[str]
|
|
501
501
|
|
|
502
502
|
Returns
|
|
503
503
|
-------
|
|
@@ -515,10 +515,10 @@ class Root(PyMenu):
|
|
|
515
515
|
NewBoundaryLabelName : str
|
|
516
516
|
NewBoundaryType : str
|
|
517
517
|
SelectionType : str
|
|
518
|
-
BoundaryFaceZoneList :
|
|
519
|
-
TopologyList :
|
|
518
|
+
BoundaryFaceZoneList : list[str]
|
|
519
|
+
TopologyList : list[str]
|
|
520
520
|
Merge : str
|
|
521
|
-
ZoneLocation :
|
|
521
|
+
ZoneLocation : list[str]
|
|
522
522
|
|
|
523
523
|
Returns
|
|
524
524
|
-------
|
|
@@ -534,17 +534,17 @@ class Root(PyMenu):
|
|
|
534
534
|
----------
|
|
535
535
|
LocalSettingsName : str
|
|
536
536
|
SelectionType : str
|
|
537
|
-
ObjectSelectionList :
|
|
538
|
-
LabelSelectionList :
|
|
539
|
-
ZoneSelectionList :
|
|
540
|
-
ZoneLocation :
|
|
541
|
-
EdgeSelectionList :
|
|
542
|
-
LocalSizeControlParameters :
|
|
537
|
+
ObjectSelectionList : list[str]
|
|
538
|
+
LabelSelectionList : list[str]
|
|
539
|
+
ZoneSelectionList : list[str]
|
|
540
|
+
ZoneLocation : list[str]
|
|
541
|
+
EdgeSelectionList : list[str]
|
|
542
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
543
543
|
ValueChanged : str
|
|
544
|
-
CompleteZoneSelectionList :
|
|
545
|
-
CompleteLabelSelectionList :
|
|
546
|
-
CompleteObjectSelectionList :
|
|
547
|
-
CompleteEdgeSelectionList :
|
|
544
|
+
CompleteZoneSelectionList : list[str]
|
|
545
|
+
CompleteLabelSelectionList : list[str]
|
|
546
|
+
CompleteObjectSelectionList : list[str]
|
|
547
|
+
CompleteEdgeSelectionList : list[str]
|
|
548
548
|
|
|
549
549
|
Returns
|
|
550
550
|
-------
|
|
@@ -574,18 +574,18 @@ class Root(PyMenu):
|
|
|
574
574
|
BOIScopeTo : str
|
|
575
575
|
IgnoreOrientation : str
|
|
576
576
|
BOIZoneorLabel : str
|
|
577
|
-
BOIFaceLabelList :
|
|
578
|
-
BOIFaceZoneList :
|
|
579
|
-
EdgeLabelList :
|
|
580
|
-
EdgeZoneList :
|
|
581
|
-
TopologyList :
|
|
577
|
+
BOIFaceLabelList : list[str]
|
|
578
|
+
BOIFaceZoneList : list[str]
|
|
579
|
+
EdgeLabelList : list[str]
|
|
580
|
+
EdgeZoneList : list[str]
|
|
581
|
+
TopologyList : list[str]
|
|
582
582
|
BOIPatchingtoggle : bool
|
|
583
583
|
DrawSizeControl : bool
|
|
584
|
-
ZoneLocation :
|
|
585
|
-
CompleteFaceZoneList :
|
|
586
|
-
CompleteFaceLabelList :
|
|
587
|
-
CompleteEdgeLabelList :
|
|
588
|
-
CompleteTopologyList :
|
|
584
|
+
ZoneLocation : list[str]
|
|
585
|
+
CompleteFaceZoneList : list[str]
|
|
586
|
+
CompleteFaceLabelList : list[str]
|
|
587
|
+
CompleteEdgeLabelList : list[str]
|
|
588
|
+
CompleteTopologyList : list[str]
|
|
589
589
|
PrimeSizeControlId : int
|
|
590
590
|
|
|
591
591
|
Returns
|
|
@@ -606,14 +606,14 @@ class Root(PyMenu):
|
|
|
606
606
|
FillWith : str
|
|
607
607
|
UseSweepSize : str
|
|
608
608
|
MaxSweepSize : float
|
|
609
|
-
RegionScope :
|
|
610
|
-
TopologyList :
|
|
609
|
+
RegionScope : list[str]
|
|
610
|
+
TopologyList : list[str]
|
|
611
611
|
SourceMethod : str
|
|
612
612
|
ParallelSelection : bool
|
|
613
613
|
ShowEdgeBiasing : str
|
|
614
|
-
LabelSourceList :
|
|
615
|
-
ZoneSourceList :
|
|
616
|
-
ZoneLocation :
|
|
614
|
+
LabelSourceList : list[str]
|
|
615
|
+
ZoneSourceList : list[str]
|
|
616
|
+
ZoneLocation : list[str]
|
|
617
617
|
AssignSizeUsing : str
|
|
618
618
|
Intervals : int
|
|
619
619
|
Size : float
|
|
@@ -622,11 +622,11 @@ class Root(PyMenu):
|
|
|
622
622
|
GrowthMethod : str
|
|
623
623
|
GrowthRate : float
|
|
624
624
|
BiasFactor : float
|
|
625
|
-
EdgeLabelSelection :
|
|
626
|
-
EdgeLabelList :
|
|
627
|
-
CFDSurfaceMeshControls :
|
|
628
|
-
CompleteRegionScope :
|
|
629
|
-
CompleteEdgeScope :
|
|
625
|
+
EdgeLabelSelection : list[str]
|
|
626
|
+
EdgeLabelList : list[str]
|
|
627
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
628
|
+
CompleteRegionScope : list[str]
|
|
629
|
+
CompleteEdgeScope : list[str]
|
|
630
630
|
|
|
631
631
|
Returns
|
|
632
632
|
-------
|
|
@@ -650,12 +650,12 @@ class Root(PyMenu):
|
|
|
650
650
|
FirstLayerHeight : float
|
|
651
651
|
MaxLayerHeight : float
|
|
652
652
|
GrowOn : str
|
|
653
|
-
FaceLabelList :
|
|
654
|
-
FaceZoneList :
|
|
653
|
+
FaceLabelList : list[str]
|
|
654
|
+
FaceZoneList : list[str]
|
|
655
655
|
EdgeSelectionType : str
|
|
656
|
-
EdgeLabelList :
|
|
657
|
-
EdgeZoneList :
|
|
658
|
-
ShellBLAdvancedOptions :
|
|
656
|
+
EdgeLabelList : list[str]
|
|
657
|
+
EdgeZoneList : list[str]
|
|
658
|
+
ShellBLAdvancedOptions : dict[str, Any]
|
|
659
659
|
|
|
660
660
|
Returns
|
|
661
661
|
-------
|
|
@@ -671,10 +671,10 @@ class Root(PyMenu):
|
|
|
671
671
|
----------
|
|
672
672
|
ZeroThicknessName : str
|
|
673
673
|
SelectionType : str
|
|
674
|
-
ZoneSelectionList :
|
|
675
|
-
ZoneLocation :
|
|
676
|
-
ObjectSelectionList :
|
|
677
|
-
LabelSelectionList :
|
|
674
|
+
ZoneSelectionList : list[str]
|
|
675
|
+
ZoneLocation : list[str]
|
|
676
|
+
ObjectSelectionList : list[str]
|
|
677
|
+
LabelSelectionList : list[str]
|
|
678
678
|
Distance : float
|
|
679
679
|
|
|
680
680
|
Returns
|
|
@@ -699,23 +699,23 @@ class Root(PyMenu):
|
|
|
699
699
|
SideImprints : bool
|
|
700
700
|
StackedPlates : bool
|
|
701
701
|
AutoControlCreation : bool
|
|
702
|
-
RegionScope :
|
|
702
|
+
RegionScope : list[str]
|
|
703
703
|
SelectSourceBy : str
|
|
704
704
|
ParallelSource : bool
|
|
705
|
-
LabelSourceList :
|
|
706
|
-
ZoneSourceList :
|
|
705
|
+
LabelSourceList : list[str]
|
|
706
|
+
ZoneSourceList : list[str]
|
|
707
707
|
SelectTargetBy : str
|
|
708
708
|
ParallelTarget : bool
|
|
709
|
-
LabelTargetList :
|
|
710
|
-
ZoneTargetList :
|
|
711
|
-
CompleteRegionScope :
|
|
712
|
-
CompleteLabelSourceList :
|
|
713
|
-
CompleteZoneSourceList :
|
|
714
|
-
CompleteLabelTargetList :
|
|
715
|
-
CompleteZoneTargetList :
|
|
716
|
-
ThinVolumePreferences :
|
|
717
|
-
ZoneLocation :
|
|
718
|
-
ZoneLocation2 :
|
|
709
|
+
LabelTargetList : list[str]
|
|
710
|
+
ZoneTargetList : list[str]
|
|
711
|
+
CompleteRegionScope : list[str]
|
|
712
|
+
CompleteLabelSourceList : list[str]
|
|
713
|
+
CompleteZoneSourceList : list[str]
|
|
714
|
+
CompleteLabelTargetList : list[str]
|
|
715
|
+
CompleteZoneTargetList : list[str]
|
|
716
|
+
ThinVolumePreferences : dict[str, Any]
|
|
717
|
+
ZoneLocation : list[str]
|
|
718
|
+
ZoneLocation2 : list[str]
|
|
719
719
|
|
|
720
720
|
Returns
|
|
721
721
|
-------
|
|
@@ -732,9 +732,9 @@ class Root(PyMenu):
|
|
|
732
732
|
AddChild : str
|
|
733
733
|
ControlName : str
|
|
734
734
|
SelectionType : str
|
|
735
|
-
FaceLabelList :
|
|
736
|
-
FaceZoneList :
|
|
737
|
-
NewFaces :
|
|
735
|
+
FaceLabelList : list[str]
|
|
736
|
+
FaceZoneList : list[str]
|
|
737
|
+
NewFaces : list[int]
|
|
738
738
|
|
|
739
739
|
Returns
|
|
740
740
|
-------
|
|
@@ -752,18 +752,18 @@ class Root(PyMenu):
|
|
|
752
752
|
ZoneType : str
|
|
753
753
|
PatchType : str
|
|
754
754
|
SelectionType : str
|
|
755
|
-
LabelSelectionList :
|
|
756
|
-
ZoneSelectionList :
|
|
757
|
-
TopologyList :
|
|
758
|
-
CreatePatchPreferences :
|
|
755
|
+
LabelSelectionList : list[str]
|
|
756
|
+
ZoneSelectionList : list[str]
|
|
757
|
+
TopologyList : list[str]
|
|
758
|
+
CreatePatchPreferences : dict[str, Any]
|
|
759
759
|
ObjectAssociation : str
|
|
760
760
|
NewObjectName : str
|
|
761
761
|
PatchObjectName : str
|
|
762
|
-
CapLabels :
|
|
763
|
-
ZoneLocation :
|
|
764
|
-
CompleteZoneSelectionList :
|
|
765
|
-
CompleteLabelSelectionList :
|
|
766
|
-
CompleteTopologyList :
|
|
762
|
+
CapLabels : list[str]
|
|
763
|
+
ZoneLocation : list[str]
|
|
764
|
+
CompleteZoneSelectionList : list[str]
|
|
765
|
+
CompleteLabelSelectionList : list[str]
|
|
766
|
+
CompleteTopologyList : list[str]
|
|
767
767
|
|
|
768
768
|
Returns
|
|
769
769
|
-------
|
|
@@ -818,7 +818,7 @@ class Root(PyMenu):
|
|
|
818
818
|
GlobalMin : float
|
|
819
819
|
GlobalMax : float
|
|
820
820
|
GlobalGrowthRate : float
|
|
821
|
-
MeshControlOptions :
|
|
821
|
+
MeshControlOptions : dict[str, Any]
|
|
822
822
|
|
|
823
823
|
Returns
|
|
824
824
|
-------
|
|
@@ -897,17 +897,17 @@ class Root(PyMenu):
|
|
|
897
897
|
BOIMaxSize : float
|
|
898
898
|
BOISizeName : str
|
|
899
899
|
SelectionType : str
|
|
900
|
-
ZoneSelectionList :
|
|
901
|
-
ZoneLocation :
|
|
902
|
-
LabelSelectionList :
|
|
903
|
-
ObjectSelectionList :
|
|
904
|
-
ZoneSelectionSingle :
|
|
905
|
-
ObjectSelectionSingle :
|
|
906
|
-
TopologyList :
|
|
907
|
-
BoundingBoxObject :
|
|
908
|
-
OffsetObject :
|
|
909
|
-
CylinderObject :
|
|
910
|
-
Axis :
|
|
900
|
+
ZoneSelectionList : list[str]
|
|
901
|
+
ZoneLocation : list[str]
|
|
902
|
+
LabelSelectionList : list[str]
|
|
903
|
+
ObjectSelectionList : list[str]
|
|
904
|
+
ZoneSelectionSingle : list[str]
|
|
905
|
+
ObjectSelectionSingle : list[str]
|
|
906
|
+
TopologyList : list[str]
|
|
907
|
+
BoundingBoxObject : dict[str, Any]
|
|
908
|
+
OffsetObject : dict[str, Any]
|
|
909
|
+
CylinderObject : dict[str, Any]
|
|
910
|
+
Axis : dict[str, Any]
|
|
911
911
|
VolumeFill : str
|
|
912
912
|
|
|
913
913
|
Returns
|
|
@@ -927,17 +927,17 @@ class Root(PyMenu):
|
|
|
927
927
|
BOIMaxSize : float
|
|
928
928
|
BOISizeName : str
|
|
929
929
|
SelectionType : str
|
|
930
|
-
ZoneSelectionList :
|
|
931
|
-
ZoneLocation :
|
|
932
|
-
LabelSelectionList :
|
|
933
|
-
ObjectSelectionList :
|
|
934
|
-
ZoneSelectionSingle :
|
|
935
|
-
ObjectSelectionSingle :
|
|
936
|
-
TopologyList :
|
|
937
|
-
BoundingBoxObject :
|
|
938
|
-
OffsetObject :
|
|
939
|
-
CylinderObject :
|
|
940
|
-
Axis :
|
|
930
|
+
ZoneSelectionList : list[str]
|
|
931
|
+
ZoneLocation : list[str]
|
|
932
|
+
LabelSelectionList : list[str]
|
|
933
|
+
ObjectSelectionList : list[str]
|
|
934
|
+
ZoneSelectionSingle : list[str]
|
|
935
|
+
ObjectSelectionSingle : list[str]
|
|
936
|
+
TopologyList : list[str]
|
|
937
|
+
BoundingBoxObject : dict[str, Any]
|
|
938
|
+
OffsetObject : dict[str, Any]
|
|
939
|
+
CylinderObject : dict[str, Any]
|
|
940
|
+
Axis : dict[str, Any]
|
|
941
941
|
VolumeFill : str
|
|
942
942
|
|
|
943
943
|
Returns
|
|
@@ -957,17 +957,17 @@ class Root(PyMenu):
|
|
|
957
957
|
BOIMaxSize : float
|
|
958
958
|
BOISizeName : str
|
|
959
959
|
SelectionType : str
|
|
960
|
-
ZoneSelectionList :
|
|
961
|
-
ZoneLocation :
|
|
962
|
-
LabelSelectionList :
|
|
963
|
-
ObjectSelectionList :
|
|
964
|
-
ZoneSelectionSingle :
|
|
965
|
-
ObjectSelectionSingle :
|
|
966
|
-
TopologyList :
|
|
967
|
-
BoundingBoxObject :
|
|
968
|
-
OffsetObject :
|
|
969
|
-
CylinderObject :
|
|
970
|
-
Axis :
|
|
960
|
+
ZoneSelectionList : list[str]
|
|
961
|
+
ZoneLocation : list[str]
|
|
962
|
+
LabelSelectionList : list[str]
|
|
963
|
+
ObjectSelectionList : list[str]
|
|
964
|
+
ZoneSelectionSingle : list[str]
|
|
965
|
+
ObjectSelectionSingle : list[str]
|
|
966
|
+
TopologyList : list[str]
|
|
967
|
+
BoundingBoxObject : dict[str, Any]
|
|
968
|
+
OffsetObject : dict[str, Any]
|
|
969
|
+
CylinderObject : dict[str, Any]
|
|
970
|
+
Axis : dict[str, Any]
|
|
971
971
|
VolumeFill : str
|
|
972
972
|
|
|
973
973
|
Returns
|
|
@@ -984,11 +984,11 @@ class Root(PyMenu):
|
|
|
984
984
|
----------
|
|
985
985
|
ContactPatchName : str
|
|
986
986
|
SelectionType : str
|
|
987
|
-
ZoneSelectionList :
|
|
988
|
-
ZoneLocation :
|
|
989
|
-
ObjectSelectionList :
|
|
990
|
-
LabelSelectionList :
|
|
991
|
-
GroundZoneSelectionList :
|
|
987
|
+
ZoneSelectionList : list[str]
|
|
988
|
+
ZoneLocation : list[str]
|
|
989
|
+
ObjectSelectionList : list[str]
|
|
990
|
+
LabelSelectionList : list[str]
|
|
991
|
+
GroundZoneSelectionList : list[str]
|
|
992
992
|
Distance : float
|
|
993
993
|
ContactPatchDefeaturingSize : float
|
|
994
994
|
FeatureAngle : float
|
|
@@ -1011,15 +1011,15 @@ class Root(PyMenu):
|
|
|
1011
1011
|
CreationMethod : str
|
|
1012
1012
|
ExtractionMethod : str
|
|
1013
1013
|
SelectionType : str
|
|
1014
|
-
ObjectSelectionList :
|
|
1015
|
-
ZoneSelectionList :
|
|
1016
|
-
ZoneLocation :
|
|
1017
|
-
LabelSelectionList :
|
|
1018
|
-
ObjectSelectionSingle :
|
|
1019
|
-
ZoneSelectionSingle :
|
|
1020
|
-
LabelSelectionSingle :
|
|
1014
|
+
ObjectSelectionList : list[str]
|
|
1015
|
+
ZoneSelectionList : list[str]
|
|
1016
|
+
ZoneLocation : list[str]
|
|
1017
|
+
LabelSelectionList : list[str]
|
|
1018
|
+
ObjectSelectionSingle : list[str]
|
|
1019
|
+
ZoneSelectionSingle : list[str]
|
|
1020
|
+
LabelSelectionSingle : list[str]
|
|
1021
1021
|
OriginalObjectName : str
|
|
1022
|
-
BoundingBoxObject :
|
|
1022
|
+
BoundingBoxObject : dict[str, Any]
|
|
1023
1023
|
|
|
1024
1024
|
Returns
|
|
1025
1025
|
-------
|
|
@@ -1038,10 +1038,10 @@ class Root(PyMenu):
|
|
|
1038
1038
|
GapSizeRatio : float
|
|
1039
1039
|
GapSize : float
|
|
1040
1040
|
SelectionType : str
|
|
1041
|
-
ZoneSelectionList :
|
|
1042
|
-
ZoneLocation :
|
|
1043
|
-
LabelSelectionList :
|
|
1044
|
-
ObjectSelectionList :
|
|
1041
|
+
ZoneSelectionList : list[str]
|
|
1042
|
+
ZoneLocation : list[str]
|
|
1043
|
+
LabelSelectionList : list[str]
|
|
1044
|
+
ObjectSelectionList : list[str]
|
|
1045
1045
|
GapCoverBetweenZones : str
|
|
1046
1046
|
GapCoverRefineFactor : float
|
|
1047
1047
|
GapCoverRefineFactorAtGap : float
|
|
@@ -1067,17 +1067,17 @@ class Root(PyMenu):
|
|
|
1067
1067
|
BOIMaxSize : float
|
|
1068
1068
|
BOISizeName : str
|
|
1069
1069
|
SelectionType : str
|
|
1070
|
-
ZoneSelectionList :
|
|
1071
|
-
ZoneLocation :
|
|
1072
|
-
LabelSelectionList :
|
|
1073
|
-
ObjectSelectionList :
|
|
1074
|
-
ZoneSelectionSingle :
|
|
1075
|
-
ObjectSelectionSingle :
|
|
1076
|
-
TopologyList :
|
|
1077
|
-
BoundingBoxObject :
|
|
1078
|
-
OffsetObject :
|
|
1079
|
-
CylinderObject :
|
|
1080
|
-
Axis :
|
|
1070
|
+
ZoneSelectionList : list[str]
|
|
1071
|
+
ZoneLocation : list[str]
|
|
1072
|
+
LabelSelectionList : list[str]
|
|
1073
|
+
ObjectSelectionList : list[str]
|
|
1074
|
+
ZoneSelectionSingle : list[str]
|
|
1075
|
+
ObjectSelectionSingle : list[str]
|
|
1076
|
+
TopologyList : list[str]
|
|
1077
|
+
BoundingBoxObject : dict[str, Any]
|
|
1078
|
+
OffsetObject : dict[str, Any]
|
|
1079
|
+
CylinderObject : dict[str, Any]
|
|
1080
|
+
Axis : dict[str, Any]
|
|
1081
1081
|
VolumeFill : str
|
|
1082
1082
|
|
|
1083
1083
|
Returns
|
|
@@ -1108,7 +1108,7 @@ class Root(PyMenu):
|
|
|
1108
1108
|
Parameters
|
|
1109
1109
|
----------
|
|
1110
1110
|
OversetInterfacesName : str
|
|
1111
|
-
ObjectSelectionList :
|
|
1111
|
+
ObjectSelectionList : list[str]
|
|
1112
1112
|
|
|
1113
1113
|
Returns
|
|
1114
1114
|
-------
|
|
@@ -1130,11 +1130,11 @@ class Root(PyMenu):
|
|
|
1130
1130
|
CellSizeP1P3 : float
|
|
1131
1131
|
CellSizeP1P4 : float
|
|
1132
1132
|
BufferSizeRatio : float
|
|
1133
|
-
P1 :
|
|
1134
|
-
P2 :
|
|
1135
|
-
P3 :
|
|
1136
|
-
P4 :
|
|
1137
|
-
NonRectangularParameters :
|
|
1133
|
+
P1 : list[float]
|
|
1134
|
+
P2 : list[float]
|
|
1135
|
+
P3 : list[float]
|
|
1136
|
+
P4 : list[float]
|
|
1137
|
+
NonRectangularParameters : dict[str, Any]
|
|
1138
1138
|
|
|
1139
1139
|
Returns
|
|
1140
1140
|
-------
|
|
@@ -1172,7 +1172,7 @@ class Root(PyMenu):
|
|
|
1172
1172
|
CellsPerGap : float
|
|
1173
1173
|
ScopeProximityTo : str
|
|
1174
1174
|
Mesher : str
|
|
1175
|
-
PrimeSizeControlIds :
|
|
1175
|
+
PrimeSizeControlIds : list[int]
|
|
1176
1176
|
EnableMultiThreading : bool
|
|
1177
1177
|
NumberOfMultiThreads : int
|
|
1178
1178
|
|
|
@@ -1191,8 +1191,8 @@ class Root(PyMenu):
|
|
|
1191
1191
|
AddChild : str
|
|
1192
1192
|
LeakageName : str
|
|
1193
1193
|
SelectionType : str
|
|
1194
|
-
DeadRegionsList :
|
|
1195
|
-
RegionSelectionSingle :
|
|
1194
|
+
DeadRegionsList : list[str]
|
|
1195
|
+
RegionSelectionSingle : list[str]
|
|
1196
1196
|
DeadRegionsSize : float
|
|
1197
1197
|
PlaneClippingValue : int
|
|
1198
1198
|
PlaneDirection : str
|
|
@@ -1215,8 +1215,8 @@ class Root(PyMenu):
|
|
|
1215
1215
|
AddEnclosure : str
|
|
1216
1216
|
CloseCaps : str
|
|
1217
1217
|
LocalRefinementRegions : str
|
|
1218
|
-
DescribeGeometryAndFlowOptions :
|
|
1219
|
-
AllTaskList :
|
|
1218
|
+
DescribeGeometryAndFlowOptions : dict[str, Any]
|
|
1219
|
+
AllTaskList : list[str]
|
|
1220
1220
|
|
|
1221
1221
|
Returns
|
|
1222
1222
|
-------
|
|
@@ -1251,17 +1251,17 @@ class Root(PyMenu):
|
|
|
1251
1251
|
ExtractEdgesName : str
|
|
1252
1252
|
ExtractMethodType : str
|
|
1253
1253
|
SelectionType : str
|
|
1254
|
-
ObjectSelectionList :
|
|
1255
|
-
GeomObjectSelectionList :
|
|
1256
|
-
ZoneSelectionList :
|
|
1257
|
-
ZoneLocation :
|
|
1258
|
-
LabelSelectionList :
|
|
1254
|
+
ObjectSelectionList : list[str]
|
|
1255
|
+
GeomObjectSelectionList : list[str]
|
|
1256
|
+
ZoneSelectionList : list[str]
|
|
1257
|
+
ZoneLocation : list[str]
|
|
1258
|
+
LabelSelectionList : list[str]
|
|
1259
1259
|
FeatureAngleLocal : int
|
|
1260
1260
|
IndividualCollective : str
|
|
1261
1261
|
SharpAngle : int
|
|
1262
|
-
CompleteObjectSelectionList :
|
|
1263
|
-
CompleteGeomObjectSelectionList :
|
|
1264
|
-
NonExtractedObjects :
|
|
1262
|
+
CompleteObjectSelectionList : list[str]
|
|
1263
|
+
CompleteGeomObjectSelectionList : list[str]
|
|
1264
|
+
NonExtractedObjects : list[str]
|
|
1265
1265
|
|
|
1266
1266
|
Returns
|
|
1267
1267
|
-------
|
|
@@ -1280,14 +1280,14 @@ class Root(PyMenu):
|
|
|
1280
1280
|
SelectionType : str
|
|
1281
1281
|
ExtendToPeriodicPair : bool
|
|
1282
1282
|
ExtrudeNormalBased : bool
|
|
1283
|
-
ExternalBoundaryZoneList :
|
|
1284
|
-
TopologyList :
|
|
1283
|
+
ExternalBoundaryZoneList : list[str]
|
|
1284
|
+
TopologyList : list[str]
|
|
1285
1285
|
TotalHeight : float
|
|
1286
1286
|
FirstHeight : float
|
|
1287
1287
|
NumberofLayers : int
|
|
1288
1288
|
GrowthRate : float
|
|
1289
|
-
VMExtrudePreferences :
|
|
1290
|
-
ZoneLocation :
|
|
1289
|
+
VMExtrudePreferences : dict[str, Any]
|
|
1290
|
+
ZoneLocation : list[str]
|
|
1291
1291
|
|
|
1292
1292
|
Returns
|
|
1293
1293
|
-------
|
|
@@ -1305,8 +1305,8 @@ class Root(PyMenu):
|
|
|
1305
1305
|
ProjectOnGeometry : bool
|
|
1306
1306
|
EnableMultiThreading : bool
|
|
1307
1307
|
NumberOfMultiThreads : int
|
|
1308
|
-
Prism2DPreferences :
|
|
1309
|
-
Surface2DPreferences :
|
|
1308
|
+
Prism2DPreferences : dict[str, Any]
|
|
1309
|
+
Surface2DPreferences : dict[str, Any]
|
|
1310
1310
|
|
|
1311
1311
|
Returns
|
|
1312
1312
|
-------
|
|
@@ -1329,8 +1329,8 @@ class Root(PyMenu):
|
|
|
1329
1329
|
SplitQuads : bool
|
|
1330
1330
|
ProjectOnGeometry : bool
|
|
1331
1331
|
SelectionType : str
|
|
1332
|
-
FaceLabelList :
|
|
1333
|
-
FaceZoneList :
|
|
1332
|
+
FaceLabelList : list[str]
|
|
1333
|
+
FaceZoneList : list[str]
|
|
1334
1334
|
|
|
1335
1335
|
Returns
|
|
1336
1336
|
-------
|
|
@@ -1382,13 +1382,13 @@ class Root(PyMenu):
|
|
|
1382
1382
|
----------
|
|
1383
1383
|
OrthogonalQualityLimit : float
|
|
1384
1384
|
SelectionType : str
|
|
1385
|
-
RegionScope :
|
|
1385
|
+
RegionScope : list[str]
|
|
1386
1386
|
NonConformal : str
|
|
1387
1387
|
SizeFunctionScaleFactor : float
|
|
1388
1388
|
MeshingStrategy : str
|
|
1389
|
-
CFDSurfaceMeshControls :
|
|
1390
|
-
CellZoneList :
|
|
1391
|
-
CompleteRegionScope :
|
|
1389
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1390
|
+
CellZoneList : list[str]
|
|
1391
|
+
CompleteRegionScope : list[str]
|
|
1392
1392
|
|
|
1393
1393
|
Returns
|
|
1394
1394
|
-------
|
|
@@ -1435,13 +1435,13 @@ class Root(PyMenu):
|
|
|
1435
1435
|
|
|
1436
1436
|
Parameters
|
|
1437
1437
|
----------
|
|
1438
|
-
CFDSurfaceMeshControls :
|
|
1438
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1439
1439
|
SeparationRequired : str
|
|
1440
1440
|
SeparationAngle : float
|
|
1441
1441
|
RemeshSelectionType : str
|
|
1442
|
-
RemeshZoneList :
|
|
1443
|
-
RemeshLabelList :
|
|
1444
|
-
SurfaceMeshPreferences :
|
|
1442
|
+
RemeshZoneList : list[str]
|
|
1443
|
+
RemeshLabelList : list[str]
|
|
1444
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1445
1445
|
ImportType : str
|
|
1446
1446
|
AppendMesh : bool
|
|
1447
1447
|
CadFacetingFileName : str
|
|
@@ -1449,11 +1449,11 @@ class Root(PyMenu):
|
|
|
1449
1449
|
Pattern : str
|
|
1450
1450
|
LengthUnit : str
|
|
1451
1451
|
TesselationMethod : str
|
|
1452
|
-
OriginalZones :
|
|
1452
|
+
OriginalZones : list[str]
|
|
1453
1453
|
ExecuteShareTopology : str
|
|
1454
|
-
CADFacetingControls :
|
|
1455
|
-
CadImportOptions :
|
|
1456
|
-
ShareTopologyPreferences :
|
|
1454
|
+
CADFacetingControls : dict[str, Any]
|
|
1455
|
+
CadImportOptions : dict[str, Any]
|
|
1456
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1457
1457
|
PreviewSizeToggle : bool
|
|
1458
1458
|
|
|
1459
1459
|
Returns
|
|
@@ -1473,15 +1473,15 @@ class Root(PyMenu):
|
|
|
1473
1473
|
EnableParallel : bool
|
|
1474
1474
|
SaveVolumeMesh : bool
|
|
1475
1475
|
EditVolumeSettings : bool
|
|
1476
|
-
RegionNameList :
|
|
1477
|
-
RegionVolumeFillList :
|
|
1478
|
-
RegionSizeList :
|
|
1479
|
-
OldRegionNameList :
|
|
1480
|
-
OldRegionVolumeFillList :
|
|
1481
|
-
OldRegionSizeList :
|
|
1482
|
-
AllRegionNameList :
|
|
1483
|
-
AllRegionVolumeFillList :
|
|
1484
|
-
AllRegionSizeList :
|
|
1476
|
+
RegionNameList : list[str]
|
|
1477
|
+
RegionVolumeFillList : list[str]
|
|
1478
|
+
RegionSizeList : list[str]
|
|
1479
|
+
OldRegionNameList : list[str]
|
|
1480
|
+
OldRegionVolumeFillList : list[str]
|
|
1481
|
+
OldRegionSizeList : list[str]
|
|
1482
|
+
AllRegionNameList : list[str]
|
|
1483
|
+
AllRegionVolumeFillList : list[str]
|
|
1484
|
+
AllRegionSizeList : list[str]
|
|
1485
1485
|
AdvancedOptions : bool
|
|
1486
1486
|
SpikeRemovalAngle : float
|
|
1487
1487
|
DihedralMinAngle : float
|
|
@@ -1514,12 +1514,12 @@ class Root(PyMenu):
|
|
|
1514
1514
|
MeshFluidRegions : bool
|
|
1515
1515
|
MeshSolidRegions : bool
|
|
1516
1516
|
SizingMethod : str
|
|
1517
|
-
VolumeFillControls :
|
|
1517
|
+
VolumeFillControls : dict[str, Any]
|
|
1518
1518
|
RegionBasedPreferences : bool
|
|
1519
1519
|
ReMergeZones : str
|
|
1520
1520
|
ParallelMeshing : bool
|
|
1521
|
-
VolumeMeshPreferences :
|
|
1522
|
-
PrismPreferences :
|
|
1521
|
+
VolumeMeshPreferences : dict[str, Any]
|
|
1522
|
+
PrismPreferences : dict[str, Any]
|
|
1523
1523
|
InvokePrimsControl : str
|
|
1524
1524
|
OffsetMethodType : str
|
|
1525
1525
|
NumberOfLayers : int
|
|
@@ -1529,20 +1529,20 @@ class Root(PyMenu):
|
|
|
1529
1529
|
FirstHeight : float
|
|
1530
1530
|
MeshObject : str
|
|
1531
1531
|
MeshDeadRegions : bool
|
|
1532
|
-
BodyLabelList :
|
|
1532
|
+
BodyLabelList : list[str]
|
|
1533
1533
|
PrismLayers : bool
|
|
1534
1534
|
QuadTetTransition : str
|
|
1535
1535
|
MergeCellZones : bool
|
|
1536
|
-
FaceScope :
|
|
1537
|
-
RegionTetNameList :
|
|
1538
|
-
RegionTetMaxCellLengthList :
|
|
1539
|
-
RegionTetGrowthRateList :
|
|
1540
|
-
RegionHexNameList :
|
|
1541
|
-
RegionHexMaxCellLengthList :
|
|
1542
|
-
OldRegionTetMaxCellLengthList :
|
|
1543
|
-
OldRegionTetGrowthRateList :
|
|
1544
|
-
OldRegionHexMaxCellLengthList :
|
|
1545
|
-
CFDSurfaceMeshControls :
|
|
1536
|
+
FaceScope : dict[str, Any]
|
|
1537
|
+
RegionTetNameList : list[str]
|
|
1538
|
+
RegionTetMaxCellLengthList : list[str]
|
|
1539
|
+
RegionTetGrowthRateList : list[str]
|
|
1540
|
+
RegionHexNameList : list[str]
|
|
1541
|
+
RegionHexMaxCellLengthList : list[str]
|
|
1542
|
+
OldRegionTetMaxCellLengthList : list[str]
|
|
1543
|
+
OldRegionTetGrowthRateList : list[str]
|
|
1544
|
+
OldRegionHexMaxCellLengthList : list[str]
|
|
1545
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1546
1546
|
ShowSolidFluidMeshed : bool
|
|
1547
1547
|
|
|
1548
1548
|
Returns
|
|
@@ -1563,14 +1563,14 @@ class Root(PyMenu):
|
|
|
1563
1563
|
InvokeShareTopology : str
|
|
1564
1564
|
NonConformal : str
|
|
1565
1565
|
Multizone : str
|
|
1566
|
-
SetupInternals :
|
|
1567
|
-
SetupInternalTypes :
|
|
1568
|
-
OldZoneList :
|
|
1569
|
-
OldZoneTypeList :
|
|
1570
|
-
RegionList :
|
|
1571
|
-
EdgeLabels :
|
|
1566
|
+
SetupInternals : list[str]
|
|
1567
|
+
SetupInternalTypes : list[str]
|
|
1568
|
+
OldZoneList : list[str]
|
|
1569
|
+
OldZoneTypeList : list[str]
|
|
1570
|
+
RegionList : list[str]
|
|
1571
|
+
EdgeLabels : list[str]
|
|
1572
1572
|
Duplicates : bool
|
|
1573
|
-
SMImprovePreferences :
|
|
1573
|
+
SMImprovePreferences : dict[str, Any]
|
|
1574
1574
|
|
|
1575
1575
|
Returns
|
|
1576
1576
|
-------
|
|
@@ -1587,20 +1587,20 @@ class Root(PyMenu):
|
|
|
1587
1587
|
MRFName : str
|
|
1588
1588
|
CreationMethod : str
|
|
1589
1589
|
SelectionType : str
|
|
1590
|
-
ObjectSelectionSingle :
|
|
1591
|
-
ZoneSelectionSingle :
|
|
1592
|
-
LabelSelectionSingle :
|
|
1593
|
-
ObjectSelectionList :
|
|
1594
|
-
ZoneSelectionList :
|
|
1595
|
-
ZoneLocation :
|
|
1596
|
-
LabelSelectionList :
|
|
1590
|
+
ObjectSelectionSingle : list[str]
|
|
1591
|
+
ZoneSelectionSingle : list[str]
|
|
1592
|
+
LabelSelectionSingle : list[str]
|
|
1593
|
+
ObjectSelectionList : list[str]
|
|
1594
|
+
ZoneSelectionList : list[str]
|
|
1595
|
+
ZoneLocation : list[str]
|
|
1596
|
+
LabelSelectionList : list[str]
|
|
1597
1597
|
DefeaturingSize : float
|
|
1598
1598
|
OffsetHeight : float
|
|
1599
|
-
Pivot :
|
|
1600
|
-
Axis :
|
|
1601
|
-
Rotation :
|
|
1602
|
-
CylinderObject :
|
|
1603
|
-
BoundingBoxObject :
|
|
1599
|
+
Pivot : dict[str, Any]
|
|
1600
|
+
Axis : dict[str, Any]
|
|
1601
|
+
Rotation : dict[str, Any]
|
|
1602
|
+
CylinderObject : dict[str, Any]
|
|
1603
|
+
BoundingBoxObject : dict[str, Any]
|
|
1604
1604
|
|
|
1605
1605
|
Returns
|
|
1606
1606
|
-------
|
|
@@ -1616,9 +1616,9 @@ class Root(PyMenu):
|
|
|
1616
1616
|
----------
|
|
1617
1617
|
DisplayGridName : str
|
|
1618
1618
|
SelectionType : str
|
|
1619
|
-
ObjectSelectionList :
|
|
1620
|
-
ZoneSelectionList :
|
|
1621
|
-
ZoneLocation :
|
|
1619
|
+
ObjectSelectionList : list[str]
|
|
1620
|
+
ZoneSelectionList : list[str]
|
|
1621
|
+
ZoneLocation : list[str]
|
|
1622
1622
|
AdvancedOptions : bool
|
|
1623
1623
|
DeviationMinValue : float
|
|
1624
1624
|
DeviationMaxValue : float
|
|
@@ -1638,15 +1638,15 @@ class Root(PyMenu):
|
|
|
1638
1638
|
Parameters
|
|
1639
1639
|
----------
|
|
1640
1640
|
NumberOfOrphans : str
|
|
1641
|
-
ObjectSelectionList :
|
|
1641
|
+
ObjectSelectionList : list[str]
|
|
1642
1642
|
EnableGridPriority : bool
|
|
1643
1643
|
DonorPriorityMethod : str
|
|
1644
1644
|
OverlapBoundaries : str
|
|
1645
1645
|
CheckOversetInterfaceIntersection : str
|
|
1646
|
-
RegionNameList :
|
|
1647
|
-
RegionSizeList :
|
|
1648
|
-
OldRegionNameList :
|
|
1649
|
-
OldRegionSizeList :
|
|
1646
|
+
RegionNameList : list[str]
|
|
1647
|
+
RegionSizeList : list[str]
|
|
1648
|
+
OldRegionNameList : list[str]
|
|
1649
|
+
OldRegionSizeList : list[str]
|
|
1650
1650
|
|
|
1651
1651
|
Returns
|
|
1652
1652
|
-------
|
|
@@ -1666,10 +1666,10 @@ class Root(PyMenu):
|
|
|
1666
1666
|
NewRegionType : str
|
|
1667
1667
|
LinkConstruction : str
|
|
1668
1668
|
SelectionType : str
|
|
1669
|
-
ZoneSelectionList :
|
|
1670
|
-
ZoneLocation :
|
|
1671
|
-
LabelSelectionList :
|
|
1672
|
-
ObjectSelectionList :
|
|
1669
|
+
ZoneSelectionList : list[str]
|
|
1670
|
+
ZoneLocation : list[str]
|
|
1671
|
+
LabelSelectionList : list[str]
|
|
1672
|
+
ObjectSelectionList : list[str]
|
|
1673
1673
|
GraphicalSelection : bool
|
|
1674
1674
|
ShowCoordinates : bool
|
|
1675
1675
|
X : float
|
|
@@ -1694,9 +1694,9 @@ class Root(PyMenu):
|
|
|
1694
1694
|
Type : str
|
|
1695
1695
|
GeometryFileName : str
|
|
1696
1696
|
MeshFileName : str
|
|
1697
|
-
ImportedObjects :
|
|
1697
|
+
ImportedObjects : list[str]
|
|
1698
1698
|
LengthUnit : str
|
|
1699
|
-
CadImportOptions :
|
|
1699
|
+
CadImportOptions : dict[str, Any]
|
|
1700
1700
|
|
|
1701
1701
|
Returns
|
|
1702
1702
|
-------
|
|
@@ -1715,7 +1715,7 @@ class Root(PyMenu):
|
|
|
1715
1715
|
LengthUnit : str
|
|
1716
1716
|
MeshUnit : str
|
|
1717
1717
|
UseBodyLabels : str
|
|
1718
|
-
ImportCadPreferences :
|
|
1718
|
+
ImportCadPreferences : dict[str, Any]
|
|
1719
1719
|
FileName : str
|
|
1720
1720
|
FileNames : str
|
|
1721
1721
|
MeshFileName : str
|
|
@@ -1723,7 +1723,7 @@ class Root(PyMenu):
|
|
|
1723
1723
|
AppendMesh : bool
|
|
1724
1724
|
Directory : str
|
|
1725
1725
|
Pattern : str
|
|
1726
|
-
CadImportOptions :
|
|
1726
|
+
CadImportOptions : dict[str, Any]
|
|
1727
1727
|
|
|
1728
1728
|
Returns
|
|
1729
1729
|
-------
|
|
@@ -1740,7 +1740,7 @@ class Root(PyMenu):
|
|
|
1740
1740
|
MeshObject : str
|
|
1741
1741
|
FaceQualityLimit : float
|
|
1742
1742
|
SQMinSize : float
|
|
1743
|
-
SMImprovePreferences :
|
|
1743
|
+
SMImprovePreferences : dict[str, Any]
|
|
1744
1744
|
|
|
1745
1745
|
Returns
|
|
1746
1746
|
-------
|
|
@@ -1756,7 +1756,7 @@ class Root(PyMenu):
|
|
|
1756
1756
|
----------
|
|
1757
1757
|
QualityMethod : str
|
|
1758
1758
|
CellQualityLimit : float
|
|
1759
|
-
VMImprovePreferences :
|
|
1759
|
+
VMImprovePreferences : dict[str, Any]
|
|
1760
1760
|
|
|
1761
1761
|
Returns
|
|
1762
1762
|
-------
|
|
@@ -1771,13 +1771,13 @@ class Root(PyMenu):
|
|
|
1771
1771
|
Parameters
|
|
1772
1772
|
----------
|
|
1773
1773
|
ChildName : str
|
|
1774
|
-
ObjectList :
|
|
1774
|
+
ObjectList : list[str]
|
|
1775
1775
|
AutoPopulateVector : str
|
|
1776
|
-
PatternVector :
|
|
1776
|
+
PatternVector : dict[str, Any]
|
|
1777
1777
|
Pitch : float
|
|
1778
1778
|
NumberOfUnits : int
|
|
1779
1779
|
CheckOverlappingFaces : str
|
|
1780
|
-
BatteryModelingOptions :
|
|
1780
|
+
BatteryModelingOptions : dict[str, Any]
|
|
1781
1781
|
|
|
1782
1782
|
Returns
|
|
1783
1783
|
-------
|
|
@@ -1798,7 +1798,7 @@ class Root(PyMenu):
|
|
|
1798
1798
|
FacetingTolerance : float
|
|
1799
1799
|
CreateObjectPer : str
|
|
1800
1800
|
NumParts : float
|
|
1801
|
-
Refaceting :
|
|
1801
|
+
Refaceting : dict[str, Any]
|
|
1802
1802
|
|
|
1803
1803
|
Returns
|
|
1804
1804
|
-------
|
|
@@ -1814,17 +1814,17 @@ class Root(PyMenu):
|
|
|
1814
1814
|
----------
|
|
1815
1815
|
LocalSettingsName : str
|
|
1816
1816
|
SelectionType : str
|
|
1817
|
-
ObjectSelectionList :
|
|
1818
|
-
LabelSelectionList :
|
|
1819
|
-
ZoneSelectionList :
|
|
1820
|
-
ZoneLocation :
|
|
1821
|
-
EdgeSelectionList :
|
|
1822
|
-
LocalSizeControlParameters :
|
|
1817
|
+
ObjectSelectionList : list[str]
|
|
1818
|
+
LabelSelectionList : list[str]
|
|
1819
|
+
ZoneSelectionList : list[str]
|
|
1820
|
+
ZoneLocation : list[str]
|
|
1821
|
+
EdgeSelectionList : list[str]
|
|
1822
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
1823
1823
|
ValueChanged : str
|
|
1824
|
-
CompleteZoneSelectionList :
|
|
1825
|
-
CompleteLabelSelectionList :
|
|
1826
|
-
CompleteObjectSelectionList :
|
|
1827
|
-
CompleteEdgeSelectionList :
|
|
1824
|
+
CompleteZoneSelectionList : list[str]
|
|
1825
|
+
CompleteLabelSelectionList : list[str]
|
|
1826
|
+
CompleteObjectSelectionList : list[str]
|
|
1827
|
+
CompleteEdgeSelectionList : list[str]
|
|
1828
1828
|
|
|
1829
1829
|
Returns
|
|
1830
1830
|
-------
|
|
@@ -1845,20 +1845,20 @@ class Root(PyMenu):
|
|
|
1845
1845
|
Volume : float
|
|
1846
1846
|
EqualRange : float
|
|
1847
1847
|
ZoneOrLabel : str
|
|
1848
|
-
LabelList :
|
|
1849
|
-
ManageFaceZoneList :
|
|
1850
|
-
ManageCellZoneList :
|
|
1851
|
-
BodyLabelList :
|
|
1848
|
+
LabelList : list[str]
|
|
1849
|
+
ManageFaceZoneList : list[str]
|
|
1850
|
+
ManageCellZoneList : list[str]
|
|
1851
|
+
BodyLabelList : list[str]
|
|
1852
1852
|
Operation : str
|
|
1853
1853
|
OperationName : str
|
|
1854
1854
|
MZChildName : str
|
|
1855
1855
|
AddPrefixName : str
|
|
1856
1856
|
FaceMerge : str
|
|
1857
1857
|
Angle : float
|
|
1858
|
-
ZoneList :
|
|
1859
|
-
CompleteZoneList :
|
|
1860
|
-
CompleteLabelList :
|
|
1861
|
-
ZoneLocation :
|
|
1858
|
+
ZoneList : list[str]
|
|
1859
|
+
CompleteZoneList : list[str]
|
|
1860
|
+
CompleteLabelList : list[str]
|
|
1861
|
+
ZoneLocation : list[str]
|
|
1862
1862
|
|
|
1863
1863
|
Returns
|
|
1864
1864
|
-------
|
|
@@ -1891,16 +1891,16 @@ class Root(PyMenu):
|
|
|
1891
1891
|
RemeshControlName : str
|
|
1892
1892
|
LocalSize : float
|
|
1893
1893
|
FaceZoneOrLabel : str
|
|
1894
|
-
RemeshFaceZoneList :
|
|
1895
|
-
RemeshFaceLabelList :
|
|
1894
|
+
RemeshFaceZoneList : list[str]
|
|
1895
|
+
RemeshFaceLabelList : list[str]
|
|
1896
1896
|
SizingType : str
|
|
1897
1897
|
LocalMinSize : float
|
|
1898
1898
|
LocalMaxSize : float
|
|
1899
1899
|
RemeshGrowthRate : float
|
|
1900
1900
|
RemeshCurvatureNormalAngle : float
|
|
1901
1901
|
RemeshCellsPerGap : float
|
|
1902
|
-
CFDSurfaceMeshControls :
|
|
1903
|
-
RemeshPreferences :
|
|
1902
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1903
|
+
RemeshPreferences : dict[str, Any]
|
|
1904
1904
|
|
|
1905
1905
|
Returns
|
|
1906
1906
|
-------
|
|
@@ -1931,14 +1931,14 @@ class Root(PyMenu):
|
|
|
1931
1931
|
RemoveEmptyParts : bool
|
|
1932
1932
|
FeatureAngle : float
|
|
1933
1933
|
OneZonePer : str
|
|
1934
|
-
Refaceting :
|
|
1934
|
+
Refaceting : dict[str, Any]
|
|
1935
1935
|
IgnoreSolidNames : bool
|
|
1936
1936
|
IgnoreSolidNamesAppend : bool
|
|
1937
|
-
Options :
|
|
1937
|
+
Options : dict[str, Any]
|
|
1938
1938
|
EdgeExtraction : str
|
|
1939
1939
|
Context : int
|
|
1940
1940
|
ObjectSetting : str
|
|
1941
|
-
RefacetOptions :
|
|
1941
|
+
RefacetOptions : dict[str, Any]
|
|
1942
1942
|
|
|
1943
1943
|
Returns
|
|
1944
1944
|
-------
|
|
@@ -1955,8 +1955,8 @@ class Root(PyMenu):
|
|
|
1955
1955
|
PartReplacementName : str
|
|
1956
1956
|
ManagementMethod : str
|
|
1957
1957
|
CreationMethod : str
|
|
1958
|
-
OldObjectSelectionList :
|
|
1959
|
-
NewObjectSelectionList :
|
|
1958
|
+
OldObjectSelectionList : list[str]
|
|
1959
|
+
NewObjectSelectionList : list[str]
|
|
1960
1960
|
AdvancedOptions : bool
|
|
1961
1961
|
ScalingFactor : float
|
|
1962
1962
|
MptMethodType : str
|
|
@@ -2025,15 +2025,15 @@ class Root(PyMenu):
|
|
|
2025
2025
|
Type : str
|
|
2026
2026
|
Method : str
|
|
2027
2027
|
PeriodicityAngle : float
|
|
2028
|
-
LCSOrigin :
|
|
2029
|
-
LCSVector :
|
|
2030
|
-
TransShift :
|
|
2028
|
+
LCSOrigin : dict[str, Any]
|
|
2029
|
+
LCSVector : dict[str, Any]
|
|
2030
|
+
TransShift : dict[str, Any]
|
|
2031
2031
|
SelectionType : str
|
|
2032
|
-
ZoneList :
|
|
2033
|
-
LabelList :
|
|
2034
|
-
TopologyList :
|
|
2032
|
+
ZoneList : list[str]
|
|
2033
|
+
LabelList : list[str]
|
|
2034
|
+
TopologyList : list[str]
|
|
2035
2035
|
RemeshBoundariesOption : str
|
|
2036
|
-
ZoneLocation :
|
|
2036
|
+
ZoneLocation : list[str]
|
|
2037
2037
|
ListAllLabelToggle : bool
|
|
2038
2038
|
AutoMultiplePeriodic : str
|
|
2039
2039
|
MultipleOption : str
|
|
@@ -2058,7 +2058,7 @@ class Root(PyMenu):
|
|
|
2058
2058
|
LastRatioPercentage : float
|
|
2059
2059
|
FirstHeight : float
|
|
2060
2060
|
PrismLayers : int
|
|
2061
|
-
RegionSelectionList :
|
|
2061
|
+
RegionSelectionList : list[str]
|
|
2062
2062
|
|
|
2063
2063
|
Returns
|
|
2064
2064
|
-------
|
|
@@ -2076,10 +2076,10 @@ class Root(PyMenu):
|
|
|
2076
2076
|
GapDistanceConnect : float
|
|
2077
2077
|
STMinSize : float
|
|
2078
2078
|
InterfaceSelect : str
|
|
2079
|
-
EdgeLabels :
|
|
2080
|
-
ShareTopologyPreferences :
|
|
2081
|
-
SMImprovePreferences :
|
|
2082
|
-
SurfaceMeshPreferences :
|
|
2079
|
+
EdgeLabels : list[str]
|
|
2080
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
2081
|
+
SMImprovePreferences : dict[str, Any]
|
|
2082
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
2083
2083
|
|
|
2084
2084
|
Returns
|
|
2085
2085
|
-------
|
|
@@ -2100,7 +2100,7 @@ class Root(PyMenu):
|
|
|
2100
2100
|
InitialSizeControl : bool
|
|
2101
2101
|
TargetSizeControl : bool
|
|
2102
2102
|
SizeControlInterval : float
|
|
2103
|
-
SizeControlParameters :
|
|
2103
|
+
SizeControlParameters : dict[str, Any]
|
|
2104
2104
|
|
|
2105
2105
|
Returns
|
|
2106
2106
|
-------
|
|
@@ -2129,17 +2129,17 @@ class Root(PyMenu):
|
|
|
2129
2129
|
Type : str
|
|
2130
2130
|
Method : str
|
|
2131
2131
|
SelectionType : str
|
|
2132
|
-
TopoBodyList :
|
|
2133
|
-
CellZoneList :
|
|
2134
|
-
LCSOrigin :
|
|
2135
|
-
LCSVector :
|
|
2136
|
-
TransShift :
|
|
2132
|
+
TopoBodyList : list[str]
|
|
2133
|
+
CellZoneList : list[str]
|
|
2134
|
+
LCSOrigin : dict[str, Any]
|
|
2135
|
+
LCSVector : dict[str, Any]
|
|
2136
|
+
TransShift : dict[str, Any]
|
|
2137
2137
|
Angle : float
|
|
2138
2138
|
Copy : str
|
|
2139
2139
|
NumOfCopies : int
|
|
2140
2140
|
Merge : str
|
|
2141
2141
|
Rename : str
|
|
2142
|
-
MergeBoundaries :
|
|
2142
|
+
MergeBoundaries : list[str]
|
|
2143
2143
|
|
|
2144
2144
|
Returns
|
|
2145
2145
|
-------
|
|
@@ -2155,24 +2155,24 @@ class Root(PyMenu):
|
|
|
2155
2155
|
----------
|
|
2156
2156
|
MeshObject : str
|
|
2157
2157
|
SelectionType : str
|
|
2158
|
-
BoundaryLabelList :
|
|
2159
|
-
BoundaryLabelTypeList :
|
|
2160
|
-
BoundaryZoneList :
|
|
2161
|
-
BoundaryZoneTypeList :
|
|
2162
|
-
OldBoundaryLabelList :
|
|
2163
|
-
OldBoundaryLabelTypeList :
|
|
2164
|
-
OldBoundaryZoneList :
|
|
2165
|
-
OldBoundaryZoneTypeList :
|
|
2166
|
-
OldLabelZoneList :
|
|
2158
|
+
BoundaryLabelList : list[str]
|
|
2159
|
+
BoundaryLabelTypeList : list[str]
|
|
2160
|
+
BoundaryZoneList : list[str]
|
|
2161
|
+
BoundaryZoneTypeList : list[str]
|
|
2162
|
+
OldBoundaryLabelList : list[str]
|
|
2163
|
+
OldBoundaryLabelTypeList : list[str]
|
|
2164
|
+
OldBoundaryZoneList : list[str]
|
|
2165
|
+
OldBoundaryZoneTypeList : list[str]
|
|
2166
|
+
OldLabelZoneList : list[str]
|
|
2167
2167
|
ListAllBoundariesToggle : bool
|
|
2168
|
-
ZoneLocation :
|
|
2169
|
-
TopologyList :
|
|
2170
|
-
TopologyTypeList :
|
|
2171
|
-
OldTopologyList :
|
|
2172
|
-
OldTopologyTypeList :
|
|
2173
|
-
BoundaryCurrentList :
|
|
2174
|
-
BoundaryCurrentTypeList :
|
|
2175
|
-
BoundaryAllowedTypeList :
|
|
2168
|
+
ZoneLocation : list[str]
|
|
2169
|
+
TopologyList : list[str]
|
|
2170
|
+
TopologyTypeList : list[str]
|
|
2171
|
+
OldTopologyList : list[str]
|
|
2172
|
+
OldTopologyTypeList : list[str]
|
|
2173
|
+
BoundaryCurrentList : list[str]
|
|
2174
|
+
BoundaryCurrentTypeList : list[str]
|
|
2175
|
+
BoundaryAllowedTypeList : list[str]
|
|
2176
2176
|
|
|
2177
2177
|
Returns
|
|
2178
2178
|
-------
|
|
@@ -2188,27 +2188,27 @@ class Root(PyMenu):
|
|
|
2188
2188
|
----------
|
|
2189
2189
|
MainFluidRegion : str
|
|
2190
2190
|
FilterCategory : str
|
|
2191
|
-
RegionNameList :
|
|
2192
|
-
RegionMeshMethodList :
|
|
2193
|
-
RegionTypeList :
|
|
2194
|
-
RegionVolumeFillList :
|
|
2195
|
-
RegionLeakageSizeList :
|
|
2196
|
-
RegionOversetComponenList :
|
|
2197
|
-
OldRegionNameList :
|
|
2198
|
-
OldRegionMeshMethodList :
|
|
2199
|
-
OldRegionTypeList :
|
|
2200
|
-
OldRegionVolumeFillList :
|
|
2201
|
-
OldRegionLeakageSizeList :
|
|
2202
|
-
OldRegionOversetComponenList :
|
|
2203
|
-
AllRegionNameList :
|
|
2204
|
-
AllRegionMeshMethodList :
|
|
2205
|
-
AllRegionTypeList :
|
|
2206
|
-
AllRegionVolumeFillList :
|
|
2207
|
-
AllRegionLeakageSizeList :
|
|
2208
|
-
AllRegionOversetComponenList :
|
|
2209
|
-
AllRegionLinkedConstructionSurfaceList :
|
|
2210
|
-
AllRegionSourceList :
|
|
2211
|
-
AllRegionFilterCategories :
|
|
2191
|
+
RegionNameList : list[str]
|
|
2192
|
+
RegionMeshMethodList : list[str]
|
|
2193
|
+
RegionTypeList : list[str]
|
|
2194
|
+
RegionVolumeFillList : list[str]
|
|
2195
|
+
RegionLeakageSizeList : list[str]
|
|
2196
|
+
RegionOversetComponenList : list[str]
|
|
2197
|
+
OldRegionNameList : list[str]
|
|
2198
|
+
OldRegionMeshMethodList : list[str]
|
|
2199
|
+
OldRegionTypeList : list[str]
|
|
2200
|
+
OldRegionVolumeFillList : list[str]
|
|
2201
|
+
OldRegionLeakageSizeList : list[str]
|
|
2202
|
+
OldRegionOversetComponenList : list[str]
|
|
2203
|
+
AllRegionNameList : list[str]
|
|
2204
|
+
AllRegionMeshMethodList : list[str]
|
|
2205
|
+
AllRegionTypeList : list[str]
|
|
2206
|
+
AllRegionVolumeFillList : list[str]
|
|
2207
|
+
AllRegionLeakageSizeList : list[str]
|
|
2208
|
+
AllRegionOversetComponenList : list[str]
|
|
2209
|
+
AllRegionLinkedConstructionSurfaceList : list[str]
|
|
2210
|
+
AllRegionSourceList : list[str]
|
|
2211
|
+
AllRegionFilterCategories : list[str]
|
|
2212
2212
|
|
|
2213
2213
|
Returns
|
|
2214
2214
|
-------
|
|
@@ -2223,14 +2223,14 @@ class Root(PyMenu):
|
|
|
2223
2223
|
Parameters
|
|
2224
2224
|
----------
|
|
2225
2225
|
MeshObject : str
|
|
2226
|
-
RegionNameList :
|
|
2227
|
-
RegionTypeList :
|
|
2228
|
-
OldRegionNameList :
|
|
2229
|
-
OldRegionTypeList :
|
|
2230
|
-
RegionInternals :
|
|
2231
|
-
RegionInternalTypes :
|
|
2232
|
-
RegionCurrentList :
|
|
2233
|
-
RegionCurrentTypeList :
|
|
2226
|
+
RegionNameList : list[str]
|
|
2227
|
+
RegionTypeList : list[str]
|
|
2228
|
+
OldRegionNameList : list[str]
|
|
2229
|
+
OldRegionTypeList : list[str]
|
|
2230
|
+
RegionInternals : list[str]
|
|
2231
|
+
RegionInternalTypes : list[str]
|
|
2232
|
+
RegionCurrentList : list[str]
|
|
2233
|
+
RegionCurrentTypeList : list[str]
|
|
2234
2234
|
NumberOfListedRegions : int
|
|
2235
2235
|
|
|
2236
2236
|
Returns
|