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
|
@@ -588,13 +588,13 @@ class export(Group):
|
|
|
588
588
|
cell_func_domain_export : List
|
|
589
589
|
Select the list of quantities to export.
|
|
590
590
|
"""
|
|
591
|
-
def outline_view_settings(self,
|
|
591
|
+
def outline_view_settings(self, outline_view_path: str, filename: str, extension: str):
|
|
592
592
|
"""
|
|
593
593
|
Export case settings by providing the location of those settings in the Outline View tree.
|
|
594
594
|
|
|
595
595
|
Parameters
|
|
596
596
|
----------
|
|
597
|
-
|
|
597
|
+
outline_view_path : str
|
|
598
598
|
Export case settings by providing the location of those settings in the Outline View Tree.
|
|
599
599
|
For example, "setup/models/viscous" will export the settings of the viscous turbulence model.
|
|
600
600
|
filename : str
|
|
@@ -41580,12 +41580,39 @@ class turbulent_dispersion_1(Group):
|
|
|
41580
41580
|
child_names: list[str]
|
|
41581
41581
|
turbulent_dispersion_trans_vof: turbulent_dispersion_trans_vof
|
|
41582
41582
|
turbulent_dispersion_limit_vof: turbulent_dispersion_limit_vof
|
|
41583
|
+
class t_h_legacy(Boolean):
|
|
41584
|
+
version: str
|
|
41585
|
+
fluent_name: str
|
|
41586
|
+
_python_name: str
|
|
41587
|
+
class t_h_vof_correction(Boolean):
|
|
41588
|
+
version: str
|
|
41589
|
+
fluent_name: str
|
|
41590
|
+
_python_name: str
|
|
41591
|
+
class t_h_freq_correction(Boolean):
|
|
41592
|
+
version: str
|
|
41593
|
+
fluent_name: str
|
|
41594
|
+
_python_name: str
|
|
41595
|
+
class turbulent_interaction_troshko_hassan(Group):
|
|
41596
|
+
version: str
|
|
41597
|
+
fluent_name: str
|
|
41598
|
+
_python_name: str
|
|
41599
|
+
child_names: list[str]
|
|
41600
|
+
t_h_legacy: t_h_legacy
|
|
41601
|
+
t_h_vof_correction: t_h_vof_correction
|
|
41602
|
+
t_h_freq_correction: t_h_freq_correction
|
|
41603
|
+
class turbulence_interaction(Group):
|
|
41604
|
+
version: str
|
|
41605
|
+
fluent_name: str
|
|
41606
|
+
_python_name: str
|
|
41607
|
+
child_names: list[str]
|
|
41608
|
+
turbulent_interaction_troshko_hassan: turbulent_interaction_troshko_hassan
|
|
41583
41609
|
class interphase_interactions(Group):
|
|
41584
41610
|
version: str
|
|
41585
41611
|
fluent_name: str
|
|
41586
41612
|
_python_name: str
|
|
41587
41613
|
child_names: list[str]
|
|
41588
41614
|
turbulent_dispersion: turbulent_dispersion_1
|
|
41615
|
+
turbulence_interaction: turbulence_interaction
|
|
41589
41616
|
class smoothed_density_stabilization_method(Boolean):
|
|
41590
41617
|
version: str
|
|
41591
41618
|
fluent_name: str
|
|
@@ -44011,6 +44038,69 @@ class explicit_under_relaxation_value(Real):
|
|
|
44011
44038
|
version: str
|
|
44012
44039
|
fluent_name: str
|
|
44013
44040
|
_python_name: str
|
|
44041
|
+
class nci_secondary_gradient_child(Boolean):
|
|
44042
|
+
version: str
|
|
44043
|
+
fluent_name: str
|
|
44044
|
+
_python_name: str
|
|
44045
|
+
class nci_secondary_gradient(NamedObject[nci_secondary_gradient_child]):
|
|
44046
|
+
version: str
|
|
44047
|
+
fluent_name: str
|
|
44048
|
+
_python_name: str
|
|
44049
|
+
command_names: list[str]
|
|
44050
|
+
def create(self, name: str):
|
|
44051
|
+
"""
|
|
44052
|
+
Create an instance of this.
|
|
44053
|
+
|
|
44054
|
+
Parameters
|
|
44055
|
+
----------
|
|
44056
|
+
name : str
|
|
44057
|
+
Set name for an object.
|
|
44058
|
+
"""
|
|
44059
|
+
def delete(self, name_list: list[str]):
|
|
44060
|
+
"""
|
|
44061
|
+
Delete selected objects.
|
|
44062
|
+
|
|
44063
|
+
Parameters
|
|
44064
|
+
----------
|
|
44065
|
+
name_list : List
|
|
44066
|
+
Select objects to be deleted.
|
|
44067
|
+
"""
|
|
44068
|
+
def rename(self, new: str, old: str):
|
|
44069
|
+
"""
|
|
44070
|
+
Rename the object.
|
|
44071
|
+
|
|
44072
|
+
Parameters
|
|
44073
|
+
----------
|
|
44074
|
+
new : str
|
|
44075
|
+
New name for the object.
|
|
44076
|
+
old : str
|
|
44077
|
+
Select object to rename.
|
|
44078
|
+
"""
|
|
44079
|
+
def list(self):
|
|
44080
|
+
"""
|
|
44081
|
+
List the names of the objects.
|
|
44082
|
+
"""
|
|
44083
|
+
def list_properties(self, object_name: str):
|
|
44084
|
+
"""
|
|
44085
|
+
List active properties of the object.
|
|
44086
|
+
|
|
44087
|
+
Parameters
|
|
44088
|
+
----------
|
|
44089
|
+
object_name : str
|
|
44090
|
+
Select object for which properties are to be listed.
|
|
44091
|
+
"""
|
|
44092
|
+
def make_a_copy(self, from_: str, to: str):
|
|
44093
|
+
"""
|
|
44094
|
+
Create a copy of the object.
|
|
44095
|
+
|
|
44096
|
+
Parameters
|
|
44097
|
+
----------
|
|
44098
|
+
from_ : str
|
|
44099
|
+
Select the object to duplicate.
|
|
44100
|
+
to : str
|
|
44101
|
+
Specify the name of the new object.
|
|
44102
|
+
"""
|
|
44103
|
+
child_object_type: nci_secondary_gradient_child
|
|
44014
44104
|
class expert_9(Group):
|
|
44015
44105
|
version: str
|
|
44016
44106
|
fluent_name: str
|
|
@@ -44025,6 +44115,7 @@ class expert_9(Group):
|
|
|
44025
44115
|
keep_temporary_memory: keep_temporary_memory
|
|
44026
44116
|
allow_all_disc_schemes: allow_all_disc_schemes
|
|
44027
44117
|
explicit_under_relaxation_value: explicit_under_relaxation_value
|
|
44118
|
+
nci_secondary_gradient: nci_secondary_gradient
|
|
44028
44119
|
class update_stage_gradients(Boolean):
|
|
44029
44120
|
version: str
|
|
44030
44121
|
fluent_name: str
|
|
@@ -47678,14 +47769,14 @@ class solution_animations(NamedObject[solution_animations_child]):
|
|
|
47678
47769
|
"""
|
|
47679
47770
|
def make_a_copy(self, from_: str, to: str):
|
|
47680
47771
|
"""
|
|
47681
|
-
|
|
47772
|
+
Copy graphics object.
|
|
47682
47773
|
|
|
47683
47774
|
Parameters
|
|
47684
47775
|
----------
|
|
47685
47776
|
from_ : str
|
|
47686
|
-
Select
|
|
47777
|
+
Select object name to copy.
|
|
47687
47778
|
to : str
|
|
47688
|
-
|
|
47779
|
+
Select object name for copied object.
|
|
47689
47780
|
"""
|
|
47690
47781
|
def display(self, object_name: str):
|
|
47691
47782
|
"""
|
|
@@ -47696,17 +47787,6 @@ class solution_animations(NamedObject[solution_animations_child]):
|
|
|
47696
47787
|
object_name : str
|
|
47697
47788
|
'object_name' child.
|
|
47698
47789
|
"""
|
|
47699
|
-
def copy(self, from_name: str, new_name: str):
|
|
47700
|
-
"""
|
|
47701
|
-
Copy graphics object.
|
|
47702
|
-
|
|
47703
|
-
Parameters
|
|
47704
|
-
----------
|
|
47705
|
-
from_name : str
|
|
47706
|
-
'from_name' child.
|
|
47707
|
-
new_name : str
|
|
47708
|
-
'new_name' child.
|
|
47709
|
-
"""
|
|
47710
47790
|
def add_to_graphics(self, object_name: str):
|
|
47711
47791
|
"""
|
|
47712
47792
|
Add graphics object to existing graphics.
|
|
@@ -47726,6 +47806,7 @@ class solution_animations(NamedObject[solution_animations_child]):
|
|
|
47726
47806
|
'object_name' child.
|
|
47727
47807
|
"""
|
|
47728
47808
|
child_object_type: solution_animations_child
|
|
47809
|
+
_child_aliases: dict
|
|
47729
47810
|
class enabled_57(Boolean):
|
|
47730
47811
|
version: str
|
|
47731
47812
|
fluent_name: str
|
|
@@ -48434,7 +48515,19 @@ class period(Real):
|
|
|
48434
48515
|
version: str
|
|
48435
48516
|
fluent_name: str
|
|
48436
48517
|
_python_name: str
|
|
48437
|
-
class
|
|
48518
|
+
class frequency_5(Real):
|
|
48519
|
+
version: str
|
|
48520
|
+
fluent_name: str
|
|
48521
|
+
_python_name: str
|
|
48522
|
+
class time_step_size_1(Real):
|
|
48523
|
+
version: str
|
|
48524
|
+
fluent_name: str
|
|
48525
|
+
_python_name: str
|
|
48526
|
+
class time_step_size_count(Integer):
|
|
48527
|
+
version: str
|
|
48528
|
+
fluent_name: str
|
|
48529
|
+
_python_name: str
|
|
48530
|
+
class time_steps_per_period(Integer):
|
|
48438
48531
|
version: str
|
|
48439
48532
|
fluent_name: str
|
|
48440
48533
|
_python_name: str
|
|
@@ -48450,8 +48543,12 @@ class fixed_periodic(Group):
|
|
|
48450
48543
|
enabled: enabled_61
|
|
48451
48544
|
fixed_periodic_type: fixed_periodic_type
|
|
48452
48545
|
period: period
|
|
48453
|
-
|
|
48546
|
+
frequency: frequency_5
|
|
48547
|
+
time_step_size: time_step_size_1
|
|
48548
|
+
time_step_size_count: time_step_size_count
|
|
48549
|
+
time_steps_per_period: time_steps_per_period
|
|
48454
48550
|
total_periods: total_periods
|
|
48551
|
+
_child_aliases: dict
|
|
48455
48552
|
class moving_mesh_constraint(Boolean):
|
|
48456
48553
|
version: str
|
|
48457
48554
|
fluent_name: str
|
|
@@ -48517,7 +48614,7 @@ class choose_auto_time_stepping(String, AllowedValuesMixin):
|
|
|
48517
48614
|
version: str
|
|
48518
48615
|
fluent_name: str
|
|
48519
48616
|
_python_name: str
|
|
48520
|
-
class
|
|
48617
|
+
class time_step_size_2(Real):
|
|
48521
48618
|
version: str
|
|
48522
48619
|
fluent_name: str
|
|
48523
48620
|
_python_name: str
|
|
@@ -48528,7 +48625,7 @@ class solid_time_step_size(Group):
|
|
|
48528
48625
|
child_names: list[str]
|
|
48529
48626
|
enable_solid_time_step: enable_solid_time_step
|
|
48530
48627
|
choose_auto_time_stepping: choose_auto_time_stepping
|
|
48531
|
-
time_step_size:
|
|
48628
|
+
time_step_size: time_step_size_2
|
|
48532
48629
|
class time_step_size_for_acoustic_export(Real):
|
|
48533
48630
|
version: str
|
|
48534
48631
|
fluent_name: str
|
|
@@ -48627,6 +48724,21 @@ class transient_controls(Group):
|
|
|
48627
48724
|
solid_time_step_size: solid_time_step_size
|
|
48628
48725
|
time_step_size_for_acoustic_export: time_step_size_for_acoustic_export
|
|
48629
48726
|
extrapolate_eqn_vars: extrapolate_eqn_vars
|
|
48727
|
+
class postprocess(Boolean):
|
|
48728
|
+
version: str
|
|
48729
|
+
fluent_name: str
|
|
48730
|
+
_python_name: str
|
|
48731
|
+
class num_of_post_iter_per_timestep(Integer):
|
|
48732
|
+
version: str
|
|
48733
|
+
fluent_name: str
|
|
48734
|
+
_python_name: str
|
|
48735
|
+
class pollutants(Group):
|
|
48736
|
+
version: str
|
|
48737
|
+
fluent_name: str
|
|
48738
|
+
_python_name: str
|
|
48739
|
+
child_names: list[str]
|
|
48740
|
+
postprocess: postprocess
|
|
48741
|
+
num_of_post_iter_per_timestep: num_of_post_iter_per_timestep
|
|
48630
48742
|
class enabled_62(Boolean):
|
|
48631
48743
|
version: str
|
|
48632
48744
|
fluent_name: str
|
|
@@ -48851,6 +48963,7 @@ class run_calculation(Group):
|
|
|
48851
48963
|
profile_update_interval: profile_update_interval
|
|
48852
48964
|
time_step_count: time_step_count_1
|
|
48853
48965
|
transient_controls: transient_controls
|
|
48966
|
+
pollutants: pollutants
|
|
48854
48967
|
data_sampling: data_sampling
|
|
48855
48968
|
data_sampling_options: data_sampling_options
|
|
48856
48969
|
residual_verbosity: residual_verbosity
|
|
@@ -50860,14 +50973,14 @@ class mesh_2(NamedObject[mesh_2_child]):
|
|
|
50860
50973
|
"""
|
|
50861
50974
|
def make_a_copy(self, from_: str, to: str):
|
|
50862
50975
|
"""
|
|
50863
|
-
|
|
50976
|
+
Copy graphics object.
|
|
50864
50977
|
|
|
50865
50978
|
Parameters
|
|
50866
50979
|
----------
|
|
50867
50980
|
from_ : str
|
|
50868
|
-
Select
|
|
50981
|
+
Select object name to copy.
|
|
50869
50982
|
to : str
|
|
50870
|
-
|
|
50983
|
+
Select object name for copied object.
|
|
50871
50984
|
"""
|
|
50872
50985
|
def display(self, object_name: str):
|
|
50873
50986
|
"""
|
|
@@ -50878,17 +50991,6 @@ class mesh_2(NamedObject[mesh_2_child]):
|
|
|
50878
50991
|
object_name : str
|
|
50879
50992
|
'object_name' child.
|
|
50880
50993
|
"""
|
|
50881
|
-
def copy(self, from_name: str, new_name: str):
|
|
50882
|
-
"""
|
|
50883
|
-
Copy graphics object.
|
|
50884
|
-
|
|
50885
|
-
Parameters
|
|
50886
|
-
----------
|
|
50887
|
-
from_name : str
|
|
50888
|
-
'from_name' child.
|
|
50889
|
-
new_name : str
|
|
50890
|
-
'new_name' child.
|
|
50891
|
-
"""
|
|
50892
50994
|
def add_to_graphics(self, object_name: str):
|
|
50893
50995
|
"""
|
|
50894
50996
|
Add graphics object to existing graphics.
|
|
@@ -50908,6 +51010,7 @@ class mesh_2(NamedObject[mesh_2_child]):
|
|
|
50908
51010
|
'object_name' child.
|
|
50909
51011
|
"""
|
|
50910
51012
|
child_object_type: mesh_2_child
|
|
51013
|
+
_child_aliases: dict
|
|
50911
51014
|
class field_2(String, AllowedValuesMixin):
|
|
50912
51015
|
version: str
|
|
50913
51016
|
fluent_name: str
|
|
@@ -51220,14 +51323,14 @@ class contour(NamedObject[contour_child]):
|
|
|
51220
51323
|
"""
|
|
51221
51324
|
def make_a_copy(self, from_: str, to: str):
|
|
51222
51325
|
"""
|
|
51223
|
-
|
|
51326
|
+
Copy graphics object.
|
|
51224
51327
|
|
|
51225
51328
|
Parameters
|
|
51226
51329
|
----------
|
|
51227
51330
|
from_ : str
|
|
51228
|
-
Select
|
|
51331
|
+
Select object name to copy.
|
|
51229
51332
|
to : str
|
|
51230
|
-
|
|
51333
|
+
Select object name for copied object.
|
|
51231
51334
|
"""
|
|
51232
51335
|
def display(self, object_name: str):
|
|
51233
51336
|
"""
|
|
@@ -51238,17 +51341,6 @@ class contour(NamedObject[contour_child]):
|
|
|
51238
51341
|
object_name : str
|
|
51239
51342
|
'object_name' child.
|
|
51240
51343
|
"""
|
|
51241
|
-
def copy(self, from_name: str, new_name: str):
|
|
51242
|
-
"""
|
|
51243
|
-
Copy graphics object.
|
|
51244
|
-
|
|
51245
|
-
Parameters
|
|
51246
|
-
----------
|
|
51247
|
-
from_name : str
|
|
51248
|
-
'from_name' child.
|
|
51249
|
-
new_name : str
|
|
51250
|
-
'new_name' child.
|
|
51251
|
-
"""
|
|
51252
51344
|
def add_to_graphics(self, object_name: str):
|
|
51253
51345
|
"""
|
|
51254
51346
|
Add graphics object to existing graphics.
|
|
@@ -51268,6 +51360,7 @@ class contour(NamedObject[contour_child]):
|
|
|
51268
51360
|
'object_name' child.
|
|
51269
51361
|
"""
|
|
51270
51362
|
child_object_type: contour_child
|
|
51363
|
+
_child_aliases: dict
|
|
51271
51364
|
class vector_field(String, AllowedValuesMixin):
|
|
51272
51365
|
version: str
|
|
51273
51366
|
fluent_name: str
|
|
@@ -51440,14 +51533,14 @@ class vector_1(NamedObject[vector_1_child]):
|
|
|
51440
51533
|
"""
|
|
51441
51534
|
def make_a_copy(self, from_: str, to: str):
|
|
51442
51535
|
"""
|
|
51443
|
-
|
|
51536
|
+
Copy graphics object.
|
|
51444
51537
|
|
|
51445
51538
|
Parameters
|
|
51446
51539
|
----------
|
|
51447
51540
|
from_ : str
|
|
51448
|
-
Select
|
|
51541
|
+
Select object name to copy.
|
|
51449
51542
|
to : str
|
|
51450
|
-
|
|
51543
|
+
Select object name for copied object.
|
|
51451
51544
|
"""
|
|
51452
51545
|
def display(self, object_name: str):
|
|
51453
51546
|
"""
|
|
@@ -51458,17 +51551,6 @@ class vector_1(NamedObject[vector_1_child]):
|
|
|
51458
51551
|
object_name : str
|
|
51459
51552
|
'object_name' child.
|
|
51460
51553
|
"""
|
|
51461
|
-
def copy(self, from_name: str, new_name: str):
|
|
51462
|
-
"""
|
|
51463
|
-
Copy graphics object.
|
|
51464
|
-
|
|
51465
|
-
Parameters
|
|
51466
|
-
----------
|
|
51467
|
-
from_name : str
|
|
51468
|
-
'from_name' child.
|
|
51469
|
-
new_name : str
|
|
51470
|
-
'new_name' child.
|
|
51471
|
-
"""
|
|
51472
51554
|
def add_to_graphics(self, object_name: str):
|
|
51473
51555
|
"""
|
|
51474
51556
|
Add graphics object to existing graphics.
|
|
@@ -51488,6 +51570,7 @@ class vector_1(NamedObject[vector_1_child]):
|
|
|
51488
51570
|
'object_name' child.
|
|
51489
51571
|
"""
|
|
51490
51572
|
child_object_type: vector_1_child
|
|
51573
|
+
_child_aliases: dict
|
|
51491
51574
|
class velocity_domain(String, AllowedValuesMixin):
|
|
51492
51575
|
version: str
|
|
51493
51576
|
fluent_name: str
|
|
@@ -52179,14 +52262,14 @@ class pathline(NamedObject[pathline_child]):
|
|
|
52179
52262
|
"""
|
|
52180
52263
|
def make_a_copy(self, from_: str, to: str):
|
|
52181
52264
|
"""
|
|
52182
|
-
|
|
52265
|
+
Copy graphics object.
|
|
52183
52266
|
|
|
52184
52267
|
Parameters
|
|
52185
52268
|
----------
|
|
52186
52269
|
from_ : str
|
|
52187
|
-
Select
|
|
52270
|
+
Select object name to copy.
|
|
52188
52271
|
to : str
|
|
52189
|
-
|
|
52272
|
+
Select object name for copied object.
|
|
52190
52273
|
"""
|
|
52191
52274
|
def display(self, object_name: str):
|
|
52192
52275
|
"""
|
|
@@ -52197,17 +52280,6 @@ class pathline(NamedObject[pathline_child]):
|
|
|
52197
52280
|
object_name : str
|
|
52198
52281
|
'object_name' child.
|
|
52199
52282
|
"""
|
|
52200
|
-
def copy(self, from_name: str, new_name: str):
|
|
52201
|
-
"""
|
|
52202
|
-
Copy graphics object.
|
|
52203
|
-
|
|
52204
|
-
Parameters
|
|
52205
|
-
----------
|
|
52206
|
-
from_name : str
|
|
52207
|
-
'from_name' child.
|
|
52208
|
-
new_name : str
|
|
52209
|
-
'new_name' child.
|
|
52210
|
-
"""
|
|
52211
52283
|
def add_to_graphics(self, object_name: str):
|
|
52212
52284
|
"""
|
|
52213
52285
|
Add graphics object to existing graphics.
|
|
@@ -52227,6 +52299,7 @@ class pathline(NamedObject[pathline_child]):
|
|
|
52227
52299
|
'object_name' child.
|
|
52228
52300
|
"""
|
|
52229
52301
|
child_object_type: pathline_child
|
|
52302
|
+
_child_aliases: dict
|
|
52230
52303
|
class field_6(String, AllowedValuesMixin):
|
|
52231
52304
|
version: str
|
|
52232
52305
|
fluent_name: str
|
|
@@ -52685,14 +52758,14 @@ class particle_track(NamedObject[particle_track_child]):
|
|
|
52685
52758
|
"""
|
|
52686
52759
|
def make_a_copy(self, from_: str, to: str):
|
|
52687
52760
|
"""
|
|
52688
|
-
|
|
52761
|
+
Copy graphics object.
|
|
52689
52762
|
|
|
52690
52763
|
Parameters
|
|
52691
52764
|
----------
|
|
52692
52765
|
from_ : str
|
|
52693
|
-
Select
|
|
52766
|
+
Select object name to copy.
|
|
52694
52767
|
to : str
|
|
52695
|
-
|
|
52768
|
+
Select object name for copied object.
|
|
52696
52769
|
"""
|
|
52697
52770
|
def display(self, object_name: str):
|
|
52698
52771
|
"""
|
|
@@ -52703,17 +52776,6 @@ class particle_track(NamedObject[particle_track_child]):
|
|
|
52703
52776
|
object_name : str
|
|
52704
52777
|
'object_name' child.
|
|
52705
52778
|
"""
|
|
52706
|
-
def copy(self, from_name: str, new_name: str):
|
|
52707
|
-
"""
|
|
52708
|
-
Copy graphics object.
|
|
52709
|
-
|
|
52710
|
-
Parameters
|
|
52711
|
-
----------
|
|
52712
|
-
from_name : str
|
|
52713
|
-
'from_name' child.
|
|
52714
|
-
new_name : str
|
|
52715
|
-
'new_name' child.
|
|
52716
|
-
"""
|
|
52717
52779
|
def add_to_graphics(self, object_name: str):
|
|
52718
52780
|
"""
|
|
52719
52781
|
Add graphics object to existing graphics.
|
|
@@ -52733,6 +52795,7 @@ class particle_track(NamedObject[particle_track_child]):
|
|
|
52733
52795
|
'object_name' child.
|
|
52734
52796
|
"""
|
|
52735
52797
|
child_object_type: particle_track_child
|
|
52798
|
+
_child_aliases: dict
|
|
52736
52799
|
class vector_field_1(String, AllowedValuesMixin):
|
|
52737
52800
|
version: str
|
|
52738
52801
|
fluent_name: str
|
|
@@ -52884,14 +52947,14 @@ class lic(NamedObject[lic_child]):
|
|
|
52884
52947
|
"""
|
|
52885
52948
|
def make_a_copy(self, from_: str, to: str):
|
|
52886
52949
|
"""
|
|
52887
|
-
|
|
52950
|
+
Copy graphics object.
|
|
52888
52951
|
|
|
52889
52952
|
Parameters
|
|
52890
52953
|
----------
|
|
52891
52954
|
from_ : str
|
|
52892
|
-
Select
|
|
52955
|
+
Select object name to copy.
|
|
52893
52956
|
to : str
|
|
52894
|
-
|
|
52957
|
+
Select object name for copied object.
|
|
52895
52958
|
"""
|
|
52896
52959
|
def display(self, object_name: str):
|
|
52897
52960
|
"""
|
|
@@ -52902,17 +52965,6 @@ class lic(NamedObject[lic_child]):
|
|
|
52902
52965
|
object_name : str
|
|
52903
52966
|
'object_name' child.
|
|
52904
52967
|
"""
|
|
52905
|
-
def copy(self, from_name: str, new_name: str):
|
|
52906
|
-
"""
|
|
52907
|
-
Copy graphics object.
|
|
52908
|
-
|
|
52909
|
-
Parameters
|
|
52910
|
-
----------
|
|
52911
|
-
from_name : str
|
|
52912
|
-
'from_name' child.
|
|
52913
|
-
new_name : str
|
|
52914
|
-
'new_name' child.
|
|
52915
|
-
"""
|
|
52916
52968
|
def add_to_graphics(self, object_name: str):
|
|
52917
52969
|
"""
|
|
52918
52970
|
Add graphics object to existing graphics.
|
|
@@ -52932,6 +52984,7 @@ class lic(NamedObject[lic_child]):
|
|
|
52932
52984
|
'object_name' child.
|
|
52933
52985
|
"""
|
|
52934
52986
|
child_object_type: lic_child
|
|
52987
|
+
_child_aliases: dict
|
|
52935
52988
|
class olic_child(Group):
|
|
52936
52989
|
version: str
|
|
52937
52990
|
fluent_name: str
|
|
@@ -53018,14 +53071,14 @@ class olic(NamedObject[olic_child]):
|
|
|
53018
53071
|
"""
|
|
53019
53072
|
def make_a_copy(self, from_: str, to: str):
|
|
53020
53073
|
"""
|
|
53021
|
-
|
|
53074
|
+
Copy graphics object.
|
|
53022
53075
|
|
|
53023
53076
|
Parameters
|
|
53024
53077
|
----------
|
|
53025
53078
|
from_ : str
|
|
53026
|
-
Select
|
|
53079
|
+
Select object name to copy.
|
|
53027
53080
|
to : str
|
|
53028
|
-
|
|
53081
|
+
Select object name for copied object.
|
|
53029
53082
|
"""
|
|
53030
53083
|
def display(self, object_name: str):
|
|
53031
53084
|
"""
|
|
@@ -53036,17 +53089,6 @@ class olic(NamedObject[olic_child]):
|
|
|
53036
53089
|
object_name : str
|
|
53037
53090
|
'object_name' child.
|
|
53038
53091
|
"""
|
|
53039
|
-
def copy(self, from_name: str, new_name: str):
|
|
53040
|
-
"""
|
|
53041
|
-
Copy graphics object.
|
|
53042
|
-
|
|
53043
|
-
Parameters
|
|
53044
|
-
----------
|
|
53045
|
-
from_name : str
|
|
53046
|
-
'from_name' child.
|
|
53047
|
-
new_name : str
|
|
53048
|
-
'new_name' child.
|
|
53049
|
-
"""
|
|
53050
53092
|
def add_to_graphics(self, object_name: str):
|
|
53051
53093
|
"""
|
|
53052
53094
|
Add graphics object to existing graphics.
|
|
@@ -53066,6 +53108,7 @@ class olic(NamedObject[olic_child]):
|
|
|
53066
53108
|
'object_name' child.
|
|
53067
53109
|
"""
|
|
53068
53110
|
child_object_type: olic_child
|
|
53111
|
+
_child_aliases: dict
|
|
53069
53112
|
class field_10(String, AllowedValuesMixin):
|
|
53070
53113
|
version: str
|
|
53071
53114
|
fluent_name: str
|
|
@@ -53437,14 +53480,14 @@ class volumes_2(NamedObject[volumes_2_child]):
|
|
|
53437
53480
|
"""
|
|
53438
53481
|
def make_a_copy(self, from_: str, to: str):
|
|
53439
53482
|
"""
|
|
53440
|
-
|
|
53483
|
+
Copy graphics object.
|
|
53441
53484
|
|
|
53442
53485
|
Parameters
|
|
53443
53486
|
----------
|
|
53444
53487
|
from_ : str
|
|
53445
|
-
Select
|
|
53488
|
+
Select object name to copy.
|
|
53446
53489
|
to : str
|
|
53447
|
-
|
|
53490
|
+
Select object name for copied object.
|
|
53448
53491
|
"""
|
|
53449
53492
|
def display(self, object_name: str):
|
|
53450
53493
|
"""
|
|
@@ -53455,17 +53498,6 @@ class volumes_2(NamedObject[volumes_2_child]):
|
|
|
53455
53498
|
object_name : str
|
|
53456
53499
|
'object_name' child.
|
|
53457
53500
|
"""
|
|
53458
|
-
def copy(self, from_name: str, new_name: str):
|
|
53459
|
-
"""
|
|
53460
|
-
Copy graphics object.
|
|
53461
|
-
|
|
53462
|
-
Parameters
|
|
53463
|
-
----------
|
|
53464
|
-
from_name : str
|
|
53465
|
-
'from_name' child.
|
|
53466
|
-
new_name : str
|
|
53467
|
-
'new_name' child.
|
|
53468
|
-
"""
|
|
53469
53501
|
def add_to_graphics(self, object_name: str):
|
|
53470
53502
|
"""
|
|
53471
53503
|
Add graphics object to existing graphics.
|
|
@@ -53485,6 +53517,7 @@ class volumes_2(NamedObject[volumes_2_child]):
|
|
|
53485
53517
|
'object_name' child.
|
|
53486
53518
|
"""
|
|
53487
53519
|
child_object_type: volumes_2_child
|
|
53520
|
+
_child_aliases: dict
|
|
53488
53521
|
class auto_scale_2(Boolean):
|
|
53489
53522
|
version: str
|
|
53490
53523
|
fluent_name: str
|
|
@@ -55464,14 +55497,14 @@ class xy_plot(NamedObject[xy_plot_child]):
|
|
|
55464
55497
|
"""
|
|
55465
55498
|
def make_a_copy(self, from_: str, to: str):
|
|
55466
55499
|
"""
|
|
55467
|
-
|
|
55500
|
+
Copy graphics object.
|
|
55468
55501
|
|
|
55469
55502
|
Parameters
|
|
55470
55503
|
----------
|
|
55471
55504
|
from_ : str
|
|
55472
|
-
Select
|
|
55505
|
+
Select object name to copy.
|
|
55473
55506
|
to : str
|
|
55474
|
-
|
|
55507
|
+
Select object name for copied object.
|
|
55475
55508
|
"""
|
|
55476
55509
|
def display(self, object_name: str):
|
|
55477
55510
|
"""
|
|
@@ -55482,17 +55515,6 @@ class xy_plot(NamedObject[xy_plot_child]):
|
|
|
55482
55515
|
object_name : str
|
|
55483
55516
|
'object_name' child.
|
|
55484
55517
|
"""
|
|
55485
|
-
def copy(self, from_name: str, new_name: str):
|
|
55486
|
-
"""
|
|
55487
|
-
Copy graphics object.
|
|
55488
|
-
|
|
55489
|
-
Parameters
|
|
55490
|
-
----------
|
|
55491
|
-
from_name : str
|
|
55492
|
-
'from_name' child.
|
|
55493
|
-
new_name : str
|
|
55494
|
-
'new_name' child.
|
|
55495
|
-
"""
|
|
55496
55518
|
def add_to_graphics(self, object_name: str):
|
|
55497
55519
|
"""
|
|
55498
55520
|
Add graphics object to existing graphics.
|
|
@@ -55512,6 +55534,7 @@ class xy_plot(NamedObject[xy_plot_child]):
|
|
|
55512
55534
|
'object_name' child.
|
|
55513
55535
|
"""
|
|
55514
55536
|
child_object_type: xy_plot_child
|
|
55537
|
+
_child_aliases: dict
|
|
55515
55538
|
class cell_function_1(String, AllowedValuesMixin):
|
|
55516
55539
|
version: str
|
|
55517
55540
|
fluent_name: str
|
|
@@ -55990,14 +56013,14 @@ class scene(NamedObject[scene_child]):
|
|
|
55990
56013
|
"""
|
|
55991
56014
|
def make_a_copy(self, from_: str, to: str):
|
|
55992
56015
|
"""
|
|
55993
|
-
|
|
56016
|
+
Copy graphics object.
|
|
55994
56017
|
|
|
55995
56018
|
Parameters
|
|
55996
56019
|
----------
|
|
55997
56020
|
from_ : str
|
|
55998
|
-
Select
|
|
56021
|
+
Select object name to copy.
|
|
55999
56022
|
to : str
|
|
56000
|
-
|
|
56023
|
+
Select object name for copied object.
|
|
56001
56024
|
"""
|
|
56002
56025
|
def display(self, object_name: str):
|
|
56003
56026
|
"""
|
|
@@ -56008,17 +56031,6 @@ class scene(NamedObject[scene_child]):
|
|
|
56008
56031
|
object_name : str
|
|
56009
56032
|
'object_name' child.
|
|
56010
56033
|
"""
|
|
56011
|
-
def copy(self, from_name: str, new_name: str):
|
|
56012
|
-
"""
|
|
56013
|
-
Copy graphics object.
|
|
56014
|
-
|
|
56015
|
-
Parameters
|
|
56016
|
-
----------
|
|
56017
|
-
from_name : str
|
|
56018
|
-
'from_name' child.
|
|
56019
|
-
new_name : str
|
|
56020
|
-
'new_name' child.
|
|
56021
|
-
"""
|
|
56022
56034
|
def add_to_graphics(self, object_name: str):
|
|
56023
56035
|
"""
|
|
56024
56036
|
Add graphics object to existing graphics.
|
|
@@ -56038,6 +56050,7 @@ class scene(NamedObject[scene_child]):
|
|
|
56038
56050
|
'object_name' child.
|
|
56039
56051
|
"""
|
|
56040
56052
|
child_object_type: scene_child
|
|
56053
|
+
_child_aliases: dict
|
|
56041
56054
|
class start_frame(Integer):
|
|
56042
56055
|
version: str
|
|
56043
56056
|
fluent_name: str
|
|
@@ -57417,7 +57430,7 @@ class surface_integrals(Group):
|
|
|
57417
57430
|
Parameters
|
|
57418
57431
|
----------
|
|
57419
57432
|
surface_names : List
|
|
57420
|
-
|
|
57433
|
+
Specify the surfaces.
|
|
57421
57434
|
geometry_names : List
|
|
57422
57435
|
Select UTL Geometry.
|
|
57423
57436
|
cust_vec_func : str
|
|
@@ -57440,7 +57453,7 @@ class surface_integrals(Group):
|
|
|
57440
57453
|
Parameters
|
|
57441
57454
|
----------
|
|
57442
57455
|
surface_names : List
|
|
57443
|
-
|
|
57456
|
+
Specify the surfaces.
|
|
57444
57457
|
geometry_names : List
|
|
57445
57458
|
Select UTL Geometry.
|
|
57446
57459
|
cust_vec_func : str
|
|
@@ -57463,7 +57476,7 @@ class surface_integrals(Group):
|
|
|
57463
57476
|
Parameters
|
|
57464
57477
|
----------
|
|
57465
57478
|
surface_names : List
|
|
57466
|
-
|
|
57479
|
+
Specify the surfaces.
|
|
57467
57480
|
geometry_names : List
|
|
57468
57481
|
Select UTL Geometry.
|
|
57469
57482
|
cust_vec_func : str
|
|
@@ -57486,7 +57499,7 @@ class surface_integrals(Group):
|
|
|
57486
57499
|
Parameters
|
|
57487
57500
|
----------
|
|
57488
57501
|
surface_names : List
|
|
57489
|
-
|
|
57502
|
+
Specify the surfaces.
|
|
57490
57503
|
geometry_names : List
|
|
57491
57504
|
Select UTL Geometry.
|
|
57492
57505
|
cust_vec_func : str
|
|
@@ -57509,7 +57522,7 @@ class surface_integrals(Group):
|
|
|
57509
57522
|
Parameters
|
|
57510
57523
|
----------
|
|
57511
57524
|
surface_names : List
|
|
57512
|
-
|
|
57525
|
+
Specify the surfaces.
|
|
57513
57526
|
geometry_names : List
|
|
57514
57527
|
Select UTL Geometry.
|
|
57515
57528
|
cust_vec_func : str
|
|
@@ -57532,7 +57545,7 @@ class surface_integrals(Group):
|
|
|
57532
57545
|
Parameters
|
|
57533
57546
|
----------
|
|
57534
57547
|
surface_names : List
|
|
57535
|
-
|
|
57548
|
+
Specify the surfaces.
|
|
57536
57549
|
geometry_names : List
|
|
57537
57550
|
Select UTL Geometry.
|
|
57538
57551
|
cust_vec_func : str
|
|
@@ -57555,7 +57568,7 @@ class surface_integrals(Group):
|
|
|
57555
57568
|
Parameters
|
|
57556
57569
|
----------
|
|
57557
57570
|
surface_names : List
|
|
57558
|
-
|
|
57571
|
+
Specify the surfaces.
|
|
57559
57572
|
geometry_names : List
|
|
57560
57573
|
Select UTL Geometry.
|
|
57561
57574
|
cust_vec_func : str
|
|
@@ -57578,7 +57591,7 @@ class surface_integrals(Group):
|
|
|
57578
57591
|
Parameters
|
|
57579
57592
|
----------
|
|
57580
57593
|
surface_names : List
|
|
57581
|
-
|
|
57594
|
+
Specify the surfaces.
|
|
57582
57595
|
geometry_names : List
|
|
57583
57596
|
Select UTL Geometry.
|
|
57584
57597
|
cust_vec_func : str
|
|
@@ -57601,7 +57614,7 @@ class surface_integrals(Group):
|
|
|
57601
57614
|
Parameters
|
|
57602
57615
|
----------
|
|
57603
57616
|
surface_names : List
|
|
57604
|
-
|
|
57617
|
+
Specify the surfaces.
|
|
57605
57618
|
geometry_names : List
|
|
57606
57619
|
Select UTL Geometry.
|
|
57607
57620
|
cust_vec_func : str
|
|
@@ -57624,7 +57637,7 @@ class surface_integrals(Group):
|
|
|
57624
57637
|
Parameters
|
|
57625
57638
|
----------
|
|
57626
57639
|
surface_names : List
|
|
57627
|
-
|
|
57640
|
+
Specify the surfaces.
|
|
57628
57641
|
geometry_names : List
|
|
57629
57642
|
Select UTL Geometry.
|
|
57630
57643
|
cust_vec_func : str
|
|
@@ -57647,7 +57660,7 @@ class surface_integrals(Group):
|
|
|
57647
57660
|
Parameters
|
|
57648
57661
|
----------
|
|
57649
57662
|
surface_names : List
|
|
57650
|
-
|
|
57663
|
+
Specify the surfaces.
|
|
57651
57664
|
geometry_names : List
|
|
57652
57665
|
Select UTL Geometry.
|
|
57653
57666
|
cust_vec_func : str
|
|
@@ -57670,7 +57683,7 @@ class surface_integrals(Group):
|
|
|
57670
57683
|
Parameters
|
|
57671
57684
|
----------
|
|
57672
57685
|
surface_names : List
|
|
57673
|
-
|
|
57686
|
+
Specify the surfaces.
|
|
57674
57687
|
geometry_names : List
|
|
57675
57688
|
Select UTL Geometry.
|
|
57676
57689
|
cust_vec_func : str
|
|
@@ -57693,7 +57706,7 @@ class surface_integrals(Group):
|
|
|
57693
57706
|
Parameters
|
|
57694
57707
|
----------
|
|
57695
57708
|
surface_names : List
|
|
57696
|
-
|
|
57709
|
+
Specify the surfaces.
|
|
57697
57710
|
geometry_names : List
|
|
57698
57711
|
Select UTL Geometry.
|
|
57699
57712
|
cust_vec_func : str
|
|
@@ -57716,7 +57729,7 @@ class surface_integrals(Group):
|
|
|
57716
57729
|
Parameters
|
|
57717
57730
|
----------
|
|
57718
57731
|
surface_names : List
|
|
57719
|
-
|
|
57732
|
+
Specify the surfaces.
|
|
57720
57733
|
geometry_names : List
|
|
57721
57734
|
Select UTL Geometry.
|
|
57722
57735
|
cust_vec_func : str
|
|
@@ -57739,7 +57752,7 @@ class surface_integrals(Group):
|
|
|
57739
57752
|
Parameters
|
|
57740
57753
|
----------
|
|
57741
57754
|
surface_names : List
|
|
57742
|
-
|
|
57755
|
+
Specify the surfaces.
|
|
57743
57756
|
geometry_names : List
|
|
57744
57757
|
Select UTL Geometry.
|
|
57745
57758
|
cust_vec_func : str
|
|
@@ -57762,7 +57775,7 @@ class surface_integrals(Group):
|
|
|
57762
57775
|
Parameters
|
|
57763
57776
|
----------
|
|
57764
57777
|
surface_names : List
|
|
57765
|
-
|
|
57778
|
+
Specify the surfaces.
|
|
57766
57779
|
geometry_names : List
|
|
57767
57780
|
Select UTL Geometry.
|
|
57768
57781
|
cust_vec_func : str
|
|
@@ -57785,7 +57798,7 @@ class surface_integrals(Group):
|
|
|
57785
57798
|
Parameters
|
|
57786
57799
|
----------
|
|
57787
57800
|
surface_names : List
|
|
57788
|
-
|
|
57801
|
+
Specify the surfaces.
|
|
57789
57802
|
geometry_names : List
|
|
57790
57803
|
Select UTL Geometry.
|
|
57791
57804
|
cust_vec_func : str
|
|
@@ -57808,7 +57821,7 @@ class surface_integrals(Group):
|
|
|
57808
57821
|
Parameters
|
|
57809
57822
|
----------
|
|
57810
57823
|
surface_names : List
|
|
57811
|
-
|
|
57824
|
+
Specify the surfaces.
|
|
57812
57825
|
geometry_names : List
|
|
57813
57826
|
Select UTL Geometry.
|
|
57814
57827
|
cust_vec_func : str
|
|
@@ -57831,7 +57844,7 @@ class surface_integrals(Group):
|
|
|
57831
57844
|
Parameters
|
|
57832
57845
|
----------
|
|
57833
57846
|
surface_names : List
|
|
57834
|
-
|
|
57847
|
+
Specify the surfaces.
|
|
57835
57848
|
geometry_names : List
|
|
57836
57849
|
Select UTL Geometry.
|
|
57837
57850
|
cust_vec_func : str
|
|
@@ -57854,7 +57867,7 @@ class surface_integrals(Group):
|
|
|
57854
57867
|
Parameters
|
|
57855
57868
|
----------
|
|
57856
57869
|
surface_names : List
|
|
57857
|
-
|
|
57870
|
+
Specify the surfaces.
|
|
57858
57871
|
geometry_names : List
|
|
57859
57872
|
Select UTL Geometry.
|
|
57860
57873
|
cust_vec_func : str
|
|
@@ -57877,7 +57890,7 @@ class surface_integrals(Group):
|
|
|
57877
57890
|
Parameters
|
|
57878
57891
|
----------
|
|
57879
57892
|
surface_names : List
|
|
57880
|
-
|
|
57893
|
+
Specify the surfaces.
|
|
57881
57894
|
geometry_names : List
|
|
57882
57895
|
Select UTL Geometry.
|
|
57883
57896
|
cust_vec_func : str
|
|
@@ -57894,7 +57907,7 @@ class surface_integrals(Group):
|
|
|
57894
57907
|
Parameters
|
|
57895
57908
|
----------
|
|
57896
57909
|
surface_names : List
|
|
57897
|
-
|
|
57910
|
+
Specify the surfaces.
|
|
57898
57911
|
geometry_names : List
|
|
57899
57912
|
Select UTL Geometry.
|
|
57900
57913
|
cust_vec_func : str
|
|
@@ -57911,7 +57924,7 @@ class surface_integrals(Group):
|
|
|
57911
57924
|
Parameters
|
|
57912
57925
|
----------
|
|
57913
57926
|
surface_names : List
|
|
57914
|
-
|
|
57927
|
+
Specify the surfaces.
|
|
57915
57928
|
geometry_names : List
|
|
57916
57929
|
Select UTL Geometry.
|
|
57917
57930
|
cust_vec_func : str
|
|
@@ -57928,7 +57941,7 @@ class surface_integrals(Group):
|
|
|
57928
57941
|
Parameters
|
|
57929
57942
|
----------
|
|
57930
57943
|
surface_names : List
|
|
57931
|
-
|
|
57944
|
+
Specify the surfaces.
|
|
57932
57945
|
geometry_names : List
|
|
57933
57946
|
Select UTL Geometry.
|
|
57934
57947
|
cust_vec_func : str
|
|
@@ -57945,7 +57958,7 @@ class surface_integrals(Group):
|
|
|
57945
57958
|
Parameters
|
|
57946
57959
|
----------
|
|
57947
57960
|
surface_names : List
|
|
57948
|
-
|
|
57961
|
+
Specify the surfaces.
|
|
57949
57962
|
geometry_names : List
|
|
57950
57963
|
Select UTL Geometry.
|
|
57951
57964
|
cust_vec_func : str
|
|
@@ -57962,7 +57975,7 @@ class surface_integrals(Group):
|
|
|
57962
57975
|
Parameters
|
|
57963
57976
|
----------
|
|
57964
57977
|
surface_names : List
|
|
57965
|
-
|
|
57978
|
+
Specify the surfaces.
|
|
57966
57979
|
geometry_names : List
|
|
57967
57980
|
Select UTL Geometry.
|
|
57968
57981
|
cust_vec_func : str
|
|
@@ -57979,7 +57992,7 @@ class surface_integrals(Group):
|
|
|
57979
57992
|
Parameters
|
|
57980
57993
|
----------
|
|
57981
57994
|
surface_names : List
|
|
57982
|
-
|
|
57995
|
+
Specify the surfaces.
|
|
57983
57996
|
geometry_names : List
|
|
57984
57997
|
Select UTL Geometry.
|
|
57985
57998
|
cust_vec_func : str
|
|
@@ -57996,7 +58009,7 @@ class surface_integrals(Group):
|
|
|
57996
58009
|
Parameters
|
|
57997
58010
|
----------
|
|
57998
58011
|
surface_names : List
|
|
57999
|
-
|
|
58012
|
+
Specify the surfaces.
|
|
58000
58013
|
geometry_names : List
|
|
58001
58014
|
Select UTL Geometry.
|
|
58002
58015
|
cust_vec_func : str
|
|
@@ -58013,7 +58026,7 @@ class surface_integrals(Group):
|
|
|
58013
58026
|
Parameters
|
|
58014
58027
|
----------
|
|
58015
58028
|
surface_names : List
|
|
58016
|
-
|
|
58029
|
+
Specify the surfaces.
|
|
58017
58030
|
geometry_names : List
|
|
58018
58031
|
Select UTL Geometry.
|
|
58019
58032
|
cust_vec_func : str
|
|
@@ -58030,7 +58043,7 @@ class surface_integrals(Group):
|
|
|
58030
58043
|
Parameters
|
|
58031
58044
|
----------
|
|
58032
58045
|
surface_names : List
|
|
58033
|
-
|
|
58046
|
+
Specify the surfaces.
|
|
58034
58047
|
geometry_names : List
|
|
58035
58048
|
Select UTL Geometry.
|
|
58036
58049
|
cust_vec_func : str
|
|
@@ -58047,7 +58060,7 @@ class surface_integrals(Group):
|
|
|
58047
58060
|
Parameters
|
|
58048
58061
|
----------
|
|
58049
58062
|
surface_names : List
|
|
58050
|
-
|
|
58063
|
+
Specify the surfaces.
|
|
58051
58064
|
geometry_names : List
|
|
58052
58065
|
Select UTL Geometry.
|
|
58053
58066
|
cust_vec_func : str
|
|
@@ -58064,7 +58077,7 @@ class surface_integrals(Group):
|
|
|
58064
58077
|
Parameters
|
|
58065
58078
|
----------
|
|
58066
58079
|
surface_names : List
|
|
58067
|
-
|
|
58080
|
+
Specify the surfaces.
|
|
58068
58081
|
geometry_names : List
|
|
58069
58082
|
Select UTL Geometry.
|
|
58070
58083
|
cust_vec_func : str
|
|
@@ -58081,7 +58094,7 @@ class surface_integrals(Group):
|
|
|
58081
58094
|
Parameters
|
|
58082
58095
|
----------
|
|
58083
58096
|
surface_names : List
|
|
58084
|
-
|
|
58097
|
+
Specify the surfaces.
|
|
58085
58098
|
geometry_names : List
|
|
58086
58099
|
Select UTL Geometry.
|
|
58087
58100
|
cust_vec_func : str
|
|
@@ -58098,7 +58111,7 @@ class surface_integrals(Group):
|
|
|
58098
58111
|
Parameters
|
|
58099
58112
|
----------
|
|
58100
58113
|
surface_names : List
|
|
58101
|
-
|
|
58114
|
+
Specify the surfaces.
|
|
58102
58115
|
geometry_names : List
|
|
58103
58116
|
Select UTL Geometry.
|
|
58104
58117
|
cust_vec_func : str
|
|
@@ -58115,7 +58128,7 @@ class surface_integrals(Group):
|
|
|
58115
58128
|
Parameters
|
|
58116
58129
|
----------
|
|
58117
58130
|
surface_names : List
|
|
58118
|
-
|
|
58131
|
+
Specify the surfaces.
|
|
58119
58132
|
geometry_names : List
|
|
58120
58133
|
Select UTL Geometry.
|
|
58121
58134
|
cust_vec_func : str
|
|
@@ -58132,7 +58145,7 @@ class surface_integrals(Group):
|
|
|
58132
58145
|
Parameters
|
|
58133
58146
|
----------
|
|
58134
58147
|
surface_names : List
|
|
58135
|
-
|
|
58148
|
+
Specify the surfaces.
|
|
58136
58149
|
geometry_names : List
|
|
58137
58150
|
Select UTL Geometry.
|
|
58138
58151
|
cust_vec_func : str
|
|
@@ -58149,7 +58162,7 @@ class surface_integrals(Group):
|
|
|
58149
58162
|
Parameters
|
|
58150
58163
|
----------
|
|
58151
58164
|
surface_names : List
|
|
58152
|
-
|
|
58165
|
+
Specify the surfaces.
|
|
58153
58166
|
geometry_names : List
|
|
58154
58167
|
Select UTL Geometry.
|
|
58155
58168
|
cust_vec_func : str
|
|
@@ -58166,7 +58179,7 @@ class surface_integrals(Group):
|
|
|
58166
58179
|
Parameters
|
|
58167
58180
|
----------
|
|
58168
58181
|
surface_names : List
|
|
58169
|
-
|
|
58182
|
+
Specify the surfaces.
|
|
58170
58183
|
geometry_names : List
|
|
58171
58184
|
Select UTL Geometry.
|
|
58172
58185
|
cust_vec_func : str
|
|
@@ -58183,7 +58196,7 @@ class surface_integrals(Group):
|
|
|
58183
58196
|
Parameters
|
|
58184
58197
|
----------
|
|
58185
58198
|
surface_names : List
|
|
58186
|
-
|
|
58199
|
+
Specify the surfaces.
|
|
58187
58200
|
geometry_names : List
|
|
58188
58201
|
Select UTL Geometry.
|
|
58189
58202
|
cust_vec_func : str
|
|
@@ -58200,7 +58213,7 @@ class surface_integrals(Group):
|
|
|
58200
58213
|
Parameters
|
|
58201
58214
|
----------
|
|
58202
58215
|
surface_names : List
|
|
58203
|
-
|
|
58216
|
+
Specify the surfaces.
|
|
58204
58217
|
geometry_names : List
|
|
58205
58218
|
Select UTL Geometry.
|
|
58206
58219
|
cust_vec_func : str
|
|
@@ -59626,7 +59639,7 @@ class file_name_17(String):
|
|
|
59626
59639
|
version: str
|
|
59627
59640
|
fluent_name: str
|
|
59628
59641
|
_python_name: str
|
|
59629
|
-
class
|
|
59642
|
+
class frequency_6(Integer):
|
|
59630
59643
|
version: str
|
|
59631
59644
|
fluent_name: str
|
|
59632
59645
|
_python_name: str
|
|
@@ -59640,7 +59653,7 @@ class autosave(Group):
|
|
|
59640
59653
|
_python_name: str
|
|
59641
59654
|
child_names: list[str]
|
|
59642
59655
|
file_name: file_name_17
|
|
59643
|
-
frequency:
|
|
59656
|
+
frequency: frequency_6
|
|
59644
59657
|
max_files: max_files_1
|
|
59645
59658
|
class calculation_activities(Group):
|
|
59646
59659
|
version: str
|
|
@@ -59665,6 +59678,10 @@ class calculation(Group):
|
|
|
59665
59678
|
"""
|
|
59666
59679
|
Start evaluating the adjoint solution.
|
|
59667
59680
|
"""
|
|
59681
|
+
def interrupt(self):
|
|
59682
|
+
"""
|
|
59683
|
+
Interrupt the adjoint calculation.
|
|
59684
|
+
"""
|
|
59668
59685
|
class sensitivity_orientation(String, AllowedValuesMixin):
|
|
59669
59686
|
version: str
|
|
59670
59687
|
fluent_name: str
|
|
@@ -61220,7 +61237,7 @@ class method_19(String, AllowedValuesMixin):
|
|
|
61220
61237
|
version: str
|
|
61221
61238
|
fluent_name: str
|
|
61222
61239
|
_python_name: str
|
|
61223
|
-
class
|
|
61240
|
+
class frequency_7(Integer):
|
|
61224
61241
|
version: str
|
|
61225
61242
|
fluent_name: str
|
|
61226
61243
|
_python_name: str
|
|
@@ -61234,7 +61251,7 @@ class evaluation(Group):
|
|
|
61234
61251
|
_python_name: str
|
|
61235
61252
|
child_names: list[str]
|
|
61236
61253
|
method: method_19
|
|
61237
|
-
frequency:
|
|
61254
|
+
frequency: frequency_7
|
|
61238
61255
|
sampling_after: sampling_after
|
|
61239
61256
|
class observables_1(Group):
|
|
61240
61257
|
version: str
|
|
@@ -61893,7 +61910,7 @@ class monitor_3(Group):
|
|
|
61893
61910
|
"""
|
|
61894
61911
|
Initialize gradient-based optimizer.
|
|
61895
61912
|
"""
|
|
61896
|
-
class
|
|
61913
|
+
class frequency_8(Integer):
|
|
61897
61914
|
version: str
|
|
61898
61915
|
fluent_name: str
|
|
61899
61916
|
_python_name: str
|
|
@@ -61906,13 +61923,13 @@ class save_files(Group):
|
|
|
61906
61923
|
fluent_name: str
|
|
61907
61924
|
_python_name: str
|
|
61908
61925
|
child_names: list[str]
|
|
61909
|
-
frequency:
|
|
61926
|
+
frequency: frequency_8
|
|
61910
61927
|
maximum: maximum_8
|
|
61911
61928
|
class save_optimal(Boolean):
|
|
61912
61929
|
version: str
|
|
61913
61930
|
fluent_name: str
|
|
61914
61931
|
_python_name: str
|
|
61915
|
-
class
|
|
61932
|
+
class frequency_9(Integer):
|
|
61916
61933
|
version: str
|
|
61917
61934
|
fluent_name: str
|
|
61918
61935
|
_python_name: str
|
|
@@ -61921,7 +61938,7 @@ class export_stl_1(Group):
|
|
|
61921
61938
|
fluent_name: str
|
|
61922
61939
|
_python_name: str
|
|
61923
61940
|
child_names: list[str]
|
|
61924
|
-
frequency:
|
|
61941
|
+
frequency: frequency_9
|
|
61925
61942
|
surfaces: surfaces_19
|
|
61926
61943
|
class autosave_1(Group):
|
|
61927
61944
|
version: str
|
|
@@ -61975,6 +61992,15 @@ class optimizer(Group):
|
|
|
61975
61992
|
disable_settings_validation : bool
|
|
61976
61993
|
Ignore warnings and proceed with optimization.
|
|
61977
61994
|
"""
|
|
61995
|
+
def interrupt(self, interrupt_at: str):
|
|
61996
|
+
"""
|
|
61997
|
+
Interrupt optimization process.
|
|
61998
|
+
|
|
61999
|
+
Parameters
|
|
62000
|
+
----------
|
|
62001
|
+
interrupt_at : str
|
|
62002
|
+
Select when should the solution be interrupted.
|
|
62003
|
+
"""
|
|
61978
62004
|
def summarize(self):
|
|
61979
62005
|
"""
|
|
61980
62006
|
Summarize results from gradient-based optimizer.
|
|
@@ -63417,7 +63443,7 @@ class interval_1(Real):
|
|
|
63417
63443
|
version: str
|
|
63418
63444
|
fluent_name: str
|
|
63419
63445
|
_python_name: str
|
|
63420
|
-
class
|
|
63446
|
+
class frequency_10(Integer):
|
|
63421
63447
|
version: str
|
|
63422
63448
|
fluent_name: str
|
|
63423
63449
|
_python_name: str
|
|
@@ -63433,7 +63459,7 @@ class single_session_coupling(Group):
|
|
|
63433
63459
|
method: method_23
|
|
63434
63460
|
type: type_2
|
|
63435
63461
|
interval: interval_1
|
|
63436
|
-
frequency:
|
|
63462
|
+
frequency: frequency_10
|
|
63437
63463
|
iteration: iteration
|
|
63438
63464
|
class two_session_coupling(Group):
|
|
63439
63465
|
version: str
|
|
@@ -63442,7 +63468,7 @@ class two_session_coupling(Group):
|
|
|
63442
63468
|
child_names: list[str]
|
|
63443
63469
|
method: method_23
|
|
63444
63470
|
type: type_2
|
|
63445
|
-
frequency:
|
|
63471
|
+
frequency: frequency_10
|
|
63446
63472
|
class coupling(Group):
|
|
63447
63473
|
version: str
|
|
63448
63474
|
fluent_name: str
|