ansys-fluent-core 0.29.dev3__py3-none-any.whl → 0.30.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 +26 -1
- ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py +22 -0
- ansys/fluent/core/_version.py +23 -1
- ansys/fluent/core/codegen/__init__.py +22 -0
- ansys/fluent/core/codegen/allapigen.py +38 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +22 -0
- ansys/fluent/core/codegen/data/__init__.py +21 -0
- ansys/fluent/core/codegen/data/fluent_gui_help_patch.py +22 -0
- ansys/fluent/core/codegen/data/meshing_utilities_examples.py +22 -0
- ansys/fluent/core/codegen/datamodelgen.py +40 -4
- ansys/fluent/core/codegen/print_fluent_version.py +22 -0
- ansys/fluent/core/codegen/settingsgen.py +67 -4
- ansys/fluent/core/codegen/tuigen.py +43 -5
- ansys/fluent/core/codegen/walk_api.py +22 -0
- ansys/fluent/core/codegen/write_settings_yaml.py +22 -0
- ansys/fluent/core/data_model_cache.py +22 -0
- ansys/fluent/core/examples/__init__.py +22 -0
- ansys/fluent/core/examples/downloads.py +22 -0
- ansys/fluent/core/exceptions.py +22 -0
- ansys/fluent/core/file_session.py +22 -0
- ansys/fluent/core/filereader/__init__.py +21 -0
- ansys/fluent/core/filereader/case_file.py +22 -0
- ansys/fluent/core/filereader/casereader.py +22 -0
- ansys/fluent/core/filereader/data_file.py +22 -0
- ansys/fluent/core/filereader/lispy.py +22 -0
- ansys/fluent/core/fluent_connection.py +23 -1
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/meshing.py +31 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/solver/settings_222.py +0 -72
- ansys/fluent/core/generated/solver/settings_222.pyi +0 -307
- ansys/fluent/core/generated/solver/settings_231.py +0 -574
- ansys/fluent/core/generated/solver/settings_231.pyi +0 -561
- ansys/fluent/core/generated/solver/settings_232.py +0 -527
- ansys/fluent/core/generated/solver/settings_232.pyi +0 -2803
- ansys/fluent/core/generated/solver/settings_241.py +0 -478
- ansys/fluent/core/generated/solver/settings_241.pyi +0 -522
- ansys/fluent/core/generated/solver/settings_242.py +0 -361
- ansys/fluent/core/generated/solver/settings_242.pyi +0 -591
- ansys/fluent/core/generated/solver/settings_251.py +0 -399
- ansys/fluent/core/generated/solver/settings_251.pyi +0 -629
- ansys/fluent/core/generated/solver/settings_252.py +7626 -4108
- ansys/fluent/core/generated/solver/settings_252.pyi +6779 -3098
- ansys/fluent/core/generated/solver/tui_252.py +489 -157
- ansys/fluent/core/get_build_details.py +22 -0
- ansys/fluent/core/journaling.py +38 -0
- ansys/fluent/core/launcher/__init__.py +22 -0
- ansys/fluent/core/launcher/container_launcher.py +63 -55
- ansys/fluent/core/launcher/error_handler.py +22 -0
- ansys/fluent/core/launcher/fluent_container.py +23 -1
- ansys/fluent/core/launcher/launcher.py +51 -3
- ansys/fluent/core/launcher/launcher_utils.py +22 -0
- ansys/fluent/core/launcher/pim_launcher.py +120 -86
- ansys/fluent/core/launcher/process_launch_string.py +22 -0
- ansys/fluent/core/launcher/pyfluent_enums.py +22 -0
- ansys/fluent/core/launcher/server_info.py +22 -0
- ansys/fluent/core/launcher/slurm_launcher.py +23 -1
- ansys/fluent/core/launcher/standalone_launcher.py +68 -63
- ansys/fluent/core/launcher/watchdog.py +22 -0
- ansys/fluent/core/logging.py +22 -0
- ansys/fluent/core/meshing/meshing_workflow.py +22 -0
- ansys/fluent/core/parametric.py +22 -0
- ansys/fluent/core/post_objects/__init__.py +21 -0
- ansys/fluent/core/post_objects/check_in_notebook.py +22 -0
- ansys/fluent/core/post_objects/meta.py +22 -0
- ansys/fluent/core/post_objects/post_helper.py +22 -0
- ansys/fluent/core/post_objects/post_object_definitions.py +22 -0
- ansys/fluent/core/post_objects/post_objects_container.py +22 -0
- ansys/fluent/core/post_objects/singleton_meta.py +22 -0
- ansys/fluent/core/post_objects/timing_decorator.py +22 -0
- ansys/fluent/core/report.py +77 -0
- ansys/fluent/core/rpvars.py +22 -0
- ansys/fluent/core/scheduler/__init__.py +22 -0
- ansys/fluent/core/scheduler/load_machines.py +22 -0
- ansys/fluent/core/scheduler/machine_list.py +22 -0
- ansys/fluent/core/search.py +22 -0
- ansys/fluent/core/services/__init__.py +22 -0
- ansys/fluent/core/services/api_upgrade.py +22 -0
- ansys/fluent/core/services/app_utilities.py +38 -0
- ansys/fluent/core/services/batch_ops.py +22 -0
- ansys/fluent/core/services/datamodel_se.py +22 -2
- ansys/fluent/core/services/datamodel_tui.py +22 -0
- ansys/fluent/core/services/deprecated_field_data.py +23 -1
- ansys/fluent/core/services/events.py +22 -0
- ansys/fluent/core/services/field_data.py +46 -15
- ansys/fluent/core/services/health_check.py +22 -0
- ansys/fluent/core/services/interceptors.py +22 -0
- ansys/fluent/core/services/monitor.py +22 -0
- ansys/fluent/core/services/reduction.py +22 -0
- ansys/fluent/core/services/scheme_eval.py +22 -0
- ansys/fluent/core/services/settings.py +22 -0
- ansys/fluent/core/services/solution_variables.py +22 -0
- ansys/fluent/core/services/streaming.py +22 -0
- ansys/fluent/core/services/transcript.py +22 -0
- ansys/fluent/core/session.py +32 -0
- ansys/fluent/core/session_base_meshing.py +22 -0
- ansys/fluent/core/session_meshing.py +22 -0
- ansys/fluent/core/session_meshing.pyi +22 -0
- ansys/fluent/core/session_pure_meshing.py +22 -0
- ansys/fluent/core/session_pure_meshing.pyi +22 -0
- ansys/fluent/core/session_shared.py +22 -0
- ansys/fluent/core/session_solver.py +22 -0
- ansys/fluent/core/session_solver.pyi +22 -0
- ansys/fluent/core/session_solver_aero.py +22 -0
- ansys/fluent/core/session_solver_icing.py +22 -0
- ansys/fluent/core/session_solver_lite.py +22 -0
- ansys/fluent/core/solver/__init__.py +22 -0
- ansys/fluent/core/solver/error_message.py +22 -0
- ansys/fluent/core/solver/flobject.py +22 -0
- ansys/fluent/core/solver/flunits.py +22 -0
- ansys/fluent/core/solver/function/__init__.py +22 -0
- ansys/fluent/core/solver/function/reduction.py +22 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +22 -0
- ansys/fluent/core/solver/settings_builtin_data.py +22 -0
- ansys/fluent/core/solver/settings_external.py +22 -0
- ansys/fluent/core/streaming_services/__init__.py +21 -0
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +22 -0
- ansys/fluent/core/streaming_services/datamodel_streaming.py +22 -0
- ansys/fluent/core/streaming_services/events_streaming.py +22 -0
- ansys/fluent/core/streaming_services/field_data_streaming.py +22 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +23 -1
- ansys/fluent/core/streaming_services/streaming.py +22 -0
- ansys/fluent/core/streaming_services/transcript_streaming.py +22 -0
- ansys/fluent/core/systemcoupling.py +22 -0
- ansys/fluent/core/utils/__init__.py +22 -0
- ansys/fluent/core/utils/data_transfer.py +22 -0
- ansys/fluent/core/utils/deprecate.py +24 -1
- ansys/fluent/core/utils/dictionary_operations.py +22 -0
- ansys/fluent/core/utils/dump_session_data.py +22 -0
- ansys/fluent/core/utils/event_loop.py +22 -0
- ansys/fluent/core/utils/execution.py +22 -0
- ansys/fluent/core/utils/file_transfer_service.py +22 -0
- ansys/fluent/core/utils/fix_doc.py +22 -0
- ansys/fluent/core/utils/fldoc.py +22 -0
- ansys/fluent/core/utils/fluent_version.py +22 -0
- ansys/fluent/core/utils/networking.py +22 -0
- ansys/fluent/core/utils/setup_for_fluent.py +22 -0
- ansys/fluent/core/warnings.py +22 -0
- ansys/fluent/core/workflow.py +22 -0
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev0.dist-info}/LICENSE +8 -8
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev0.dist-info}/METADATA +9 -7
- ansys_fluent_core-0.30.dev0.dist-info/RECORD +219 -0
- ansys_fluent_core-0.29.dev3.dist-info/RECORD +0 -218
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev0.dist-info}/WHEEL +0 -0
|
@@ -20,33 +20,14 @@ class file(Group):
|
|
|
20
20
|
def read(self, file_type: str, file_name: str):
|
|
21
21
|
"""
|
|
22
22
|
'read' command.
|
|
23
|
-
|
|
24
|
-
Parameters
|
|
25
|
-
----------
|
|
26
|
-
file_type : str
|
|
27
|
-
'file_type' child.
|
|
28
|
-
file_name : str
|
|
29
|
-
'file_name' child.
|
|
30
23
|
"""
|
|
31
24
|
def replace_mesh(self, file_name: str):
|
|
32
25
|
"""
|
|
33
26
|
'replace_mesh' command.
|
|
34
|
-
|
|
35
|
-
Parameters
|
|
36
|
-
----------
|
|
37
|
-
file_name : str
|
|
38
|
-
'file_name' child.
|
|
39
27
|
"""
|
|
40
28
|
def write(self, file_type: str, file_name: str):
|
|
41
29
|
"""
|
|
42
30
|
'write' command.
|
|
43
|
-
|
|
44
|
-
Parameters
|
|
45
|
-
----------
|
|
46
|
-
file_type : str
|
|
47
|
-
'file_type' child.
|
|
48
|
-
file_name : str
|
|
49
|
-
'file_name' child.
|
|
50
31
|
"""
|
|
51
32
|
def parametric_project(self):
|
|
52
33
|
"""
|
|
@@ -2944,24 +2925,10 @@ class materials(Group):
|
|
|
2944
2925
|
def copy_database_material_by_name(self, type: str, name: str):
|
|
2945
2926
|
"""
|
|
2946
2927
|
'copy_database_material_by_name' command.
|
|
2947
|
-
|
|
2948
|
-
Parameters
|
|
2949
|
-
----------
|
|
2950
|
-
type : str
|
|
2951
|
-
'type' child.
|
|
2952
|
-
name : str
|
|
2953
|
-
'name' child.
|
|
2954
2928
|
"""
|
|
2955
2929
|
def copy_database_material_by_formula(self, type: str, formula: str):
|
|
2956
2930
|
"""
|
|
2957
2931
|
'copy_database_material_by_formula' command.
|
|
2958
|
-
|
|
2959
|
-
Parameters
|
|
2960
|
-
----------
|
|
2961
|
-
type : str
|
|
2962
|
-
'type' child.
|
|
2963
|
-
formula : str
|
|
2964
|
-
'formula' child.
|
|
2965
2932
|
"""
|
|
2966
2933
|
return_type: str
|
|
2967
2934
|
class material(String, AllowedValuesMixin):
|
|
@@ -4600,13 +4567,6 @@ class fluid_1(NamedObject[fluid_1_child]):
|
|
|
4600
4567
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
4601
4568
|
"""
|
|
4602
4569
|
'change_type' command.
|
|
4603
|
-
|
|
4604
|
-
Parameters
|
|
4605
|
-
----------
|
|
4606
|
-
zone_list : List
|
|
4607
|
-
'zone_list' child.
|
|
4608
|
-
new_type : str
|
|
4609
|
-
'new_type' child.
|
|
4610
4570
|
"""
|
|
4611
4571
|
child_object_type: fluid_1_child
|
|
4612
4572
|
return_type: str
|
|
@@ -4766,13 +4726,6 @@ class solid_1(NamedObject[solid_1_child]):
|
|
|
4766
4726
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
4767
4727
|
"""
|
|
4768
4728
|
'change_type' command.
|
|
4769
|
-
|
|
4770
|
-
Parameters
|
|
4771
|
-
----------
|
|
4772
|
-
zone_list : List
|
|
4773
|
-
'zone_list' child.
|
|
4774
|
-
new_type : str
|
|
4775
|
-
'new_type' child.
|
|
4776
4729
|
"""
|
|
4777
4730
|
child_object_type: solid_1_child
|
|
4778
4731
|
return_type: str
|
|
@@ -4860,13 +4813,6 @@ class axis(NamedObject[axis_child]):
|
|
|
4860
4813
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
4861
4814
|
"""
|
|
4862
4815
|
'change_type' command.
|
|
4863
|
-
|
|
4864
|
-
Parameters
|
|
4865
|
-
----------
|
|
4866
|
-
zone_list : List
|
|
4867
|
-
'zone_list' child.
|
|
4868
|
-
new_type : str
|
|
4869
|
-
'new_type' child.
|
|
4870
4816
|
"""
|
|
4871
4817
|
child_object_type: axis_child
|
|
4872
4818
|
return_type: str
|
|
@@ -4892,13 +4838,6 @@ class degassing(NamedObject[degassing_child]):
|
|
|
4892
4838
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
4893
4839
|
"""
|
|
4894
4840
|
'change_type' command.
|
|
4895
|
-
|
|
4896
|
-
Parameters
|
|
4897
|
-
----------
|
|
4898
|
-
zone_list : List
|
|
4899
|
-
'zone_list' child.
|
|
4900
|
-
new_type : str
|
|
4901
|
-
'new_type' child.
|
|
4902
4841
|
"""
|
|
4903
4842
|
child_object_type: degassing_child
|
|
4904
4843
|
return_type: str
|
|
@@ -6616,13 +6555,6 @@ class exhaust_fan(NamedObject[exhaust_fan_child]):
|
|
|
6616
6555
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
6617
6556
|
"""
|
|
6618
6557
|
'change_type' command.
|
|
6619
|
-
|
|
6620
|
-
Parameters
|
|
6621
|
-
----------
|
|
6622
|
-
zone_list : List
|
|
6623
|
-
'zone_list' child.
|
|
6624
|
-
new_type : str
|
|
6625
|
-
'new_type' child.
|
|
6626
6558
|
"""
|
|
6627
6559
|
child_object_type: exhaust_fan_child
|
|
6628
6560
|
return_type: str
|
|
@@ -6835,13 +6767,6 @@ class fan(NamedObject[fan_child]):
|
|
|
6835
6767
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
6836
6768
|
"""
|
|
6837
6769
|
'change_type' command.
|
|
6838
|
-
|
|
6839
|
-
Parameters
|
|
6840
|
-
----------
|
|
6841
|
-
zone_list : List
|
|
6842
|
-
'zone_list' child.
|
|
6843
|
-
new_type : str
|
|
6844
|
-
'new_type' child.
|
|
6845
6770
|
"""
|
|
6846
6771
|
child_object_type: fan_child
|
|
6847
6772
|
return_type: str
|
|
@@ -6867,13 +6792,6 @@ class geometry(NamedObject[geometry_child]):
|
|
|
6867
6792
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
6868
6793
|
"""
|
|
6869
6794
|
'change_type' command.
|
|
6870
|
-
|
|
6871
|
-
Parameters
|
|
6872
|
-
----------
|
|
6873
|
-
zone_list : List
|
|
6874
|
-
'zone_list' child.
|
|
6875
|
-
new_type : str
|
|
6876
|
-
'new_type' child.
|
|
6877
6795
|
"""
|
|
6878
6796
|
child_object_type: geometry_child
|
|
6879
6797
|
return_type: str
|
|
@@ -7482,13 +7400,6 @@ class inlet_vent(NamedObject[inlet_vent_child]):
|
|
|
7482
7400
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
7483
7401
|
"""
|
|
7484
7402
|
'change_type' command.
|
|
7485
|
-
|
|
7486
|
-
Parameters
|
|
7487
|
-
----------
|
|
7488
|
-
zone_list : List
|
|
7489
|
-
'zone_list' child.
|
|
7490
|
-
new_type : str
|
|
7491
|
-
'new_type' child.
|
|
7492
7403
|
"""
|
|
7493
7404
|
child_object_type: inlet_vent_child
|
|
7494
7405
|
return_type: str
|
|
@@ -7889,13 +7800,6 @@ class intake_fan(NamedObject[intake_fan_child]):
|
|
|
7889
7800
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
7890
7801
|
"""
|
|
7891
7802
|
'change_type' command.
|
|
7892
|
-
|
|
7893
|
-
Parameters
|
|
7894
|
-
----------
|
|
7895
|
-
zone_list : List
|
|
7896
|
-
'zone_list' child.
|
|
7897
|
-
new_type : str
|
|
7898
|
-
'new_type' child.
|
|
7899
7803
|
"""
|
|
7900
7804
|
child_object_type: intake_fan_child
|
|
7901
7805
|
return_type: str
|
|
@@ -7947,13 +7851,6 @@ class interface(NamedObject[interface_child]):
|
|
|
7947
7851
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
7948
7852
|
"""
|
|
7949
7853
|
'change_type' command.
|
|
7950
|
-
|
|
7951
|
-
Parameters
|
|
7952
|
-
----------
|
|
7953
|
-
zone_list : List
|
|
7954
|
-
'zone_list' child.
|
|
7955
|
-
new_type : str
|
|
7956
|
-
'new_type' child.
|
|
7957
7854
|
"""
|
|
7958
7855
|
child_object_type: interface_child
|
|
7959
7856
|
return_type: str
|
|
@@ -7991,13 +7888,6 @@ class interior(NamedObject[interior_child]):
|
|
|
7991
7888
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
7992
7889
|
"""
|
|
7993
7890
|
'change_type' command.
|
|
7994
|
-
|
|
7995
|
-
Parameters
|
|
7996
|
-
----------
|
|
7997
|
-
zone_list : List
|
|
7998
|
-
'zone_list' child.
|
|
7999
|
-
new_type : str
|
|
8000
|
-
'new_type' child.
|
|
8001
7891
|
"""
|
|
8002
7892
|
child_object_type: interior_child
|
|
8003
7893
|
return_type: str
|
|
@@ -8472,13 +8362,6 @@ class mass_flow_inlet(NamedObject[mass_flow_inlet_child]):
|
|
|
8472
8362
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
8473
8363
|
"""
|
|
8474
8364
|
'change_type' command.
|
|
8475
|
-
|
|
8476
|
-
Parameters
|
|
8477
|
-
----------
|
|
8478
|
-
zone_list : List
|
|
8479
|
-
'zone_list' child.
|
|
8480
|
-
new_type : str
|
|
8481
|
-
'new_type' child.
|
|
8482
8365
|
"""
|
|
8483
8366
|
child_object_type: mass_flow_inlet_child
|
|
8484
8367
|
return_type: str
|
|
@@ -8669,13 +8552,6 @@ class mass_flow_outlet(NamedObject[mass_flow_outlet_child]):
|
|
|
8669
8552
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
8670
8553
|
"""
|
|
8671
8554
|
'change_type' command.
|
|
8672
|
-
|
|
8673
|
-
Parameters
|
|
8674
|
-
----------
|
|
8675
|
-
zone_list : List
|
|
8676
|
-
'zone_list' child.
|
|
8677
|
-
new_type : str
|
|
8678
|
-
'new_type' child.
|
|
8679
8555
|
"""
|
|
8680
8556
|
child_object_type: mass_flow_outlet_child
|
|
8681
8557
|
return_type: str
|
|
@@ -8705,13 +8581,6 @@ class network(NamedObject[network_child]):
|
|
|
8705
8581
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
8706
8582
|
"""
|
|
8707
8583
|
'change_type' command.
|
|
8708
|
-
|
|
8709
|
-
Parameters
|
|
8710
|
-
----------
|
|
8711
|
-
zone_list : List
|
|
8712
|
-
'zone_list' child.
|
|
8713
|
-
new_type : str
|
|
8714
|
-
'new_type' child.
|
|
8715
8584
|
"""
|
|
8716
8585
|
child_object_type: network_child
|
|
8717
8586
|
return_type: str
|
|
@@ -8775,13 +8644,6 @@ class network_end(NamedObject[network_end_child]):
|
|
|
8775
8644
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
8776
8645
|
"""
|
|
8777
8646
|
'change_type' command.
|
|
8778
|
-
|
|
8779
|
-
Parameters
|
|
8780
|
-
----------
|
|
8781
|
-
zone_list : List
|
|
8782
|
-
'zone_list' child.
|
|
8783
|
-
new_type : str
|
|
8784
|
-
'new_type' child.
|
|
8785
8647
|
"""
|
|
8786
8648
|
child_object_type: network_end_child
|
|
8787
8649
|
return_type: str
|
|
@@ -8893,13 +8755,6 @@ class outflow(NamedObject[outflow_child]):
|
|
|
8893
8755
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
8894
8756
|
"""
|
|
8895
8757
|
'change_type' command.
|
|
8896
|
-
|
|
8897
|
-
Parameters
|
|
8898
|
-
----------
|
|
8899
|
-
zone_list : List
|
|
8900
|
-
'zone_list' child.
|
|
8901
|
-
new_type : str
|
|
8902
|
-
'new_type' child.
|
|
8903
8758
|
"""
|
|
8904
8759
|
child_object_type: outflow_child
|
|
8905
8760
|
return_type: str
|
|
@@ -9232,13 +9087,6 @@ class outlet_vent(NamedObject[outlet_vent_child]):
|
|
|
9232
9087
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
9233
9088
|
"""
|
|
9234
9089
|
'change_type' command.
|
|
9235
|
-
|
|
9236
|
-
Parameters
|
|
9237
|
-
----------
|
|
9238
|
-
zone_list : List
|
|
9239
|
-
'zone_list' child.
|
|
9240
|
-
new_type : str
|
|
9241
|
-
'new_type' child.
|
|
9242
9090
|
"""
|
|
9243
9091
|
child_object_type: outlet_vent_child
|
|
9244
9092
|
return_type: str
|
|
@@ -9264,13 +9112,6 @@ class overset(NamedObject[overset_child]):
|
|
|
9264
9112
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
9265
9113
|
"""
|
|
9266
9114
|
'change_type' command.
|
|
9267
|
-
|
|
9268
|
-
Parameters
|
|
9269
|
-
----------
|
|
9270
|
-
zone_list : List
|
|
9271
|
-
'zone_list' child.
|
|
9272
|
-
new_type : str
|
|
9273
|
-
'new_type' child.
|
|
9274
9115
|
"""
|
|
9275
9116
|
child_object_type: overset_child
|
|
9276
9117
|
return_type: str
|
|
@@ -9329,13 +9170,6 @@ class periodic(NamedObject[periodic_child]):
|
|
|
9329
9170
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
9330
9171
|
"""
|
|
9331
9172
|
'change_type' command.
|
|
9332
|
-
|
|
9333
|
-
Parameters
|
|
9334
|
-
----------
|
|
9335
|
-
zone_list : List
|
|
9336
|
-
'zone_list' child.
|
|
9337
|
-
new_type : str
|
|
9338
|
-
'new_type' child.
|
|
9339
9173
|
"""
|
|
9340
9174
|
child_object_type: periodic_child
|
|
9341
9175
|
return_type: str
|
|
@@ -9519,13 +9353,6 @@ class porous_jump(NamedObject[porous_jump_child]):
|
|
|
9519
9353
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
9520
9354
|
"""
|
|
9521
9355
|
'change_type' command.
|
|
9522
|
-
|
|
9523
|
-
Parameters
|
|
9524
|
-
----------
|
|
9525
|
-
zone_list : List
|
|
9526
|
-
'zone_list' child.
|
|
9527
|
-
new_type : str
|
|
9528
|
-
'new_type' child.
|
|
9529
9356
|
"""
|
|
9530
9357
|
child_object_type: porous_jump_child
|
|
9531
9358
|
return_type: str
|
|
@@ -9879,13 +9706,6 @@ class pressure_far_field(NamedObject[pressure_far_field_child]):
|
|
|
9879
9706
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
9880
9707
|
"""
|
|
9881
9708
|
'change_type' command.
|
|
9882
|
-
|
|
9883
|
-
Parameters
|
|
9884
|
-
----------
|
|
9885
|
-
zone_list : List
|
|
9886
|
-
'zone_list' child.
|
|
9887
|
-
new_type : str
|
|
9888
|
-
'new_type' child.
|
|
9889
9709
|
"""
|
|
9890
9710
|
child_object_type: pressure_far_field_child
|
|
9891
9711
|
return_type: str
|
|
@@ -10256,13 +10076,6 @@ class pressure_inlet(NamedObject[pressure_inlet_child]):
|
|
|
10256
10076
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
10257
10077
|
"""
|
|
10258
10078
|
'change_type' command.
|
|
10259
|
-
|
|
10260
|
-
Parameters
|
|
10261
|
-
----------
|
|
10262
|
-
zone_list : List
|
|
10263
|
-
'zone_list' child.
|
|
10264
|
-
new_type : str
|
|
10265
|
-
'new_type' child.
|
|
10266
10079
|
"""
|
|
10267
10080
|
child_object_type: pressure_inlet_child
|
|
10268
10081
|
return_type: str
|
|
@@ -10591,13 +10404,6 @@ class pressure_outlet(NamedObject[pressure_outlet_child]):
|
|
|
10591
10404
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
10592
10405
|
"""
|
|
10593
10406
|
'change_type' command.
|
|
10594
|
-
|
|
10595
|
-
Parameters
|
|
10596
|
-
----------
|
|
10597
|
-
zone_list : List
|
|
10598
|
-
'zone_list' child.
|
|
10599
|
-
new_type : str
|
|
10600
|
-
'new_type' child.
|
|
10601
10407
|
"""
|
|
10602
10408
|
child_object_type: pressure_outlet_child
|
|
10603
10409
|
return_type: str
|
|
@@ -10698,13 +10504,6 @@ class radiator(NamedObject[radiator_child]):
|
|
|
10698
10504
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
10699
10505
|
"""
|
|
10700
10506
|
'change_type' command.
|
|
10701
|
-
|
|
10702
|
-
Parameters
|
|
10703
|
-
----------
|
|
10704
|
-
zone_list : List
|
|
10705
|
-
'zone_list' child.
|
|
10706
|
-
new_type : str
|
|
10707
|
-
'new_type' child.
|
|
10708
10507
|
"""
|
|
10709
10508
|
child_object_type: radiator_child
|
|
10710
10509
|
return_type: str
|
|
@@ -10767,13 +10566,6 @@ class rans_les_interface(NamedObject[rans_les_interface_child]):
|
|
|
10767
10566
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
10768
10567
|
"""
|
|
10769
10568
|
'change_type' command.
|
|
10770
|
-
|
|
10771
|
-
Parameters
|
|
10772
|
-
----------
|
|
10773
|
-
zone_list : List
|
|
10774
|
-
'zone_list' child.
|
|
10775
|
-
new_type : str
|
|
10776
|
-
'new_type' child.
|
|
10777
10569
|
"""
|
|
10778
10570
|
child_object_type: rans_les_interface_child
|
|
10779
10571
|
return_type: str
|
|
@@ -10952,13 +10744,6 @@ class recirculation_inlet(NamedObject[recirculation_inlet_child]):
|
|
|
10952
10744
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
10953
10745
|
"""
|
|
10954
10746
|
'change_type' command.
|
|
10955
|
-
|
|
10956
|
-
Parameters
|
|
10957
|
-
----------
|
|
10958
|
-
zone_list : List
|
|
10959
|
-
'zone_list' child.
|
|
10960
|
-
new_type : str
|
|
10961
|
-
'new_type' child.
|
|
10962
10747
|
"""
|
|
10963
10748
|
child_object_type: recirculation_inlet_child
|
|
10964
10749
|
return_type: str
|
|
@@ -11013,13 +10798,6 @@ class recirculation_outlet(NamedObject[recirculation_outlet_child]):
|
|
|
11013
10798
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
11014
10799
|
"""
|
|
11015
10800
|
'change_type' command.
|
|
11016
|
-
|
|
11017
|
-
Parameters
|
|
11018
|
-
----------
|
|
11019
|
-
zone_list : List
|
|
11020
|
-
'zone_list' child.
|
|
11021
|
-
new_type : str
|
|
11022
|
-
'new_type' child.
|
|
11023
10801
|
"""
|
|
11024
10802
|
child_object_type: recirculation_outlet_child
|
|
11025
10803
|
return_type: str
|
|
@@ -11045,13 +10823,6 @@ class shadow(NamedObject[shadow_child]):
|
|
|
11045
10823
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
11046
10824
|
"""
|
|
11047
10825
|
'change_type' command.
|
|
11048
|
-
|
|
11049
|
-
Parameters
|
|
11050
|
-
----------
|
|
11051
|
-
zone_list : List
|
|
11052
|
-
'zone_list' child.
|
|
11053
|
-
new_type : str
|
|
11054
|
-
'new_type' child.
|
|
11055
10826
|
"""
|
|
11056
10827
|
child_object_type: shadow_child
|
|
11057
10828
|
return_type: str
|
|
@@ -11077,13 +10848,6 @@ class symmetry(NamedObject[symmetry_child]):
|
|
|
11077
10848
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
11078
10849
|
"""
|
|
11079
10850
|
'change_type' command.
|
|
11080
|
-
|
|
11081
|
-
Parameters
|
|
11082
|
-
----------
|
|
11083
|
-
zone_list : List
|
|
11084
|
-
'zone_list' child.
|
|
11085
|
-
new_type : str
|
|
11086
|
-
'new_type' child.
|
|
11087
10851
|
"""
|
|
11088
10852
|
child_object_type: symmetry_child
|
|
11089
10853
|
return_type: str
|
|
@@ -11927,13 +11691,6 @@ class velocity_inlet(NamedObject[velocity_inlet_child]):
|
|
|
11927
11691
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
11928
11692
|
"""
|
|
11929
11693
|
'change_type' command.
|
|
11930
|
-
|
|
11931
|
-
Parameters
|
|
11932
|
-
----------
|
|
11933
|
-
zone_list : List
|
|
11934
|
-
'zone_list' child.
|
|
11935
|
-
new_type : str
|
|
11936
|
-
'new_type' child.
|
|
11937
11694
|
"""
|
|
11938
11695
|
child_object_type: velocity_inlet_child
|
|
11939
11696
|
return_type: str
|
|
@@ -14294,13 +14051,6 @@ class wall(NamedObject[wall_child]):
|
|
|
14294
14051
|
def change_type(self, zone_list: list[str], new_type: str):
|
|
14295
14052
|
"""
|
|
14296
14053
|
'change_type' command.
|
|
14297
|
-
|
|
14298
|
-
Parameters
|
|
14299
|
-
----------
|
|
14300
|
-
zone_list : List
|
|
14301
|
-
'zone_list' child.
|
|
14302
|
-
new_type : str
|
|
14303
|
-
'new_type' child.
|
|
14304
14054
|
"""
|
|
14305
14055
|
child_object_type: wall_child
|
|
14306
14056
|
return_type: str
|
|
@@ -17368,11 +17118,6 @@ class report_definitions(Group):
|
|
|
17368
17118
|
def compute(self, report_defs: list[str]):
|
|
17369
17119
|
"""
|
|
17370
17120
|
'compute' command.
|
|
17371
|
-
|
|
17372
|
-
Parameters
|
|
17373
|
-
----------
|
|
17374
|
-
report_defs : List
|
|
17375
|
-
'report_defs' child.
|
|
17376
17121
|
"""
|
|
17377
17122
|
return_type: str
|
|
17378
17123
|
class fmg_initialize(Boolean):
|
|
@@ -17568,13 +17313,6 @@ class initialization(Group):
|
|
|
17568
17313
|
def init_acoustics_options(self, set_ramping_length: bool, number_of_timesteps: int):
|
|
17569
17314
|
"""
|
|
17570
17315
|
'init_acoustics_options' command.
|
|
17571
|
-
|
|
17572
|
-
Parameters
|
|
17573
|
-
----------
|
|
17574
|
-
set_ramping_length : bool
|
|
17575
|
-
Enable/Disable ramping length and initialize acoustics.
|
|
17576
|
-
number_of_timesteps : int
|
|
17577
|
-
Set number of timesteps for ramping of sources.
|
|
17578
17316
|
"""
|
|
17579
17317
|
return_type: str
|
|
17580
17318
|
class enabled_2(Boolean):
|
|
@@ -17754,11 +17492,6 @@ class data_sampling(Group):
|
|
|
17754
17492
|
def setup_unsteady_statistics(self, udf_cf_names: list[str]):
|
|
17755
17493
|
"""
|
|
17756
17494
|
'setup_unsteady_statistics' command.
|
|
17757
|
-
|
|
17758
|
-
Parameters
|
|
17759
|
-
----------
|
|
17760
|
-
udf_cf_names : List
|
|
17761
|
-
'udf_cf_names' child.
|
|
17762
17495
|
"""
|
|
17763
17496
|
return_type: str
|
|
17764
17497
|
class specified_time_step(Boolean):
|
|
@@ -18199,11 +17932,6 @@ class mesh_1(NamedObject[mesh_1_child]):
|
|
|
18199
17932
|
def display(self, object_name: str):
|
|
18200
17933
|
"""
|
|
18201
17934
|
'display' command.
|
|
18202
|
-
|
|
18203
|
-
Parameters
|
|
18204
|
-
----------
|
|
18205
|
-
object_name : str
|
|
18206
|
-
'object_name' child.
|
|
18207
17935
|
"""
|
|
18208
17936
|
child_object_type: mesh_1_child
|
|
18209
17937
|
return_type: str
|
|
@@ -18410,11 +18138,6 @@ class contour(NamedObject[contour_child]):
|
|
|
18410
18138
|
def display(self, object_name: str):
|
|
18411
18139
|
"""
|
|
18412
18140
|
'display' command.
|
|
18413
|
-
|
|
18414
|
-
Parameters
|
|
18415
|
-
----------
|
|
18416
|
-
object_name : str
|
|
18417
|
-
'object_name' child.
|
|
18418
18141
|
"""
|
|
18419
18142
|
child_object_type: contour_child
|
|
18420
18143
|
return_type: str
|
|
@@ -18529,11 +18252,6 @@ class vector(NamedObject[vector_child]):
|
|
|
18529
18252
|
def display(self, object_name: str):
|
|
18530
18253
|
"""
|
|
18531
18254
|
'display' command.
|
|
18532
|
-
|
|
18533
|
-
Parameters
|
|
18534
|
-
----------
|
|
18535
|
-
object_name : str
|
|
18536
|
-
'object_name' child.
|
|
18537
18255
|
"""
|
|
18538
18256
|
child_object_type: vector_child
|
|
18539
18257
|
return_type: str
|
|
@@ -18759,11 +18477,6 @@ class pathlines(NamedObject[pathlines_child]):
|
|
|
18759
18477
|
def display(self, object_name: str):
|
|
18760
18478
|
"""
|
|
18761
18479
|
'display' command.
|
|
18762
|
-
|
|
18763
|
-
Parameters
|
|
18764
|
-
----------
|
|
18765
|
-
object_name : str
|
|
18766
|
-
'object_name' child.
|
|
18767
18480
|
"""
|
|
18768
18481
|
child_object_type: pathlines_child
|
|
18769
18482
|
return_type: str
|
|
@@ -19007,11 +18720,6 @@ class particle_tracks(NamedObject[particle_tracks_child]):
|
|
|
19007
18720
|
def display(self, object_name: str):
|
|
19008
18721
|
"""
|
|
19009
18722
|
'display' command.
|
|
19010
|
-
|
|
19011
|
-
Parameters
|
|
19012
|
-
----------
|
|
19013
|
-
object_name : str
|
|
19014
|
-
'object_name' child.
|
|
19015
18723
|
"""
|
|
19016
18724
|
child_object_type: particle_tracks_child
|
|
19017
18725
|
return_type: str
|
|
@@ -19127,11 +18835,6 @@ class lic(NamedObject[lic_child]):
|
|
|
19127
18835
|
def display(self, object_name: str):
|
|
19128
18836
|
"""
|
|
19129
18837
|
'display' command.
|
|
19130
|
-
|
|
19131
|
-
Parameters
|
|
19132
|
-
----------
|
|
19133
|
-
object_name : str
|
|
19134
|
-
'object_name' child.
|
|
19135
18838
|
"""
|
|
19136
18839
|
child_object_type: lic_child
|
|
19137
18840
|
return_type: str
|
|
@@ -19448,11 +19151,6 @@ class display_states(NamedObject[display_states_child]):
|
|
|
19448
19151
|
def use_active(self, state_name: str):
|
|
19449
19152
|
"""
|
|
19450
19153
|
'use_active' command.
|
|
19451
|
-
|
|
19452
|
-
Parameters
|
|
19453
|
-
----------
|
|
19454
|
-
state_name : str
|
|
19455
|
-
'state_name' child.
|
|
19456
19154
|
"""
|
|
19457
19155
|
def restore_state(self, state_name: str):
|
|
19458
19156
|
"""
|
|
@@ -19506,11 +19204,6 @@ class views(Group):
|
|
|
19506
19204
|
def save_picture(self, file_name: str):
|
|
19507
19205
|
"""
|
|
19508
19206
|
'save_picture' command.
|
|
19509
|
-
|
|
19510
|
-
Parameters
|
|
19511
|
-
----------
|
|
19512
|
-
file_name : str
|
|
19513
|
-
'file_name' child.
|
|
19514
19207
|
"""
|
|
19515
19208
|
def auto_scale(self):
|
|
19516
19209
|
"""
|