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
|
@@ -334,7 +334,7 @@ class Root(PyMenu):
|
|
|
334
334
|
|
|
335
335
|
Parameters
|
|
336
336
|
----------
|
|
337
|
-
FileName :
|
|
337
|
+
FileName : list[str]
|
|
338
338
|
ChangeDirectory : bool
|
|
339
339
|
|
|
340
340
|
Returns
|
|
@@ -452,85 +452,85 @@ class Root(PyMenu):
|
|
|
452
452
|
|
|
453
453
|
class AllOversetNameList(PyTextual):
|
|
454
454
|
"""
|
|
455
|
-
Parameter AllOversetNameList of value type
|
|
455
|
+
Parameter AllOversetNameList of value type list[str].
|
|
456
456
|
"""
|
|
457
457
|
pass
|
|
458
458
|
|
|
459
459
|
class AllOversetSizeList(PyTextual):
|
|
460
460
|
"""
|
|
461
|
-
Parameter AllOversetSizeList of value type
|
|
461
|
+
Parameter AllOversetSizeList of value type list[str].
|
|
462
462
|
"""
|
|
463
463
|
pass
|
|
464
464
|
|
|
465
465
|
class AllOversetTypeList(PyTextual):
|
|
466
466
|
"""
|
|
467
|
-
Parameter AllOversetTypeList of value type
|
|
467
|
+
Parameter AllOversetTypeList of value type list[str].
|
|
468
468
|
"""
|
|
469
469
|
pass
|
|
470
470
|
|
|
471
471
|
class AllOversetVolumeFillList(PyTextual):
|
|
472
472
|
"""
|
|
473
|
-
Parameter AllOversetVolumeFillList of value type
|
|
473
|
+
Parameter AllOversetVolumeFillList of value type list[str].
|
|
474
474
|
"""
|
|
475
475
|
pass
|
|
476
476
|
|
|
477
477
|
class AllRegionFilterCategories(PyTextual):
|
|
478
478
|
"""
|
|
479
|
-
Parameter AllRegionFilterCategories of value type
|
|
479
|
+
Parameter AllRegionFilterCategories of value type list[str].
|
|
480
480
|
"""
|
|
481
481
|
pass
|
|
482
482
|
|
|
483
483
|
class AllRegionLeakageSizeList(PyTextual):
|
|
484
484
|
"""
|
|
485
|
-
Parameter AllRegionLeakageSizeList of value type
|
|
485
|
+
Parameter AllRegionLeakageSizeList of value type list[str].
|
|
486
486
|
"""
|
|
487
487
|
pass
|
|
488
488
|
|
|
489
489
|
class AllRegionLinkedConstructionSurfaceList(PyTextual):
|
|
490
490
|
"""
|
|
491
|
-
Parameter AllRegionLinkedConstructionSurfaceList of value type
|
|
491
|
+
Parameter AllRegionLinkedConstructionSurfaceList of value type list[str].
|
|
492
492
|
"""
|
|
493
493
|
pass
|
|
494
494
|
|
|
495
495
|
class AllRegionMeshMethodList(PyTextual):
|
|
496
496
|
"""
|
|
497
|
-
Parameter AllRegionMeshMethodList of value type
|
|
497
|
+
Parameter AllRegionMeshMethodList of value type list[str].
|
|
498
498
|
"""
|
|
499
499
|
pass
|
|
500
500
|
|
|
501
501
|
class AllRegionNameList(PyTextual):
|
|
502
502
|
"""
|
|
503
|
-
Parameter AllRegionNameList of value type
|
|
503
|
+
Parameter AllRegionNameList of value type list[str].
|
|
504
504
|
"""
|
|
505
505
|
pass
|
|
506
506
|
|
|
507
507
|
class AllRegionOversetComponenList(PyTextual):
|
|
508
508
|
"""
|
|
509
|
-
Parameter AllRegionOversetComponenList of value type
|
|
509
|
+
Parameter AllRegionOversetComponenList of value type list[str].
|
|
510
510
|
"""
|
|
511
511
|
pass
|
|
512
512
|
|
|
513
513
|
class AllRegionSizeList(PyTextual):
|
|
514
514
|
"""
|
|
515
|
-
Parameter AllRegionSizeList of value type
|
|
515
|
+
Parameter AllRegionSizeList of value type list[str].
|
|
516
516
|
"""
|
|
517
517
|
pass
|
|
518
518
|
|
|
519
519
|
class AllRegionSourceList(PyTextual):
|
|
520
520
|
"""
|
|
521
|
-
Parameter AllRegionSourceList of value type
|
|
521
|
+
Parameter AllRegionSourceList of value type list[str].
|
|
522
522
|
"""
|
|
523
523
|
pass
|
|
524
524
|
|
|
525
525
|
class AllRegionTypeList(PyTextual):
|
|
526
526
|
"""
|
|
527
|
-
Parameter AllRegionTypeList of value type
|
|
527
|
+
Parameter AllRegionTypeList of value type list[str].
|
|
528
528
|
"""
|
|
529
529
|
pass
|
|
530
530
|
|
|
531
531
|
class AllRegionVolumeFillList(PyTextual):
|
|
532
532
|
"""
|
|
533
|
-
Parameter AllRegionVolumeFillList of value type
|
|
533
|
+
Parameter AllRegionVolumeFillList of value type list[str].
|
|
534
534
|
"""
|
|
535
535
|
pass
|
|
536
536
|
|
|
@@ -687,8 +687,8 @@ class Root(PyMenu):
|
|
|
687
687
|
DrawCellLayer : bool
|
|
688
688
|
FreezeCellLayer : bool
|
|
689
689
|
FlipClippingPlane : bool
|
|
690
|
-
PointCoordinates :
|
|
691
|
-
PlaneNormal :
|
|
690
|
+
PointCoordinates : list[float]
|
|
691
|
+
PlaneNormal : list[float]
|
|
692
692
|
SliderPosition : int
|
|
693
693
|
CutDirection : str
|
|
694
694
|
|
|
@@ -737,11 +737,11 @@ class Root(PyMenu):
|
|
|
737
737
|
FirstLayerHeight : float
|
|
738
738
|
MaxLayerHeight : float
|
|
739
739
|
Addin : str
|
|
740
|
-
FaceLabelList :
|
|
740
|
+
FaceLabelList : list[str]
|
|
741
741
|
GrowOn : str
|
|
742
|
-
EdgeLabelList :
|
|
743
|
-
EdgeZoneList :
|
|
744
|
-
ShellBLAdvancedOptions :
|
|
742
|
+
EdgeLabelList : list[str]
|
|
743
|
+
EdgeZoneList : list[str]
|
|
744
|
+
ShellBLAdvancedOptions : dict[str, Any]
|
|
745
745
|
|
|
746
746
|
Returns
|
|
747
747
|
-------
|
|
@@ -765,21 +765,21 @@ class Root(PyMenu):
|
|
|
765
765
|
Rate : float
|
|
766
766
|
FirstHeight : float
|
|
767
767
|
MaxLayerHeight : float
|
|
768
|
-
FaceScope :
|
|
769
|
-
RegionScope :
|
|
770
|
-
BlLabelList :
|
|
771
|
-
ZoneSelectionList :
|
|
772
|
-
ZoneLocation :
|
|
773
|
-
LocalPrismPreferences :
|
|
774
|
-
BLZoneList :
|
|
775
|
-
BLRegionList :
|
|
768
|
+
FaceScope : dict[str, Any]
|
|
769
|
+
RegionScope : list[str]
|
|
770
|
+
BlLabelList : list[str]
|
|
771
|
+
ZoneSelectionList : list[str]
|
|
772
|
+
ZoneLocation : list[str]
|
|
773
|
+
LocalPrismPreferences : dict[str, Any]
|
|
774
|
+
BLZoneList : list[str]
|
|
775
|
+
BLRegionList : list[str]
|
|
776
776
|
InvalidAdded : str
|
|
777
|
-
CompleteRegionScope :
|
|
778
|
-
CompleteBlLabelList :
|
|
779
|
-
CompleteBLZoneList :
|
|
780
|
-
CompleteBLRegionList :
|
|
781
|
-
CompleteZoneSelectionList :
|
|
782
|
-
CompleteLabelSelectionList :
|
|
777
|
+
CompleteRegionScope : list[str]
|
|
778
|
+
CompleteBlLabelList : list[str]
|
|
779
|
+
CompleteBLZoneList : list[str]
|
|
780
|
+
CompleteBLRegionList : list[str]
|
|
781
|
+
CompleteZoneSelectionList : list[str]
|
|
782
|
+
CompleteLabelSelectionList : list[str]
|
|
783
783
|
|
|
784
784
|
Returns
|
|
785
785
|
-------
|
|
@@ -803,20 +803,20 @@ class Root(PyMenu):
|
|
|
803
803
|
Rate : float
|
|
804
804
|
FirstHeight : float
|
|
805
805
|
MaxLayerHeight : float
|
|
806
|
-
FaceScope :
|
|
807
|
-
RegionScope :
|
|
808
|
-
BlLabelList :
|
|
809
|
-
ZoneSelectionList :
|
|
810
|
-
ZoneLocation :
|
|
811
|
-
LocalPrismPreferences :
|
|
812
|
-
BLZoneList :
|
|
813
|
-
BLRegionList :
|
|
814
|
-
CompleteRegionScope :
|
|
815
|
-
CompleteBlLabelList :
|
|
816
|
-
CompleteBLZoneList :
|
|
817
|
-
CompleteBLRegionList :
|
|
818
|
-
CompleteZoneSelectionList :
|
|
819
|
-
CompleteLabelSelectionList :
|
|
806
|
+
FaceScope : dict[str, Any]
|
|
807
|
+
RegionScope : list[str]
|
|
808
|
+
BlLabelList : list[str]
|
|
809
|
+
ZoneSelectionList : list[str]
|
|
810
|
+
ZoneLocation : list[str]
|
|
811
|
+
LocalPrismPreferences : dict[str, Any]
|
|
812
|
+
BLZoneList : list[str]
|
|
813
|
+
BLRegionList : list[str]
|
|
814
|
+
CompleteRegionScope : list[str]
|
|
815
|
+
CompleteBlLabelList : list[str]
|
|
816
|
+
CompleteBLZoneList : list[str]
|
|
817
|
+
CompleteBLRegionList : list[str]
|
|
818
|
+
CompleteZoneSelectionList : list[str]
|
|
819
|
+
CompleteLabelSelectionList : list[str]
|
|
820
820
|
|
|
821
821
|
Returns
|
|
822
822
|
-------
|
|
@@ -834,10 +834,10 @@ class Root(PyMenu):
|
|
|
834
834
|
NewBoundaryLabelName : str
|
|
835
835
|
NewBoundaryType : str
|
|
836
836
|
SelectionType : str
|
|
837
|
-
BoundaryFaceZoneList :
|
|
838
|
-
TopologyList :
|
|
837
|
+
BoundaryFaceZoneList : list[str]
|
|
838
|
+
TopologyList : list[str]
|
|
839
839
|
Merge : str
|
|
840
|
-
ZoneLocation :
|
|
840
|
+
ZoneLocation : list[str]
|
|
841
841
|
|
|
842
842
|
Returns
|
|
843
843
|
-------
|
|
@@ -853,17 +853,17 @@ class Root(PyMenu):
|
|
|
853
853
|
----------
|
|
854
854
|
LocalSettingsName : str
|
|
855
855
|
SelectionType : str
|
|
856
|
-
ObjectSelectionList :
|
|
857
|
-
LabelSelectionList :
|
|
858
|
-
ZoneSelectionList :
|
|
859
|
-
ZoneLocation :
|
|
860
|
-
EdgeSelectionList :
|
|
861
|
-
LocalSizeControlParameters :
|
|
856
|
+
ObjectSelectionList : list[str]
|
|
857
|
+
LabelSelectionList : list[str]
|
|
858
|
+
ZoneSelectionList : list[str]
|
|
859
|
+
ZoneLocation : list[str]
|
|
860
|
+
EdgeSelectionList : list[str]
|
|
861
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
862
862
|
ValueChanged : str
|
|
863
|
-
CompleteZoneSelectionList :
|
|
864
|
-
CompleteLabelSelectionList :
|
|
865
|
-
CompleteObjectSelectionList :
|
|
866
|
-
CompleteEdgeSelectionList :
|
|
863
|
+
CompleteZoneSelectionList : list[str]
|
|
864
|
+
CompleteLabelSelectionList : list[str]
|
|
865
|
+
CompleteObjectSelectionList : list[str]
|
|
866
|
+
CompleteEdgeSelectionList : list[str]
|
|
867
867
|
|
|
868
868
|
Returns
|
|
869
869
|
-------
|
|
@@ -895,20 +895,20 @@ class Root(PyMenu):
|
|
|
895
895
|
BOIScopeTo : str
|
|
896
896
|
IgnoreOrientation : str
|
|
897
897
|
BOIZoneorLabel : str
|
|
898
|
-
BOIFaceLabelList :
|
|
899
|
-
BOIFaceZoneList :
|
|
900
|
-
EdgeLabelList :
|
|
901
|
-
EdgeZoneList :
|
|
902
|
-
TopologyList :
|
|
898
|
+
BOIFaceLabelList : list[str]
|
|
899
|
+
BOIFaceZoneList : list[str]
|
|
900
|
+
EdgeLabelList : list[str]
|
|
901
|
+
EdgeZoneList : list[str]
|
|
902
|
+
TopologyList : list[str]
|
|
903
903
|
ReverseEdgeZoneOrientation : bool
|
|
904
|
-
ReverseEdgeZoneList :
|
|
904
|
+
ReverseEdgeZoneList : list[str]
|
|
905
905
|
BOIPatchingtoggle : bool
|
|
906
906
|
DrawSizeControl : bool
|
|
907
|
-
ZoneLocation :
|
|
908
|
-
CompleteFaceZoneList :
|
|
909
|
-
CompleteFaceLabelList :
|
|
910
|
-
CompleteEdgeLabelList :
|
|
911
|
-
CompleteTopologyList :
|
|
907
|
+
ZoneLocation : list[str]
|
|
908
|
+
CompleteFaceZoneList : list[str]
|
|
909
|
+
CompleteFaceLabelList : list[str]
|
|
910
|
+
CompleteEdgeLabelList : list[str]
|
|
911
|
+
CompleteTopologyList : list[str]
|
|
912
912
|
PrimeSizeControlId : int
|
|
913
913
|
|
|
914
914
|
Returns
|
|
@@ -929,14 +929,14 @@ class Root(PyMenu):
|
|
|
929
929
|
FillWith : str
|
|
930
930
|
UseSweepSize : str
|
|
931
931
|
MaxSweepSize : float
|
|
932
|
-
RegionScope :
|
|
933
|
-
TopologyList :
|
|
932
|
+
RegionScope : list[str]
|
|
933
|
+
TopologyList : list[str]
|
|
934
934
|
SourceMethod : str
|
|
935
935
|
ParallelSelection : bool
|
|
936
936
|
ShowEdgeBiasing : str
|
|
937
|
-
LabelSourceList :
|
|
938
|
-
ZoneSourceList :
|
|
939
|
-
ZoneLocation :
|
|
937
|
+
LabelSourceList : list[str]
|
|
938
|
+
ZoneSourceList : list[str]
|
|
939
|
+
ZoneLocation : list[str]
|
|
940
940
|
AssignSizeUsing : str
|
|
941
941
|
Intervals : int
|
|
942
942
|
Size : float
|
|
@@ -945,11 +945,11 @@ class Root(PyMenu):
|
|
|
945
945
|
GrowthMethod : str
|
|
946
946
|
GrowthRate : float
|
|
947
947
|
BiasFactor : float
|
|
948
|
-
EdgeLabelSelection :
|
|
949
|
-
EdgeLabelList :
|
|
950
|
-
CFDSurfaceMeshControls :
|
|
951
|
-
CompleteRegionScope :
|
|
952
|
-
CompleteEdgeScope :
|
|
948
|
+
EdgeLabelSelection : list[str]
|
|
949
|
+
EdgeLabelList : list[str]
|
|
950
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
951
|
+
CompleteRegionScope : list[str]
|
|
952
|
+
CompleteEdgeScope : list[str]
|
|
953
953
|
|
|
954
954
|
Returns
|
|
955
955
|
-------
|
|
@@ -973,12 +973,12 @@ class Root(PyMenu):
|
|
|
973
973
|
FirstLayerHeight : float
|
|
974
974
|
MaxLayerHeight : float
|
|
975
975
|
GrowOn : str
|
|
976
|
-
FaceLabelList :
|
|
977
|
-
FaceZoneList :
|
|
976
|
+
FaceLabelList : list[str]
|
|
977
|
+
FaceZoneList : list[str]
|
|
978
978
|
EdgeSelectionType : str
|
|
979
|
-
EdgeLabelList :
|
|
980
|
-
EdgeZoneList :
|
|
981
|
-
ShellBLAdvancedOptions :
|
|
979
|
+
EdgeLabelList : list[str]
|
|
980
|
+
EdgeZoneList : list[str]
|
|
981
|
+
ShellBLAdvancedOptions : dict[str, Any]
|
|
982
982
|
|
|
983
983
|
Returns
|
|
984
984
|
-------
|
|
@@ -994,10 +994,10 @@ class Root(PyMenu):
|
|
|
994
994
|
----------
|
|
995
995
|
ZeroThicknessName : str
|
|
996
996
|
SelectionType : str
|
|
997
|
-
ZoneSelectionList :
|
|
998
|
-
ZoneLocation :
|
|
999
|
-
ObjectSelectionList :
|
|
1000
|
-
LabelSelectionList :
|
|
997
|
+
ZoneSelectionList : list[str]
|
|
998
|
+
ZoneLocation : list[str]
|
|
999
|
+
ObjectSelectionList : list[str]
|
|
1000
|
+
LabelSelectionList : list[str]
|
|
1001
1001
|
Distance : float
|
|
1002
1002
|
|
|
1003
1003
|
Returns
|
|
@@ -1022,24 +1022,24 @@ class Root(PyMenu):
|
|
|
1022
1022
|
SideImprints : bool
|
|
1023
1023
|
StackedPlates : bool
|
|
1024
1024
|
AutoControlCreation : bool
|
|
1025
|
-
RegionScope :
|
|
1025
|
+
RegionScope : list[str]
|
|
1026
1026
|
SelectSourceBy : str
|
|
1027
1027
|
ParallelSource : bool
|
|
1028
|
-
LabelSourceList :
|
|
1029
|
-
ZoneSourceList :
|
|
1028
|
+
LabelSourceList : list[str]
|
|
1029
|
+
ZoneSourceList : list[str]
|
|
1030
1030
|
SelectTargetBy : str
|
|
1031
1031
|
ParallelTarget : bool
|
|
1032
|
-
LabelTargetList :
|
|
1033
|
-
ZoneTargetList :
|
|
1034
|
-
ThinVolRegs :
|
|
1035
|
-
CompleteRegionScope :
|
|
1036
|
-
CompleteLabelSourceList :
|
|
1037
|
-
CompleteZoneSourceList :
|
|
1038
|
-
CompleteLabelTargetList :
|
|
1039
|
-
CompleteZoneTargetList :
|
|
1040
|
-
ThinVolumePreferences :
|
|
1041
|
-
ZoneLocation :
|
|
1042
|
-
ZoneLocation2 :
|
|
1032
|
+
LabelTargetList : list[str]
|
|
1033
|
+
ZoneTargetList : list[str]
|
|
1034
|
+
ThinVolRegs : list[str]
|
|
1035
|
+
CompleteRegionScope : list[str]
|
|
1036
|
+
CompleteLabelSourceList : list[str]
|
|
1037
|
+
CompleteZoneSourceList : list[str]
|
|
1038
|
+
CompleteLabelTargetList : list[str]
|
|
1039
|
+
CompleteZoneTargetList : list[str]
|
|
1040
|
+
ThinVolumePreferences : dict[str, Any]
|
|
1041
|
+
ZoneLocation : list[str]
|
|
1042
|
+
ZoneLocation2 : list[str]
|
|
1043
1043
|
|
|
1044
1044
|
Returns
|
|
1045
1045
|
-------
|
|
@@ -1056,9 +1056,9 @@ class Root(PyMenu):
|
|
|
1056
1056
|
AddChild : str
|
|
1057
1057
|
ControlName : str
|
|
1058
1058
|
SelectionType : str
|
|
1059
|
-
FaceLabelList :
|
|
1060
|
-
FaceZoneList :
|
|
1061
|
-
NewFaces :
|
|
1059
|
+
FaceLabelList : list[str]
|
|
1060
|
+
FaceZoneList : list[str]
|
|
1061
|
+
NewFaces : list[int]
|
|
1062
1062
|
|
|
1063
1063
|
Returns
|
|
1064
1064
|
-------
|
|
@@ -1076,18 +1076,18 @@ class Root(PyMenu):
|
|
|
1076
1076
|
ZoneType : str
|
|
1077
1077
|
PatchType : str
|
|
1078
1078
|
SelectionType : str
|
|
1079
|
-
LabelSelectionList :
|
|
1080
|
-
ZoneSelectionList :
|
|
1081
|
-
TopologyList :
|
|
1082
|
-
CreatePatchPreferences :
|
|
1079
|
+
LabelSelectionList : list[str]
|
|
1080
|
+
ZoneSelectionList : list[str]
|
|
1081
|
+
TopologyList : list[str]
|
|
1082
|
+
CreatePatchPreferences : dict[str, Any]
|
|
1083
1083
|
ObjectAssociation : str
|
|
1084
1084
|
NewObjectName : str
|
|
1085
1085
|
PatchObjectName : str
|
|
1086
|
-
CapLabels :
|
|
1087
|
-
ZoneLocation :
|
|
1088
|
-
CompleteZoneSelectionList :
|
|
1089
|
-
CompleteLabelSelectionList :
|
|
1090
|
-
CompleteTopologyList :
|
|
1086
|
+
CapLabels : list[str]
|
|
1087
|
+
ZoneLocation : list[str]
|
|
1088
|
+
CompleteZoneSelectionList : list[str]
|
|
1089
|
+
CompleteLabelSelectionList : list[str]
|
|
1090
|
+
CompleteTopologyList : list[str]
|
|
1091
1091
|
|
|
1092
1092
|
Returns
|
|
1093
1093
|
-------
|
|
@@ -1142,7 +1142,7 @@ class Root(PyMenu):
|
|
|
1142
1142
|
GlobalMin : float
|
|
1143
1143
|
GlobalMax : float
|
|
1144
1144
|
GlobalGrowthRate : float
|
|
1145
|
-
MeshControlOptions :
|
|
1145
|
+
MeshControlOptions : dict[str, Any]
|
|
1146
1146
|
|
|
1147
1147
|
Returns
|
|
1148
1148
|
-------
|
|
@@ -1221,17 +1221,17 @@ class Root(PyMenu):
|
|
|
1221
1221
|
BOIMaxSize : float
|
|
1222
1222
|
BOISizeName : str
|
|
1223
1223
|
SelectionType : str
|
|
1224
|
-
ZoneSelectionList :
|
|
1225
|
-
ZoneLocation :
|
|
1226
|
-
LabelSelectionList :
|
|
1227
|
-
ObjectSelectionList :
|
|
1228
|
-
ZoneSelectionSingle :
|
|
1229
|
-
ObjectSelectionSingle :
|
|
1230
|
-
TopologyList :
|
|
1231
|
-
BoundingBoxObject :
|
|
1232
|
-
OffsetObject :
|
|
1233
|
-
CylinderObject :
|
|
1234
|
-
Axis :
|
|
1224
|
+
ZoneSelectionList : list[str]
|
|
1225
|
+
ZoneLocation : list[str]
|
|
1226
|
+
LabelSelectionList : list[str]
|
|
1227
|
+
ObjectSelectionList : list[str]
|
|
1228
|
+
ZoneSelectionSingle : list[str]
|
|
1229
|
+
ObjectSelectionSingle : list[str]
|
|
1230
|
+
TopologyList : list[str]
|
|
1231
|
+
BoundingBoxObject : dict[str, Any]
|
|
1232
|
+
OffsetObject : dict[str, Any]
|
|
1233
|
+
CylinderObject : dict[str, Any]
|
|
1234
|
+
Axis : dict[str, Any]
|
|
1235
1235
|
VolumeFill : str
|
|
1236
1236
|
CylinderMethod : str
|
|
1237
1237
|
CylinderLength : float
|
|
@@ -1253,17 +1253,17 @@ class Root(PyMenu):
|
|
|
1253
1253
|
BOIMaxSize : float
|
|
1254
1254
|
BOISizeName : str
|
|
1255
1255
|
SelectionType : str
|
|
1256
|
-
ZoneSelectionList :
|
|
1257
|
-
ZoneLocation :
|
|
1258
|
-
LabelSelectionList :
|
|
1259
|
-
ObjectSelectionList :
|
|
1260
|
-
ZoneSelectionSingle :
|
|
1261
|
-
ObjectSelectionSingle :
|
|
1262
|
-
TopologyList :
|
|
1263
|
-
BoundingBoxObject :
|
|
1264
|
-
OffsetObject :
|
|
1265
|
-
CylinderObject :
|
|
1266
|
-
Axis :
|
|
1256
|
+
ZoneSelectionList : list[str]
|
|
1257
|
+
ZoneLocation : list[str]
|
|
1258
|
+
LabelSelectionList : list[str]
|
|
1259
|
+
ObjectSelectionList : list[str]
|
|
1260
|
+
ZoneSelectionSingle : list[str]
|
|
1261
|
+
ObjectSelectionSingle : list[str]
|
|
1262
|
+
TopologyList : list[str]
|
|
1263
|
+
BoundingBoxObject : dict[str, Any]
|
|
1264
|
+
OffsetObject : dict[str, Any]
|
|
1265
|
+
CylinderObject : dict[str, Any]
|
|
1266
|
+
Axis : dict[str, Any]
|
|
1267
1267
|
VolumeFill : str
|
|
1268
1268
|
CylinderMethod : str
|
|
1269
1269
|
CylinderLength : float
|
|
@@ -1285,17 +1285,17 @@ class Root(PyMenu):
|
|
|
1285
1285
|
BOIMaxSize : float
|
|
1286
1286
|
BOISizeName : str
|
|
1287
1287
|
SelectionType : str
|
|
1288
|
-
ZoneSelectionList :
|
|
1289
|
-
ZoneLocation :
|
|
1290
|
-
LabelSelectionList :
|
|
1291
|
-
ObjectSelectionList :
|
|
1292
|
-
ZoneSelectionSingle :
|
|
1293
|
-
ObjectSelectionSingle :
|
|
1294
|
-
TopologyList :
|
|
1295
|
-
BoundingBoxObject :
|
|
1296
|
-
OffsetObject :
|
|
1297
|
-
CylinderObject :
|
|
1298
|
-
Axis :
|
|
1288
|
+
ZoneSelectionList : list[str]
|
|
1289
|
+
ZoneLocation : list[str]
|
|
1290
|
+
LabelSelectionList : list[str]
|
|
1291
|
+
ObjectSelectionList : list[str]
|
|
1292
|
+
ZoneSelectionSingle : list[str]
|
|
1293
|
+
ObjectSelectionSingle : list[str]
|
|
1294
|
+
TopologyList : list[str]
|
|
1295
|
+
BoundingBoxObject : dict[str, Any]
|
|
1296
|
+
OffsetObject : dict[str, Any]
|
|
1297
|
+
CylinderObject : dict[str, Any]
|
|
1298
|
+
Axis : dict[str, Any]
|
|
1299
1299
|
VolumeFill : str
|
|
1300
1300
|
CylinderMethod : str
|
|
1301
1301
|
CylinderLength : float
|
|
@@ -1314,11 +1314,11 @@ class Root(PyMenu):
|
|
|
1314
1314
|
----------
|
|
1315
1315
|
ContactPatchName : str
|
|
1316
1316
|
SelectionType : str
|
|
1317
|
-
ZoneSelectionList :
|
|
1318
|
-
ZoneLocation :
|
|
1319
|
-
ObjectSelectionList :
|
|
1320
|
-
LabelSelectionList :
|
|
1321
|
-
GroundZoneSelectionList :
|
|
1317
|
+
ZoneSelectionList : list[str]
|
|
1318
|
+
ZoneLocation : list[str]
|
|
1319
|
+
ObjectSelectionList : list[str]
|
|
1320
|
+
LabelSelectionList : list[str]
|
|
1321
|
+
GroundZoneSelectionList : list[str]
|
|
1322
1322
|
Distance : float
|
|
1323
1323
|
ContactPatchDefeaturingSize : float
|
|
1324
1324
|
FeatureAngle : float
|
|
@@ -1341,15 +1341,15 @@ class Root(PyMenu):
|
|
|
1341
1341
|
CreationMethod : str
|
|
1342
1342
|
ExtractionMethod : str
|
|
1343
1343
|
SelectionType : str
|
|
1344
|
-
ObjectSelectionList :
|
|
1345
|
-
ZoneSelectionList :
|
|
1346
|
-
ZoneLocation :
|
|
1347
|
-
LabelSelectionList :
|
|
1348
|
-
ObjectSelectionSingle :
|
|
1349
|
-
ZoneSelectionSingle :
|
|
1350
|
-
LabelSelectionSingle :
|
|
1344
|
+
ObjectSelectionList : list[str]
|
|
1345
|
+
ZoneSelectionList : list[str]
|
|
1346
|
+
ZoneLocation : list[str]
|
|
1347
|
+
LabelSelectionList : list[str]
|
|
1348
|
+
ObjectSelectionSingle : list[str]
|
|
1349
|
+
ZoneSelectionSingle : list[str]
|
|
1350
|
+
LabelSelectionSingle : list[str]
|
|
1351
1351
|
OriginalObjectName : str
|
|
1352
|
-
BoundingBoxObject :
|
|
1352
|
+
BoundingBoxObject : dict[str, Any]
|
|
1353
1353
|
|
|
1354
1354
|
Returns
|
|
1355
1355
|
-------
|
|
@@ -1368,10 +1368,10 @@ class Root(PyMenu):
|
|
|
1368
1368
|
GapSizeRatio : float
|
|
1369
1369
|
GapSize : float
|
|
1370
1370
|
SelectionType : str
|
|
1371
|
-
ZoneSelectionList :
|
|
1372
|
-
ZoneLocation :
|
|
1373
|
-
LabelSelectionList :
|
|
1374
|
-
ObjectSelectionList :
|
|
1371
|
+
ZoneSelectionList : list[str]
|
|
1372
|
+
ZoneLocation : list[str]
|
|
1373
|
+
LabelSelectionList : list[str]
|
|
1374
|
+
ObjectSelectionList : list[str]
|
|
1375
1375
|
GapCoverBetweenZones : str
|
|
1376
1376
|
GapCoverRefineFactor : float
|
|
1377
1377
|
GapCoverRefineFactorAtGap : float
|
|
@@ -1397,17 +1397,17 @@ class Root(PyMenu):
|
|
|
1397
1397
|
BOIMaxSize : float
|
|
1398
1398
|
BOISizeName : str
|
|
1399
1399
|
SelectionType : str
|
|
1400
|
-
ZoneSelectionList :
|
|
1401
|
-
ZoneLocation :
|
|
1402
|
-
LabelSelectionList :
|
|
1403
|
-
ObjectSelectionList :
|
|
1404
|
-
ZoneSelectionSingle :
|
|
1405
|
-
ObjectSelectionSingle :
|
|
1406
|
-
TopologyList :
|
|
1407
|
-
BoundingBoxObject :
|
|
1408
|
-
OffsetObject :
|
|
1409
|
-
CylinderObject :
|
|
1410
|
-
Axis :
|
|
1400
|
+
ZoneSelectionList : list[str]
|
|
1401
|
+
ZoneLocation : list[str]
|
|
1402
|
+
LabelSelectionList : list[str]
|
|
1403
|
+
ObjectSelectionList : list[str]
|
|
1404
|
+
ZoneSelectionSingle : list[str]
|
|
1405
|
+
ObjectSelectionSingle : list[str]
|
|
1406
|
+
TopologyList : list[str]
|
|
1407
|
+
BoundingBoxObject : dict[str, Any]
|
|
1408
|
+
OffsetObject : dict[str, Any]
|
|
1409
|
+
CylinderObject : dict[str, Any]
|
|
1410
|
+
Axis : dict[str, Any]
|
|
1411
1411
|
VolumeFill : str
|
|
1412
1412
|
CylinderMethod : str
|
|
1413
1413
|
CylinderLength : float
|
|
@@ -1440,7 +1440,7 @@ class Root(PyMenu):
|
|
|
1440
1440
|
Parameters
|
|
1441
1441
|
----------
|
|
1442
1442
|
OversetInterfacesName : str
|
|
1443
|
-
ObjectSelectionList :
|
|
1443
|
+
ObjectSelectionList : list[str]
|
|
1444
1444
|
|
|
1445
1445
|
Returns
|
|
1446
1446
|
-------
|
|
@@ -1463,11 +1463,11 @@ class Root(PyMenu):
|
|
|
1463
1463
|
CellSizeP1P3 : float
|
|
1464
1464
|
CellSizeP1P4 : float
|
|
1465
1465
|
BufferSizeRatio : float
|
|
1466
|
-
P1 :
|
|
1467
|
-
P2 :
|
|
1468
|
-
P3 :
|
|
1469
|
-
P4 :
|
|
1470
|
-
NonRectangularParameters :
|
|
1466
|
+
P1 : list[float]
|
|
1467
|
+
P2 : list[float]
|
|
1468
|
+
P3 : list[float]
|
|
1469
|
+
P4 : list[float]
|
|
1470
|
+
NonRectangularParameters : dict[str, Any]
|
|
1471
1471
|
|
|
1472
1472
|
Returns
|
|
1473
1473
|
-------
|
|
@@ -1505,7 +1505,7 @@ class Root(PyMenu):
|
|
|
1505
1505
|
CellsPerGap : float
|
|
1506
1506
|
ScopeProximityTo : str
|
|
1507
1507
|
Mesher : str
|
|
1508
|
-
PrimeSizeControlIds :
|
|
1508
|
+
PrimeSizeControlIds : list[int]
|
|
1509
1509
|
EnableMultiThreading : bool
|
|
1510
1510
|
NumberOfMultiThreads : int
|
|
1511
1511
|
|
|
@@ -1524,8 +1524,8 @@ class Root(PyMenu):
|
|
|
1524
1524
|
AddChild : str
|
|
1525
1525
|
LeakageName : str
|
|
1526
1526
|
SelectionType : str
|
|
1527
|
-
DeadRegionsList :
|
|
1528
|
-
RegionSelectionSingle :
|
|
1527
|
+
DeadRegionsList : list[str]
|
|
1528
|
+
RegionSelectionSingle : list[str]
|
|
1529
1529
|
DeadRegionsSize : float
|
|
1530
1530
|
PlaneClippingValue : int
|
|
1531
1531
|
PlaneDirection : str
|
|
@@ -1548,8 +1548,8 @@ class Root(PyMenu):
|
|
|
1548
1548
|
AddEnclosure : str
|
|
1549
1549
|
CloseCaps : str
|
|
1550
1550
|
LocalRefinementRegions : str
|
|
1551
|
-
DescribeGeometryAndFlowOptions :
|
|
1552
|
-
AllTaskList :
|
|
1551
|
+
DescribeGeometryAndFlowOptions : dict[str, Any]
|
|
1552
|
+
AllTaskList : list[str]
|
|
1553
1553
|
|
|
1554
1554
|
Returns
|
|
1555
1555
|
-------
|
|
@@ -1584,17 +1584,17 @@ class Root(PyMenu):
|
|
|
1584
1584
|
ExtractEdgesName : str
|
|
1585
1585
|
ExtractMethodType : str
|
|
1586
1586
|
SelectionType : str
|
|
1587
|
-
ObjectSelectionList :
|
|
1588
|
-
GeomObjectSelectionList :
|
|
1589
|
-
ZoneSelectionList :
|
|
1590
|
-
ZoneLocation :
|
|
1591
|
-
LabelSelectionList :
|
|
1587
|
+
ObjectSelectionList : list[str]
|
|
1588
|
+
GeomObjectSelectionList : list[str]
|
|
1589
|
+
ZoneSelectionList : list[str]
|
|
1590
|
+
ZoneLocation : list[str]
|
|
1591
|
+
LabelSelectionList : list[str]
|
|
1592
1592
|
FeatureAngleLocal : int
|
|
1593
1593
|
IndividualCollective : str
|
|
1594
1594
|
SharpAngle : int
|
|
1595
|
-
CompleteObjectSelectionList :
|
|
1596
|
-
CompleteGeomObjectSelectionList :
|
|
1597
|
-
NonExtractedObjects :
|
|
1595
|
+
CompleteObjectSelectionList : list[str]
|
|
1596
|
+
CompleteGeomObjectSelectionList : list[str]
|
|
1597
|
+
NonExtractedObjects : list[str]
|
|
1598
1598
|
|
|
1599
1599
|
Returns
|
|
1600
1600
|
-------
|
|
@@ -1613,14 +1613,14 @@ class Root(PyMenu):
|
|
|
1613
1613
|
SelectionType : str
|
|
1614
1614
|
ExtendToPeriodicPair : bool
|
|
1615
1615
|
ExtrudeNormalBased : bool
|
|
1616
|
-
ExternalBoundaryZoneList :
|
|
1617
|
-
TopologyList :
|
|
1616
|
+
ExternalBoundaryZoneList : list[str]
|
|
1617
|
+
TopologyList : list[str]
|
|
1618
1618
|
TotalHeight : float
|
|
1619
1619
|
FirstHeight : float
|
|
1620
1620
|
NumberofLayers : int
|
|
1621
1621
|
GrowthRate : float
|
|
1622
|
-
VMExtrudePreferences :
|
|
1623
|
-
ZoneLocation :
|
|
1622
|
+
VMExtrudePreferences : dict[str, Any]
|
|
1623
|
+
ZoneLocation : list[str]
|
|
1624
1624
|
|
|
1625
1625
|
Returns
|
|
1626
1626
|
-------
|
|
@@ -1638,8 +1638,8 @@ class Root(PyMenu):
|
|
|
1638
1638
|
ProjectOnGeometry : bool
|
|
1639
1639
|
EnableMultiThreading : bool
|
|
1640
1640
|
NumberOfMultiThreads : int
|
|
1641
|
-
Prism2DPreferences :
|
|
1642
|
-
Surface2DPreferences :
|
|
1641
|
+
Prism2DPreferences : dict[str, Any]
|
|
1642
|
+
Surface2DPreferences : dict[str, Any]
|
|
1643
1643
|
|
|
1644
1644
|
Returns
|
|
1645
1645
|
-------
|
|
@@ -1662,8 +1662,8 @@ class Root(PyMenu):
|
|
|
1662
1662
|
SplitQuads : bool
|
|
1663
1663
|
ProjectOnGeometry : bool
|
|
1664
1664
|
SelectionType : str
|
|
1665
|
-
FaceLabelList :
|
|
1666
|
-
FaceZoneList :
|
|
1665
|
+
FaceLabelList : list[str]
|
|
1666
|
+
FaceZoneList : list[str]
|
|
1667
1667
|
|
|
1668
1668
|
Returns
|
|
1669
1669
|
-------
|
|
@@ -1715,16 +1715,16 @@ class Root(PyMenu):
|
|
|
1715
1715
|
----------
|
|
1716
1716
|
OrthogonalQualityLimit : float
|
|
1717
1717
|
SelectionType : str
|
|
1718
|
-
RegionScope :
|
|
1718
|
+
RegionScope : list[str]
|
|
1719
1719
|
NonConformal : str
|
|
1720
1720
|
SizeFunctionScaleFactor : float
|
|
1721
1721
|
MeshingStrategy : str
|
|
1722
1722
|
ReMergeZones : str
|
|
1723
1723
|
MergeBodyLabels : str
|
|
1724
|
-
CFDSurfaceMeshControls :
|
|
1725
|
-
BodyLabelList :
|
|
1726
|
-
CellZoneList :
|
|
1727
|
-
CompleteRegionScope :
|
|
1724
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1725
|
+
BodyLabelList : list[str]
|
|
1726
|
+
CellZoneList : list[str]
|
|
1727
|
+
CompleteRegionScope : list[str]
|
|
1728
1728
|
|
|
1729
1729
|
Returns
|
|
1730
1730
|
-------
|
|
@@ -1771,13 +1771,13 @@ class Root(PyMenu):
|
|
|
1771
1771
|
|
|
1772
1772
|
Parameters
|
|
1773
1773
|
----------
|
|
1774
|
-
CFDSurfaceMeshControls :
|
|
1774
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1775
1775
|
SeparationRequired : str
|
|
1776
1776
|
SeparationAngle : float
|
|
1777
1777
|
RemeshSelectionType : str
|
|
1778
|
-
RemeshZoneList :
|
|
1779
|
-
RemeshLabelList :
|
|
1780
|
-
SurfaceMeshPreferences :
|
|
1778
|
+
RemeshZoneList : list[str]
|
|
1779
|
+
RemeshLabelList : list[str]
|
|
1780
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
1781
1781
|
ImportType : str
|
|
1782
1782
|
AppendMesh : bool
|
|
1783
1783
|
CadFacetingFileName : str
|
|
@@ -1785,11 +1785,11 @@ class Root(PyMenu):
|
|
|
1785
1785
|
Pattern : str
|
|
1786
1786
|
LengthUnit : str
|
|
1787
1787
|
TesselationMethod : str
|
|
1788
|
-
OriginalZones :
|
|
1788
|
+
OriginalZones : list[str]
|
|
1789
1789
|
ExecuteShareTopology : str
|
|
1790
|
-
CADFacetingControls :
|
|
1791
|
-
CadImportOptions :
|
|
1792
|
-
ShareTopologyPreferences :
|
|
1790
|
+
CADFacetingControls : dict[str, Any]
|
|
1791
|
+
CadImportOptions : dict[str, Any]
|
|
1792
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
1793
1793
|
PreviewSizeToggle : bool
|
|
1794
1794
|
|
|
1795
1795
|
Returns
|
|
@@ -1809,15 +1809,15 @@ class Root(PyMenu):
|
|
|
1809
1809
|
EnableParallel : bool
|
|
1810
1810
|
SaveVolumeMesh : bool
|
|
1811
1811
|
EditVolumeSettings : bool
|
|
1812
|
-
RegionNameList :
|
|
1813
|
-
RegionVolumeFillList :
|
|
1814
|
-
RegionSizeList :
|
|
1815
|
-
OldRegionNameList :
|
|
1816
|
-
OldRegionVolumeFillList :
|
|
1817
|
-
OldRegionSizeList :
|
|
1818
|
-
AllRegionNameList :
|
|
1819
|
-
AllRegionVolumeFillList :
|
|
1820
|
-
AllRegionSizeList :
|
|
1812
|
+
RegionNameList : list[str]
|
|
1813
|
+
RegionVolumeFillList : list[str]
|
|
1814
|
+
RegionSizeList : list[str]
|
|
1815
|
+
OldRegionNameList : list[str]
|
|
1816
|
+
OldRegionVolumeFillList : list[str]
|
|
1817
|
+
OldRegionSizeList : list[str]
|
|
1818
|
+
AllRegionNameList : list[str]
|
|
1819
|
+
AllRegionVolumeFillList : list[str]
|
|
1820
|
+
AllRegionSizeList : list[str]
|
|
1821
1821
|
AdvancedOptions : bool
|
|
1822
1822
|
SpikeRemovalAngle : float
|
|
1823
1823
|
DihedralMinAngle : float
|
|
@@ -1850,13 +1850,13 @@ class Root(PyMenu):
|
|
|
1850
1850
|
MeshFluidRegions : bool
|
|
1851
1851
|
MeshSolidRegions : bool
|
|
1852
1852
|
SizingMethod : str
|
|
1853
|
-
VolumeFillControls :
|
|
1853
|
+
VolumeFillControls : dict[str, Any]
|
|
1854
1854
|
RegionBasedPreferences : bool
|
|
1855
1855
|
ReMergeZones : str
|
|
1856
1856
|
ParallelMeshing : bool
|
|
1857
|
-
VolumeMeshPreferences :
|
|
1858
|
-
PrismPreferences :
|
|
1859
|
-
GlobalThinVolumePreferences :
|
|
1857
|
+
VolumeMeshPreferences : dict[str, Any]
|
|
1858
|
+
PrismPreferences : dict[str, Any]
|
|
1859
|
+
GlobalThinVolumePreferences : dict[str, Any]
|
|
1860
1860
|
InvokePrimsControl : str
|
|
1861
1861
|
OffsetMethodType : str
|
|
1862
1862
|
NumberOfLayers : int
|
|
@@ -1866,20 +1866,20 @@ class Root(PyMenu):
|
|
|
1866
1866
|
FirstHeight : float
|
|
1867
1867
|
MeshObject : str
|
|
1868
1868
|
MeshDeadRegions : bool
|
|
1869
|
-
BodyLabelList :
|
|
1869
|
+
BodyLabelList : list[str]
|
|
1870
1870
|
PrismLayers : bool
|
|
1871
1871
|
QuadTetTransition : str
|
|
1872
1872
|
MergeCellZones : bool
|
|
1873
|
-
FaceScope :
|
|
1874
|
-
RegionTetNameList :
|
|
1875
|
-
RegionTetMaxCellLengthList :
|
|
1876
|
-
RegionTetGrowthRateList :
|
|
1877
|
-
RegionHexNameList :
|
|
1878
|
-
RegionHexMaxCellLengthList :
|
|
1879
|
-
OldRegionTetMaxCellLengthList :
|
|
1880
|
-
OldRegionTetGrowthRateList :
|
|
1881
|
-
OldRegionHexMaxCellLengthList :
|
|
1882
|
-
CFDSurfaceMeshControls :
|
|
1873
|
+
FaceScope : dict[str, Any]
|
|
1874
|
+
RegionTetNameList : list[str]
|
|
1875
|
+
RegionTetMaxCellLengthList : list[str]
|
|
1876
|
+
RegionTetGrowthRateList : list[str]
|
|
1877
|
+
RegionHexNameList : list[str]
|
|
1878
|
+
RegionHexMaxCellLengthList : list[str]
|
|
1879
|
+
OldRegionTetMaxCellLengthList : list[str]
|
|
1880
|
+
OldRegionTetGrowthRateList : list[str]
|
|
1881
|
+
OldRegionHexMaxCellLengthList : list[str]
|
|
1882
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
1883
1883
|
ShowSolidFluidMeshed : bool
|
|
1884
1884
|
|
|
1885
1885
|
Returns
|
|
@@ -1900,15 +1900,15 @@ class Root(PyMenu):
|
|
|
1900
1900
|
InvokeShareTopology : str
|
|
1901
1901
|
NonConformal : str
|
|
1902
1902
|
Multizone : str
|
|
1903
|
-
SetupInternals :
|
|
1904
|
-
SetupInternalTypes :
|
|
1905
|
-
OldZoneList :
|
|
1906
|
-
OldZoneTypeList :
|
|
1907
|
-
RegionList :
|
|
1908
|
-
EdgeZoneList :
|
|
1909
|
-
EdgeLabels :
|
|
1903
|
+
SetupInternals : list[str]
|
|
1904
|
+
SetupInternalTypes : list[str]
|
|
1905
|
+
OldZoneList : list[str]
|
|
1906
|
+
OldZoneTypeList : list[str]
|
|
1907
|
+
RegionList : list[str]
|
|
1908
|
+
EdgeZoneList : list[str]
|
|
1909
|
+
EdgeLabels : list[str]
|
|
1910
1910
|
Duplicates : bool
|
|
1911
|
-
SMImprovePreferences :
|
|
1911
|
+
SMImprovePreferences : dict[str, Any]
|
|
1912
1912
|
|
|
1913
1913
|
Returns
|
|
1914
1914
|
-------
|
|
@@ -1925,21 +1925,21 @@ class Root(PyMenu):
|
|
|
1925
1925
|
MRFName : str
|
|
1926
1926
|
CreationMethod : str
|
|
1927
1927
|
SelectionType : str
|
|
1928
|
-
ObjectSelectionSingle :
|
|
1929
|
-
ZoneSelectionSingle :
|
|
1930
|
-
LabelSelectionSingle :
|
|
1931
|
-
ObjectSelectionList :
|
|
1932
|
-
ZoneSelectionList :
|
|
1933
|
-
ZoneLocation :
|
|
1934
|
-
LabelSelectionList :
|
|
1928
|
+
ObjectSelectionSingle : list[str]
|
|
1929
|
+
ZoneSelectionSingle : list[str]
|
|
1930
|
+
LabelSelectionSingle : list[str]
|
|
1931
|
+
ObjectSelectionList : list[str]
|
|
1932
|
+
ZoneSelectionList : list[str]
|
|
1933
|
+
ZoneLocation : list[str]
|
|
1934
|
+
LabelSelectionList : list[str]
|
|
1935
1935
|
DefeaturingSize : float
|
|
1936
1936
|
OffsetHeight : float
|
|
1937
|
-
Pivot :
|
|
1938
|
-
Axis :
|
|
1939
|
-
Rotation :
|
|
1940
|
-
CylinderObject :
|
|
1937
|
+
Pivot : dict[str, Any]
|
|
1938
|
+
Axis : dict[str, Any]
|
|
1939
|
+
Rotation : dict[str, Any]
|
|
1940
|
+
CylinderObject : dict[str, Any]
|
|
1941
1941
|
CylinderMethod : str
|
|
1942
|
-
BoundingBoxObject :
|
|
1942
|
+
BoundingBoxObject : dict[str, Any]
|
|
1943
1943
|
|
|
1944
1944
|
Returns
|
|
1945
1945
|
-------
|
|
@@ -1955,9 +1955,9 @@ class Root(PyMenu):
|
|
|
1955
1955
|
----------
|
|
1956
1956
|
DisplayGridName : str
|
|
1957
1957
|
SelectionType : str
|
|
1958
|
-
ObjectSelectionList :
|
|
1959
|
-
ZoneSelectionList :
|
|
1960
|
-
ZoneLocation :
|
|
1958
|
+
ObjectSelectionList : list[str]
|
|
1959
|
+
ZoneSelectionList : list[str]
|
|
1960
|
+
ZoneLocation : list[str]
|
|
1961
1961
|
AdvancedOptions : bool
|
|
1962
1962
|
DeviationMinValue : float
|
|
1963
1963
|
DeviationMaxValue : float
|
|
@@ -1977,15 +1977,15 @@ class Root(PyMenu):
|
|
|
1977
1977
|
Parameters
|
|
1978
1978
|
----------
|
|
1979
1979
|
NumberOfOrphans : str
|
|
1980
|
-
ObjectSelectionList :
|
|
1980
|
+
ObjectSelectionList : list[str]
|
|
1981
1981
|
EnableGridPriority : bool
|
|
1982
1982
|
DonorPriorityMethod : str
|
|
1983
1983
|
OverlapBoundaries : str
|
|
1984
1984
|
CheckOversetInterfaceIntersection : str
|
|
1985
|
-
RegionNameList :
|
|
1986
|
-
RegionSizeList :
|
|
1987
|
-
OldRegionNameList :
|
|
1988
|
-
OldRegionSizeList :
|
|
1985
|
+
RegionNameList : list[str]
|
|
1986
|
+
RegionSizeList : list[str]
|
|
1987
|
+
OldRegionNameList : list[str]
|
|
1988
|
+
OldRegionSizeList : list[str]
|
|
1989
1989
|
|
|
1990
1990
|
Returns
|
|
1991
1991
|
-------
|
|
@@ -2005,10 +2005,10 @@ class Root(PyMenu):
|
|
|
2005
2005
|
NewRegionType : str
|
|
2006
2006
|
LinkConstruction : str
|
|
2007
2007
|
SelectionType : str
|
|
2008
|
-
ZoneSelectionList :
|
|
2009
|
-
ZoneLocation :
|
|
2010
|
-
LabelSelectionList :
|
|
2011
|
-
ObjectSelectionList :
|
|
2008
|
+
ZoneSelectionList : list[str]
|
|
2009
|
+
ZoneLocation : list[str]
|
|
2010
|
+
LabelSelectionList : list[str]
|
|
2011
|
+
ObjectSelectionList : list[str]
|
|
2012
2012
|
GraphicalSelection : bool
|
|
2013
2013
|
ShowCoordinates : bool
|
|
2014
2014
|
X : float
|
|
@@ -2033,9 +2033,9 @@ class Root(PyMenu):
|
|
|
2033
2033
|
Type : str
|
|
2034
2034
|
GeometryFileName : str
|
|
2035
2035
|
MeshFileName : str
|
|
2036
|
-
ImportedObjects :
|
|
2036
|
+
ImportedObjects : list[str]
|
|
2037
2037
|
LengthUnit : str
|
|
2038
|
-
CadImportOptions :
|
|
2038
|
+
CadImportOptions : dict[str, Any]
|
|
2039
2039
|
|
|
2040
2040
|
Returns
|
|
2041
2041
|
-------
|
|
@@ -2054,7 +2054,7 @@ class Root(PyMenu):
|
|
|
2054
2054
|
LengthUnit : str
|
|
2055
2055
|
MeshUnit : str
|
|
2056
2056
|
UseBodyLabels : str
|
|
2057
|
-
ImportCadPreferences :
|
|
2057
|
+
ImportCadPreferences : dict[str, Any]
|
|
2058
2058
|
FileName : str
|
|
2059
2059
|
FileNames : str
|
|
2060
2060
|
MeshFileName : str
|
|
@@ -2062,7 +2062,7 @@ class Root(PyMenu):
|
|
|
2062
2062
|
AppendMesh : bool
|
|
2063
2063
|
Directory : str
|
|
2064
2064
|
Pattern : str
|
|
2065
|
-
CadImportOptions :
|
|
2065
|
+
CadImportOptions : dict[str, Any]
|
|
2066
2066
|
|
|
2067
2067
|
Returns
|
|
2068
2068
|
-------
|
|
@@ -2079,7 +2079,8 @@ class Root(PyMenu):
|
|
|
2079
2079
|
MeshObject : str
|
|
2080
2080
|
FaceQualityLimit : float
|
|
2081
2081
|
SQMinSize : float
|
|
2082
|
-
|
|
2082
|
+
ScopeImproveTo : str
|
|
2083
|
+
SMImprovePreferences : dict[str, Any]
|
|
2083
2084
|
|
|
2084
2085
|
Returns
|
|
2085
2086
|
-------
|
|
@@ -2096,11 +2097,11 @@ class Root(PyMenu):
|
|
|
2096
2097
|
QualityMethod : str
|
|
2097
2098
|
CellQualityLimit : float
|
|
2098
2099
|
AddMultipleQualityMethods : str
|
|
2099
|
-
QualityMethodList :
|
|
2100
|
-
QualityCriteriaList :
|
|
2101
|
-
OldQualityMethodList :
|
|
2102
|
-
OldQualityCriteriaList :
|
|
2103
|
-
VMImprovePreferences :
|
|
2100
|
+
QualityMethodList : list[str]
|
|
2101
|
+
QualityCriteriaList : list[str]
|
|
2102
|
+
OldQualityMethodList : list[str]
|
|
2103
|
+
OldQualityCriteriaList : list[str]
|
|
2104
|
+
VMImprovePreferences : dict[str, Any]
|
|
2104
2105
|
|
|
2105
2106
|
Returns
|
|
2106
2107
|
-------
|
|
@@ -2115,13 +2116,13 @@ class Root(PyMenu):
|
|
|
2115
2116
|
Parameters
|
|
2116
2117
|
----------
|
|
2117
2118
|
ChildName : str
|
|
2118
|
-
ObjectList :
|
|
2119
|
+
ObjectList : list[str]
|
|
2119
2120
|
AutoPopulateVector : str
|
|
2120
|
-
PatternVector :
|
|
2121
|
+
PatternVector : dict[str, Any]
|
|
2121
2122
|
Pitch : float
|
|
2122
2123
|
NumberOfUnits : int
|
|
2123
2124
|
CheckOverlappingFaces : str
|
|
2124
|
-
BatteryModelingOptions :
|
|
2125
|
+
BatteryModelingOptions : dict[str, Any]
|
|
2125
2126
|
|
|
2126
2127
|
Returns
|
|
2127
2128
|
-------
|
|
@@ -2142,7 +2143,7 @@ class Root(PyMenu):
|
|
|
2142
2143
|
FacetingTolerance : float
|
|
2143
2144
|
CreateObjectPer : str
|
|
2144
2145
|
NumParts : float
|
|
2145
|
-
Refaceting :
|
|
2146
|
+
Refaceting : dict[str, Any]
|
|
2146
2147
|
|
|
2147
2148
|
Returns
|
|
2148
2149
|
-------
|
|
@@ -2158,17 +2159,17 @@ class Root(PyMenu):
|
|
|
2158
2159
|
----------
|
|
2159
2160
|
LocalSettingsName : str
|
|
2160
2161
|
SelectionType : str
|
|
2161
|
-
ObjectSelectionList :
|
|
2162
|
-
LabelSelectionList :
|
|
2163
|
-
ZoneSelectionList :
|
|
2164
|
-
ZoneLocation :
|
|
2165
|
-
EdgeSelectionList :
|
|
2166
|
-
LocalSizeControlParameters :
|
|
2162
|
+
ObjectSelectionList : list[str]
|
|
2163
|
+
LabelSelectionList : list[str]
|
|
2164
|
+
ZoneSelectionList : list[str]
|
|
2165
|
+
ZoneLocation : list[str]
|
|
2166
|
+
EdgeSelectionList : list[str]
|
|
2167
|
+
LocalSizeControlParameters : dict[str, Any]
|
|
2167
2168
|
ValueChanged : str
|
|
2168
|
-
CompleteZoneSelectionList :
|
|
2169
|
-
CompleteLabelSelectionList :
|
|
2170
|
-
CompleteObjectSelectionList :
|
|
2171
|
-
CompleteEdgeSelectionList :
|
|
2169
|
+
CompleteZoneSelectionList : list[str]
|
|
2170
|
+
CompleteLabelSelectionList : list[str]
|
|
2171
|
+
CompleteObjectSelectionList : list[str]
|
|
2172
|
+
CompleteEdgeSelectionList : list[str]
|
|
2172
2173
|
|
|
2173
2174
|
Returns
|
|
2174
2175
|
-------
|
|
@@ -2189,20 +2190,20 @@ class Root(PyMenu):
|
|
|
2189
2190
|
Volume : float
|
|
2190
2191
|
EqualRange : float
|
|
2191
2192
|
ZoneOrLabel : str
|
|
2192
|
-
LabelList :
|
|
2193
|
-
ManageFaceZoneList :
|
|
2194
|
-
ManageCellZoneList :
|
|
2195
|
-
BodyLabelList :
|
|
2193
|
+
LabelList : list[str]
|
|
2194
|
+
ManageFaceZoneList : list[str]
|
|
2195
|
+
ManageCellZoneList : list[str]
|
|
2196
|
+
BodyLabelList : list[str]
|
|
2196
2197
|
Operation : str
|
|
2197
2198
|
OperationName : str
|
|
2198
2199
|
MZChildName : str
|
|
2199
2200
|
AddPrefixName : str
|
|
2200
2201
|
FaceMerge : str
|
|
2201
2202
|
Angle : float
|
|
2202
|
-
ZoneList :
|
|
2203
|
-
CompleteZoneList :
|
|
2204
|
-
CompleteLabelList :
|
|
2205
|
-
ZoneLocation :
|
|
2203
|
+
ZoneList : list[str]
|
|
2204
|
+
CompleteZoneList : list[str]
|
|
2205
|
+
CompleteLabelList : list[str]
|
|
2206
|
+
ZoneLocation : list[str]
|
|
2206
2207
|
|
|
2207
2208
|
Returns
|
|
2208
2209
|
-------
|
|
@@ -2235,16 +2236,16 @@ class Root(PyMenu):
|
|
|
2235
2236
|
RemeshControlName : str
|
|
2236
2237
|
LocalSize : float
|
|
2237
2238
|
FaceZoneOrLabel : str
|
|
2238
|
-
RemeshFaceZoneList :
|
|
2239
|
-
RemeshFaceLabelList :
|
|
2239
|
+
RemeshFaceZoneList : list[str]
|
|
2240
|
+
RemeshFaceLabelList : list[str]
|
|
2240
2241
|
SizingType : str
|
|
2241
2242
|
LocalMinSize : float
|
|
2242
2243
|
LocalMaxSize : float
|
|
2243
2244
|
RemeshGrowthRate : float
|
|
2244
2245
|
RemeshCurvatureNormalAngle : float
|
|
2245
2246
|
RemeshCellsPerGap : float
|
|
2246
|
-
CFDSurfaceMeshControls :
|
|
2247
|
-
RemeshPreferences :
|
|
2247
|
+
CFDSurfaceMeshControls : dict[str, Any]
|
|
2248
|
+
RemeshPreferences : dict[str, Any]
|
|
2248
2249
|
|
|
2249
2250
|
Returns
|
|
2250
2251
|
-------
|
|
@@ -2275,14 +2276,14 @@ class Root(PyMenu):
|
|
|
2275
2276
|
RemoveEmptyParts : bool
|
|
2276
2277
|
FeatureAngle : float
|
|
2277
2278
|
OneZonePer : str
|
|
2278
|
-
Refaceting :
|
|
2279
|
+
Refaceting : dict[str, Any]
|
|
2279
2280
|
IgnoreSolidNames : bool
|
|
2280
2281
|
IgnoreSolidNamesAppend : bool
|
|
2281
|
-
Options :
|
|
2282
|
+
Options : dict[str, Any]
|
|
2282
2283
|
EdgeExtraction : str
|
|
2283
2284
|
Context : int
|
|
2284
2285
|
ObjectSetting : str
|
|
2285
|
-
RefacetOptions :
|
|
2286
|
+
RefacetOptions : dict[str, Any]
|
|
2286
2287
|
|
|
2287
2288
|
Returns
|
|
2288
2289
|
-------
|
|
@@ -2299,8 +2300,8 @@ class Root(PyMenu):
|
|
|
2299
2300
|
PartReplacementName : str
|
|
2300
2301
|
ManagementMethod : str
|
|
2301
2302
|
CreationMethod : str
|
|
2302
|
-
OldObjectSelectionList :
|
|
2303
|
-
NewObjectSelectionList :
|
|
2303
|
+
OldObjectSelectionList : list[str]
|
|
2304
|
+
NewObjectSelectionList : list[str]
|
|
2304
2305
|
AdvancedOptions : bool
|
|
2305
2306
|
ScalingFactor : float
|
|
2306
2307
|
MptMethodType : str
|
|
@@ -2370,15 +2371,15 @@ class Root(PyMenu):
|
|
|
2370
2371
|
Type : str
|
|
2371
2372
|
Method : str
|
|
2372
2373
|
PeriodicityAngle : float
|
|
2373
|
-
LCSOrigin :
|
|
2374
|
-
LCSVector :
|
|
2375
|
-
TransShift :
|
|
2374
|
+
LCSOrigin : dict[str, Any]
|
|
2375
|
+
LCSVector : dict[str, Any]
|
|
2376
|
+
TransShift : dict[str, Any]
|
|
2376
2377
|
SelectionType : str
|
|
2377
|
-
ZoneList :
|
|
2378
|
-
LabelList :
|
|
2379
|
-
TopologyList :
|
|
2378
|
+
ZoneList : list[str]
|
|
2379
|
+
LabelList : list[str]
|
|
2380
|
+
TopologyList : list[str]
|
|
2380
2381
|
RemeshBoundariesOption : str
|
|
2381
|
-
ZoneLocation :
|
|
2382
|
+
ZoneLocation : list[str]
|
|
2382
2383
|
ListAllLabelToggle : bool
|
|
2383
2384
|
AutoMultiplePeriodic : str
|
|
2384
2385
|
MultipleOption : str
|
|
@@ -2403,7 +2404,7 @@ class Root(PyMenu):
|
|
|
2403
2404
|
LastRatioPercentage : float
|
|
2404
2405
|
FirstHeight : float
|
|
2405
2406
|
PrismLayers : int
|
|
2406
|
-
RegionSelectionList :
|
|
2407
|
+
RegionSelectionList : list[str]
|
|
2407
2408
|
|
|
2408
2409
|
Returns
|
|
2409
2410
|
-------
|
|
@@ -2421,10 +2422,10 @@ class Root(PyMenu):
|
|
|
2421
2422
|
GapDistanceConnect : float
|
|
2422
2423
|
STMinSize : float
|
|
2423
2424
|
InterfaceSelect : str
|
|
2424
|
-
EdgeLabels :
|
|
2425
|
-
ShareTopologyPreferences :
|
|
2426
|
-
SMImprovePreferences :
|
|
2427
|
-
SurfaceMeshPreferences :
|
|
2425
|
+
EdgeLabels : list[str]
|
|
2426
|
+
ShareTopologyPreferences : dict[str, Any]
|
|
2427
|
+
SMImprovePreferences : dict[str, Any]
|
|
2428
|
+
SurfaceMeshPreferences : dict[str, Any]
|
|
2428
2429
|
|
|
2429
2430
|
Returns
|
|
2430
2431
|
-------
|
|
@@ -2445,7 +2446,7 @@ class Root(PyMenu):
|
|
|
2445
2446
|
InitialSizeControl : bool
|
|
2446
2447
|
TargetSizeControl : bool
|
|
2447
2448
|
SizeControlInterval : float
|
|
2448
|
-
SizeControlParameters :
|
|
2449
|
+
SizeControlParameters : dict[str, Any]
|
|
2449
2450
|
|
|
2450
2451
|
Returns
|
|
2451
2452
|
-------
|
|
@@ -2474,17 +2475,17 @@ class Root(PyMenu):
|
|
|
2474
2475
|
Type : str
|
|
2475
2476
|
Method : str
|
|
2476
2477
|
SelectionType : str
|
|
2477
|
-
TopoBodyList :
|
|
2478
|
-
CellZoneList :
|
|
2479
|
-
LCSOrigin :
|
|
2480
|
-
LCSVector :
|
|
2481
|
-
TransShift :
|
|
2478
|
+
TopoBodyList : list[str]
|
|
2479
|
+
CellZoneList : list[str]
|
|
2480
|
+
LCSOrigin : dict[str, Any]
|
|
2481
|
+
LCSVector : dict[str, Any]
|
|
2482
|
+
TransShift : dict[str, Any]
|
|
2482
2483
|
Angle : float
|
|
2483
2484
|
Copy : str
|
|
2484
2485
|
NumOfCopies : int
|
|
2485
2486
|
Merge : str
|
|
2486
2487
|
Rename : str
|
|
2487
|
-
MergeBoundaries :
|
|
2488
|
+
MergeBoundaries : list[str]
|
|
2488
2489
|
|
|
2489
2490
|
Returns
|
|
2490
2491
|
-------
|
|
@@ -2500,24 +2501,24 @@ class Root(PyMenu):
|
|
|
2500
2501
|
----------
|
|
2501
2502
|
MeshObject : str
|
|
2502
2503
|
SelectionType : str
|
|
2503
|
-
BoundaryLabelList :
|
|
2504
|
-
BoundaryLabelTypeList :
|
|
2505
|
-
BoundaryZoneList :
|
|
2506
|
-
BoundaryZoneTypeList :
|
|
2507
|
-
OldBoundaryLabelList :
|
|
2508
|
-
OldBoundaryLabelTypeList :
|
|
2509
|
-
OldBoundaryZoneList :
|
|
2510
|
-
OldBoundaryZoneTypeList :
|
|
2511
|
-
OldLabelZoneList :
|
|
2504
|
+
BoundaryLabelList : list[str]
|
|
2505
|
+
BoundaryLabelTypeList : list[str]
|
|
2506
|
+
BoundaryZoneList : list[str]
|
|
2507
|
+
BoundaryZoneTypeList : list[str]
|
|
2508
|
+
OldBoundaryLabelList : list[str]
|
|
2509
|
+
OldBoundaryLabelTypeList : list[str]
|
|
2510
|
+
OldBoundaryZoneList : list[str]
|
|
2511
|
+
OldBoundaryZoneTypeList : list[str]
|
|
2512
|
+
OldLabelZoneList : list[str]
|
|
2512
2513
|
ListAllBoundariesToggle : bool
|
|
2513
|
-
ZoneLocation :
|
|
2514
|
-
TopologyList :
|
|
2515
|
-
TopologyTypeList :
|
|
2516
|
-
OldTopologyList :
|
|
2517
|
-
OldTopologyTypeList :
|
|
2518
|
-
BoundaryCurrentList :
|
|
2519
|
-
BoundaryCurrentTypeList :
|
|
2520
|
-
BoundaryAllowedTypeList :
|
|
2514
|
+
ZoneLocation : list[str]
|
|
2515
|
+
TopologyList : list[str]
|
|
2516
|
+
TopologyTypeList : list[str]
|
|
2517
|
+
OldTopologyList : list[str]
|
|
2518
|
+
OldTopologyTypeList : list[str]
|
|
2519
|
+
BoundaryCurrentList : list[str]
|
|
2520
|
+
BoundaryCurrentTypeList : list[str]
|
|
2521
|
+
BoundaryAllowedTypeList : list[str]
|
|
2521
2522
|
|
|
2522
2523
|
Returns
|
|
2523
2524
|
-------
|
|
@@ -2533,27 +2534,27 @@ class Root(PyMenu):
|
|
|
2533
2534
|
----------
|
|
2534
2535
|
MainFluidRegion : str
|
|
2535
2536
|
FilterCategory : str
|
|
2536
|
-
RegionNameList :
|
|
2537
|
-
RegionMeshMethodList :
|
|
2538
|
-
RegionTypeList :
|
|
2539
|
-
RegionVolumeFillList :
|
|
2540
|
-
RegionLeakageSizeList :
|
|
2541
|
-
RegionOversetComponenList :
|
|
2542
|
-
OldRegionNameList :
|
|
2543
|
-
OldRegionMeshMethodList :
|
|
2544
|
-
OldRegionTypeList :
|
|
2545
|
-
OldRegionVolumeFillList :
|
|
2546
|
-
OldRegionLeakageSizeList :
|
|
2547
|
-
OldRegionOversetComponenList :
|
|
2548
|
-
AllRegionNameList :
|
|
2549
|
-
AllRegionMeshMethodList :
|
|
2550
|
-
AllRegionTypeList :
|
|
2551
|
-
AllRegionVolumeFillList :
|
|
2552
|
-
AllRegionLeakageSizeList :
|
|
2553
|
-
AllRegionOversetComponenList :
|
|
2554
|
-
AllRegionLinkedConstructionSurfaceList :
|
|
2555
|
-
AllRegionSourceList :
|
|
2556
|
-
AllRegionFilterCategories :
|
|
2537
|
+
RegionNameList : list[str]
|
|
2538
|
+
RegionMeshMethodList : list[str]
|
|
2539
|
+
RegionTypeList : list[str]
|
|
2540
|
+
RegionVolumeFillList : list[str]
|
|
2541
|
+
RegionLeakageSizeList : list[str]
|
|
2542
|
+
RegionOversetComponenList : list[str]
|
|
2543
|
+
OldRegionNameList : list[str]
|
|
2544
|
+
OldRegionMeshMethodList : list[str]
|
|
2545
|
+
OldRegionTypeList : list[str]
|
|
2546
|
+
OldRegionVolumeFillList : list[str]
|
|
2547
|
+
OldRegionLeakageSizeList : list[str]
|
|
2548
|
+
OldRegionOversetComponenList : list[str]
|
|
2549
|
+
AllRegionNameList : list[str]
|
|
2550
|
+
AllRegionMeshMethodList : list[str]
|
|
2551
|
+
AllRegionTypeList : list[str]
|
|
2552
|
+
AllRegionVolumeFillList : list[str]
|
|
2553
|
+
AllRegionLeakageSizeList : list[str]
|
|
2554
|
+
AllRegionOversetComponenList : list[str]
|
|
2555
|
+
AllRegionLinkedConstructionSurfaceList : list[str]
|
|
2556
|
+
AllRegionSourceList : list[str]
|
|
2557
|
+
AllRegionFilterCategories : list[str]
|
|
2557
2558
|
|
|
2558
2559
|
Returns
|
|
2559
2560
|
-------
|
|
@@ -2568,14 +2569,14 @@ class Root(PyMenu):
|
|
|
2568
2569
|
Parameters
|
|
2569
2570
|
----------
|
|
2570
2571
|
MeshObject : str
|
|
2571
|
-
RegionNameList :
|
|
2572
|
-
RegionTypeList :
|
|
2573
|
-
OldRegionNameList :
|
|
2574
|
-
OldRegionTypeList :
|
|
2575
|
-
RegionInternals :
|
|
2576
|
-
RegionInternalTypes :
|
|
2577
|
-
RegionCurrentList :
|
|
2578
|
-
RegionCurrentTypeList :
|
|
2572
|
+
RegionNameList : list[str]
|
|
2573
|
+
RegionTypeList : list[str]
|
|
2574
|
+
OldRegionNameList : list[str]
|
|
2575
|
+
OldRegionTypeList : list[str]
|
|
2576
|
+
RegionInternals : list[str]
|
|
2577
|
+
RegionInternalTypes : list[str]
|
|
2578
|
+
RegionCurrentList : list[str]
|
|
2579
|
+
RegionCurrentTypeList : list[str]
|
|
2579
2580
|
NumberOfListedRegions : int
|
|
2580
2581
|
|
|
2581
2582
|
Returns
|
|
@@ -2619,6 +2620,7 @@ class Root(PyMenu):
|
|
|
2619
2620
|
Parameters
|
|
2620
2621
|
----------
|
|
2621
2622
|
FileName : str
|
|
2623
|
+
SkipExport : bool
|
|
2622
2624
|
|
|
2623
2625
|
Returns
|
|
2624
2626
|
-------
|