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
|
@@ -1342,7 +1342,7 @@ class file_name_1_1(Filename, _InputFile):
|
|
|
1342
1342
|
"""
|
|
1343
1343
|
version = '242'
|
|
1344
1344
|
fluent_name = 'file-name'
|
|
1345
|
-
_python_name = '
|
|
1345
|
+
_python_name = 'file_name'
|
|
1346
1346
|
|
|
1347
1347
|
class read_1(Command):
|
|
1348
1348
|
"""
|
|
@@ -1395,7 +1395,7 @@ class file_name_1_2(Filename, _InputFile):
|
|
|
1395
1395
|
"""
|
|
1396
1396
|
version = '242'
|
|
1397
1397
|
fluent_name = 'file-name'
|
|
1398
|
-
_python_name = '
|
|
1398
|
+
_python_name = 'file_name'
|
|
1399
1399
|
|
|
1400
1400
|
class import_fmu(Command):
|
|
1401
1401
|
"""
|
|
@@ -1461,7 +1461,7 @@ class project_filename_1(Filename, _InputFile):
|
|
|
1461
1461
|
"""
|
|
1462
1462
|
version = '242'
|
|
1463
1463
|
fluent_name = 'project-filename'
|
|
1464
|
-
_python_name = '
|
|
1464
|
+
_python_name = 'project_filename'
|
|
1465
1465
|
|
|
1466
1466
|
class load_case(Boolean):
|
|
1467
1467
|
"""
|
|
@@ -1727,7 +1727,7 @@ class file_name_1_3(Filename, _InputFile):
|
|
|
1727
1727
|
"""
|
|
1728
1728
|
version = '242'
|
|
1729
1729
|
fluent_name = 'file-name'
|
|
1730
|
-
_python_name = '
|
|
1730
|
+
_python_name = 'file_name'
|
|
1731
1731
|
|
|
1732
1732
|
class read_macros(Command):
|
|
1733
1733
|
"""
|
|
@@ -5708,7 +5708,7 @@ class version_1(String, AllowedValuesMixin):
|
|
|
5708
5708
|
"""
|
|
5709
5709
|
version = '242'
|
|
5710
5710
|
fluent_name = 'version'
|
|
5711
|
-
_python_name = '
|
|
5711
|
+
_python_name = 'version'
|
|
5712
5712
|
|
|
5713
5713
|
class cjet(Real):
|
|
5714
5714
|
"""
|
|
@@ -7431,7 +7431,7 @@ class file_name_1_4(Filename, _InputFile):
|
|
|
7431
7431
|
"""
|
|
7432
7432
|
version = '242'
|
|
7433
7433
|
fluent_name = 'file-name'
|
|
7434
|
-
_python_name = '
|
|
7434
|
+
_python_name = 'file_name'
|
|
7435
7435
|
|
|
7436
7436
|
class read_vf_file(Command):
|
|
7437
7437
|
"""
|
|
@@ -9078,7 +9078,7 @@ class interaction(Group):
|
|
|
9078
9078
|
update_sources_every_iteration=update_sources_every_iteration,
|
|
9079
9079
|
)
|
|
9080
9080
|
_child_aliases = dict(
|
|
9081
|
-
option='enabled',
|
|
9081
|
+
option=('enabled', 'option'),
|
|
9082
9082
|
)
|
|
9083
9083
|
|
|
9084
9084
|
class enabled_3(Boolean):
|
|
@@ -9147,7 +9147,7 @@ class unsteady_tracking(Group):
|
|
|
9147
9147
|
clear_all_particles=clear_all_particles,
|
|
9148
9148
|
)
|
|
9149
9149
|
_child_aliases = dict(
|
|
9150
|
-
create_particles_every_dpm_step='create_particles_at',
|
|
9150
|
+
create_particles_every_dpm_step=('create_particles_at', 'create-particles-every-dpm-step?'),
|
|
9151
9151
|
)
|
|
9152
9152
|
|
|
9153
9153
|
class contour_plotting(String, AllowedValuesMixin):
|
|
@@ -9186,7 +9186,7 @@ class pressure_gradient_force(Group):
|
|
|
9186
9186
|
fluent_name = 'pressure-gradient-force'
|
|
9187
9187
|
_python_name = 'pressure_gradient_force'
|
|
9188
9188
|
_child_aliases = dict(
|
|
9189
|
-
enabled='../pressure_force_enabled',
|
|
9189
|
+
enabled=('../pressure_force_enabled', 'enabled?'),
|
|
9190
9190
|
)
|
|
9191
9191
|
|
|
9192
9192
|
class saffman_lift_force_enabled(Boolean):
|
|
@@ -9591,8 +9591,8 @@ class tracking(Group):
|
|
|
9591
9591
|
expert=expert_1,
|
|
9592
9592
|
)
|
|
9593
9593
|
_child_aliases = dict(
|
|
9594
|
-
high_res_tracking='../numerics/high_res_tracking',
|
|
9595
|
-
track_in_absolute_frame_enabled='expert/reference_frame',
|
|
9594
|
+
high_res_tracking=('../numerics/high_res_tracking', 'high-res-tracking'),
|
|
9595
|
+
track_in_absolute_frame_enabled=('expert/reference_frame', 'track-in-absolute-frame-enabled?'),
|
|
9596
9596
|
)
|
|
9597
9597
|
|
|
9598
9598
|
class enabled_8(Boolean):
|
|
@@ -9681,7 +9681,7 @@ class tracking_1(Group):
|
|
|
9681
9681
|
high_order_scheme=high_order_scheme,
|
|
9682
9682
|
)
|
|
9683
9683
|
_child_aliases = dict(
|
|
9684
|
-
scheme='option',
|
|
9684
|
+
scheme=('option', 'scheme'),
|
|
9685
9685
|
)
|
|
9686
9686
|
|
|
9687
9687
|
class enabled_9(Boolean):
|
|
@@ -9732,8 +9732,8 @@ class linearization(Group):
|
|
|
9732
9732
|
limiter=limiter,
|
|
9733
9733
|
)
|
|
9734
9734
|
_child_aliases = dict(
|
|
9735
|
-
constant_during_flow_iterations='constant_during_iterations',
|
|
9736
|
-
enhanced_form_enabled='enhanced_formulation_enabled',
|
|
9735
|
+
constant_during_flow_iterations=('constant_during_iterations', 'constant-during-flow-iterations?'),
|
|
9736
|
+
enhanced_form_enabled=('enhanced_formulation_enabled', 'enhanced-form-enabled?'),
|
|
9737
9737
|
)
|
|
9738
9738
|
|
|
9739
9739
|
class impl_mom_cplg_enabled(Boolean):
|
|
@@ -9871,7 +9871,7 @@ class node_based_averaging(Group):
|
|
|
9871
9871
|
kernel=kernel,
|
|
9872
9872
|
)
|
|
9873
9873
|
_child_aliases = dict(
|
|
9874
|
-
node_avg_enabled='enabled',
|
|
9874
|
+
node_avg_enabled=('enabled', 'node-avg-enabled?'),
|
|
9875
9875
|
)
|
|
9876
9876
|
|
|
9877
9877
|
class dynamic_interaction_range_enabled(Boolean):
|
|
@@ -10153,8 +10153,8 @@ class numerics(Group):
|
|
|
10153
10153
|
high_res_tracking=high_res_tracking,
|
|
10154
10154
|
)
|
|
10155
10155
|
_child_aliases = dict(
|
|
10156
|
-
averaging='node_based_averaging',
|
|
10157
|
-
source_terms='source_term_settings',
|
|
10156
|
+
averaging=('node_based_averaging', 'averaging'),
|
|
10157
|
+
source_terms=('source_term_settings', 'source-terms'),
|
|
10158
10158
|
)
|
|
10159
10159
|
|
|
10160
10160
|
class option_9(String, AllowedValuesMixin):
|
|
@@ -10390,7 +10390,7 @@ class user_defined_functions(Group):
|
|
|
10390
10390
|
max_num_udf_species=max_num_udf_species,
|
|
10391
10391
|
)
|
|
10392
10392
|
_child_aliases = dict(
|
|
10393
|
-
num_scalars='number_of_scalars',
|
|
10393
|
+
num_scalars=('number_of_scalars', 'num-scalars'),
|
|
10394
10394
|
)
|
|
10395
10395
|
|
|
10396
10396
|
class particle_type(String, AllowedValuesMixin):
|
|
@@ -10447,7 +10447,7 @@ class filename_1_1(Filename, AllowedValuesMixin):
|
|
|
10447
10447
|
"""
|
|
10448
10448
|
version = '242'
|
|
10449
10449
|
fluent_name = 'filename'
|
|
10450
|
-
_python_name = '
|
|
10450
|
+
_python_name = 'filename'
|
|
10451
10451
|
|
|
10452
10452
|
class injection_type(Group):
|
|
10453
10453
|
"""
|
|
@@ -10691,7 +10691,7 @@ class location_1(Group):
|
|
|
10691
10691
|
azimuthal_stop_angle=azimuthal_stop_angle,
|
|
10692
10692
|
)
|
|
10693
10693
|
_child_aliases = dict(
|
|
10694
|
-
random_surface_inj='randomized_positions_enabled',
|
|
10694
|
+
random_surface_inj=('randomized_positions_enabled', 'random-surface-inj?'),
|
|
10695
10695
|
)
|
|
10696
10696
|
|
|
10697
10697
|
class scale_by_area(Boolean, AllowedValuesMixin):
|
|
@@ -11752,7 +11752,7 @@ class physical_models_1(Group):
|
|
|
11752
11752
|
custom_laws=custom_laws,
|
|
11753
11753
|
)
|
|
11754
11754
|
_child_aliases = dict(
|
|
11755
|
-
rough_wall_model_enabled='rough_wall_treatment_enabled',
|
|
11755
|
+
rough_wall_model_enabled=('rough_wall_treatment_enabled', 'rough-wall-model-enabled?'),
|
|
11756
11756
|
)
|
|
11757
11757
|
|
|
11758
11758
|
class const_number_in_parcel(Real, AllowedValuesMixin):
|
|
@@ -11814,8 +11814,8 @@ class injections_child(Group):
|
|
|
11814
11814
|
parcel_method=parcel_method,
|
|
11815
11815
|
)
|
|
11816
11816
|
_child_aliases = dict(
|
|
11817
|
-
number_of_streams='initial_values/location/number_of_streams',
|
|
11818
|
-
reference_frame='initial_values/reference_frame',
|
|
11817
|
+
number_of_streams=('initial_values/location/number_of_streams', 'number-of-streams'),
|
|
11818
|
+
reference_frame=('initial_values/reference_frame', 'reference-frame'),
|
|
11819
11819
|
)
|
|
11820
11820
|
|
|
11821
11821
|
class injections(NamedObject[injections_child], CreatableNamedObjectMixinOld[injections_child]):
|
|
@@ -11853,7 +11853,7 @@ class discrete_phase(Group):
|
|
|
11853
11853
|
injections=injections,
|
|
11854
11854
|
)
|
|
11855
11855
|
_child_aliases = dict(
|
|
11856
|
-
user_functions='user_defined_functions',
|
|
11856
|
+
user_functions=('user_defined_functions', 'user-functions'),
|
|
11857
11857
|
)
|
|
11858
11858
|
|
|
11859
11859
|
class enable_8(Boolean):
|
|
@@ -14890,7 +14890,7 @@ class file_name_1_5(Filename, _InputFile):
|
|
|
14890
14890
|
"""
|
|
14891
14891
|
version = '242'
|
|
14892
14892
|
fluent_name = 'file-name'
|
|
14893
|
-
_python_name = '
|
|
14893
|
+
_python_name = 'file_name'
|
|
14894
14894
|
|
|
14895
14895
|
class read_table(Command):
|
|
14896
14896
|
"""
|
|
@@ -15000,7 +15000,7 @@ class file_name_1_6(Filename, _InputFile):
|
|
|
15000
15000
|
"""
|
|
15001
15001
|
version = '242'
|
|
15002
15002
|
fluent_name = 'file-name'
|
|
15003
|
-
_python_name = '
|
|
15003
|
+
_python_name = 'file_name'
|
|
15004
15004
|
|
|
15005
15005
|
class read_table_1(Command):
|
|
15006
15006
|
"""
|
|
@@ -15867,7 +15867,7 @@ class file_name_1_7(Filename, _InputFile):
|
|
|
15867
15867
|
"""
|
|
15868
15868
|
version = '242'
|
|
15869
15869
|
fluent_name = 'file-name'
|
|
15870
|
-
_python_name = '
|
|
15870
|
+
_python_name = 'file_name'
|
|
15871
15871
|
|
|
15872
15872
|
class read_all_data_table(Command):
|
|
15873
15873
|
"""
|
|
@@ -19495,7 +19495,7 @@ class file_name_1_8(Filename, _InputFile):
|
|
|
19495
19495
|
"""
|
|
19496
19496
|
version = '242'
|
|
19497
19497
|
fluent_name = 'file-name'
|
|
19498
|
-
_python_name = '
|
|
19498
|
+
_python_name = 'file_name'
|
|
19499
19499
|
|
|
19500
19500
|
class stop_range_fraction(Real):
|
|
19501
19501
|
"""
|
|
@@ -19934,7 +19934,7 @@ class file_name_1_9(Filename, _InputFile):
|
|
|
19934
19934
|
"""
|
|
19935
19935
|
version = '242'
|
|
19936
19936
|
fluent_name = 'file-name'
|
|
19937
|
-
_python_name = '
|
|
19937
|
+
_python_name = 'file_name'
|
|
19938
19938
|
|
|
19939
19939
|
class read_location_file(Command):
|
|
19940
19940
|
"""
|
|
@@ -27765,7 +27765,7 @@ class general_2(Group):
|
|
|
27765
27765
|
contact_property=contact_property,
|
|
27766
27766
|
)
|
|
27767
27767
|
_child_aliases = dict(
|
|
27768
|
-
radiating='participates_in_radiation',
|
|
27768
|
+
radiating=('participates_in_radiation', 'radiating?'),
|
|
27769
27769
|
)
|
|
27770
27770
|
|
|
27771
27771
|
class conical(Boolean):
|
|
@@ -27848,7 +27848,7 @@ class mrf_omega(Group):
|
|
|
27848
27848
|
udf=udf,
|
|
27849
27849
|
)
|
|
27850
27850
|
_child_aliases = dict(
|
|
27851
|
-
constant='value',
|
|
27851
|
+
constant=('value', 'constant'),
|
|
27852
27852
|
)
|
|
27853
27853
|
|
|
27854
27854
|
class reference_frame_velocity_child(Group):
|
|
@@ -27867,7 +27867,7 @@ class reference_frame_velocity_child(Group):
|
|
|
27867
27867
|
udf=udf,
|
|
27868
27868
|
)
|
|
27869
27869
|
_child_aliases = dict(
|
|
27870
|
-
constant='value',
|
|
27870
|
+
constant=('value', 'constant'),
|
|
27871
27871
|
)
|
|
27872
27872
|
|
|
27873
27873
|
class reference_frame_velocity(ListObject[reference_frame_velocity_child]):
|
|
@@ -27900,7 +27900,7 @@ class reference_frame_axis_origin_child(Group):
|
|
|
27900
27900
|
udf=udf,
|
|
27901
27901
|
)
|
|
27902
27902
|
_child_aliases = dict(
|
|
27903
|
-
constant='value',
|
|
27903
|
+
constant=('value', 'constant'),
|
|
27904
27904
|
)
|
|
27905
27905
|
|
|
27906
27906
|
class reference_frame_axis_origin(ListObject[reference_frame_axis_origin_child]):
|
|
@@ -27933,7 +27933,7 @@ class reference_frame_axis_direction_child(Group):
|
|
|
27933
27933
|
udf=udf,
|
|
27934
27934
|
)
|
|
27935
27935
|
_child_aliases = dict(
|
|
27936
|
-
constant='value',
|
|
27936
|
+
constant=('value', 'constant'),
|
|
27937
27937
|
)
|
|
27938
27938
|
|
|
27939
27939
|
class reference_frame_axis_direction(ListObject[reference_frame_axis_direction_child]):
|
|
@@ -27976,11 +27976,11 @@ class reference_frame_2(Group):
|
|
|
27976
27976
|
reference_frame_zone_motion_function=reference_frame_zone_motion_function,
|
|
27977
27977
|
)
|
|
27978
27978
|
_child_aliases = dict(
|
|
27979
|
-
mrf_motion='frame_motion',
|
|
27980
|
-
mrf_udf_zmotion_name='reference_frame_zone_motion_function',
|
|
27981
|
-
reference_frame_axis_direction_components='reference_frame_axis_direction',
|
|
27982
|
-
reference_frame_axis_origin_components='reference_frame_axis_origin',
|
|
27983
|
-
reference_frame_velocity_components='reference_frame_velocity',
|
|
27979
|
+
mrf_motion=('frame_motion', 'mrf-motion?'),
|
|
27980
|
+
mrf_udf_zmotion_name=('reference_frame_zone_motion_function', 'mrf-udf-zmotion-name'),
|
|
27981
|
+
reference_frame_axis_direction_components=('reference_frame_axis_direction', 'reference-frame-axis-direction-components'),
|
|
27982
|
+
reference_frame_axis_origin_components=('reference_frame_axis_origin', 'reference-frame-axis-origin-components'),
|
|
27983
|
+
reference_frame_velocity_components=('reference_frame_velocity', 'reference-frame-velocity-components'),
|
|
27984
27984
|
)
|
|
27985
27985
|
|
|
27986
27986
|
class enable_10(Boolean):
|
|
@@ -28023,7 +28023,7 @@ class mgrid_omega(Group):
|
|
|
28023
28023
|
udf=udf,
|
|
28024
28024
|
)
|
|
28025
28025
|
_child_aliases = dict(
|
|
28026
|
-
constant='value',
|
|
28026
|
+
constant=('value', 'constant'),
|
|
28027
28027
|
)
|
|
28028
28028
|
|
|
28029
28029
|
class moving_mesh_velocity_child(Group):
|
|
@@ -28042,7 +28042,7 @@ class moving_mesh_velocity_child(Group):
|
|
|
28042
28042
|
udf=udf,
|
|
28043
28043
|
)
|
|
28044
28044
|
_child_aliases = dict(
|
|
28045
|
-
constant='value',
|
|
28045
|
+
constant=('value', 'constant'),
|
|
28046
28046
|
)
|
|
28047
28047
|
|
|
28048
28048
|
class moving_mesh_velocity(ListObject[moving_mesh_velocity_child]):
|
|
@@ -28075,7 +28075,7 @@ class moving_mesh_axis_origin_child(Group):
|
|
|
28075
28075
|
udf=udf,
|
|
28076
28076
|
)
|
|
28077
28077
|
_child_aliases = dict(
|
|
28078
|
-
constant='value',
|
|
28078
|
+
constant=('value', 'constant'),
|
|
28079
28079
|
)
|
|
28080
28080
|
|
|
28081
28081
|
class moving_mesh_axis_origin(ListObject[moving_mesh_axis_origin_child]):
|
|
@@ -28108,7 +28108,7 @@ class moving_mesh_axis_direction_child(Group):
|
|
|
28108
28108
|
udf=udf,
|
|
28109
28109
|
)
|
|
28110
28110
|
_child_aliases = dict(
|
|
28111
|
-
constant='value',
|
|
28111
|
+
constant=('value', 'constant'),
|
|
28112
28112
|
)
|
|
28113
28113
|
|
|
28114
28114
|
class moving_mesh_axis_direction(ListObject[moving_mesh_axis_direction_child]):
|
|
@@ -28152,11 +28152,11 @@ class mesh_motion(Group):
|
|
|
28152
28152
|
moving_mesh_zone_motion_function=moving_mesh_zone_motion_function,
|
|
28153
28153
|
)
|
|
28154
28154
|
_child_aliases = dict(
|
|
28155
|
-
mgrid_motion='enable',
|
|
28156
|
-
mgrid_udf_zmotion_name='moving_mesh_zone_motion_function',
|
|
28157
|
-
moving_mesh_axis_direction_components='moving_mesh_axis_direction',
|
|
28158
|
-
moving_mesh_axis_origin_components='moving_mesh_axis_origin',
|
|
28159
|
-
moving_mesh_velocity_components='moving_mesh_velocity',
|
|
28155
|
+
mgrid_motion=('enable', 'mgrid-motion?'),
|
|
28156
|
+
mgrid_udf_zmotion_name=('moving_mesh_zone_motion_function', 'mgrid-udf-zmotion-name'),
|
|
28157
|
+
moving_mesh_axis_direction_components=('moving_mesh_axis_direction', 'moving-mesh-axis-direction-components'),
|
|
28158
|
+
moving_mesh_axis_origin_components=('moving_mesh_axis_origin', 'moving-mesh-axis-origin-components'),
|
|
28159
|
+
moving_mesh_velocity_components=('moving_mesh_velocity', 'moving-mesh-velocity-components'),
|
|
28160
28160
|
)
|
|
28161
28161
|
|
|
28162
28162
|
class zonal_models_1(Boolean):
|
|
@@ -28237,7 +28237,7 @@ class direction_1_vector_child(Group):
|
|
|
28237
28237
|
udf=udf,
|
|
28238
28238
|
)
|
|
28239
28239
|
_child_aliases = dict(
|
|
28240
|
-
constant='value',
|
|
28240
|
+
constant=('value', 'constant'),
|
|
28241
28241
|
)
|
|
28242
28242
|
|
|
28243
28243
|
class direction_1_vector(ListObject[direction_1_vector_child]):
|
|
@@ -28270,7 +28270,7 @@ class direction_2_vector_child(Group):
|
|
|
28270
28270
|
udf=udf,
|
|
28271
28271
|
)
|
|
28272
28272
|
_child_aliases = dict(
|
|
28273
|
-
constant='value',
|
|
28273
|
+
constant=('value', 'constant'),
|
|
28274
28274
|
)
|
|
28275
28275
|
|
|
28276
28276
|
class direction_2_vector(ListObject[direction_2_vector_child]):
|
|
@@ -28363,7 +28363,7 @@ class viscous_resistance_child(Group):
|
|
|
28363
28363
|
udf=udf,
|
|
28364
28364
|
)
|
|
28365
28365
|
_child_aliases = dict(
|
|
28366
|
-
constant='value',
|
|
28366
|
+
constant=('value', 'constant'),
|
|
28367
28367
|
)
|
|
28368
28368
|
|
|
28369
28369
|
class viscous_resistance(ListObject[viscous_resistance_child]):
|
|
@@ -28404,7 +28404,7 @@ class inertial_resistance_child(Group):
|
|
|
28404
28404
|
udf=udf,
|
|
28405
28405
|
)
|
|
28406
28406
|
_child_aliases = dict(
|
|
28407
|
-
constant='value',
|
|
28407
|
+
constant=('value', 'constant'),
|
|
28408
28408
|
)
|
|
28409
28409
|
|
|
28410
28410
|
class inertial_resistance(ListObject[inertial_resistance_child]):
|
|
@@ -28453,7 +28453,7 @@ class porosity(Group):
|
|
|
28453
28453
|
udf=udf,
|
|
28454
28454
|
)
|
|
28455
28455
|
_child_aliases = dict(
|
|
28456
|
-
constant='value',
|
|
28456
|
+
constant=('value', 'constant'),
|
|
28457
28457
|
)
|
|
28458
28458
|
|
|
28459
28459
|
class option_18(String, AllowedValuesMixin):
|
|
@@ -28860,7 +28860,7 @@ class area_density(Group):
|
|
|
28860
28860
|
udf=udf,
|
|
28861
28861
|
)
|
|
28862
28862
|
_child_aliases = dict(
|
|
28863
|
-
constant='value',
|
|
28863
|
+
constant=('value', 'constant'),
|
|
28864
28864
|
)
|
|
28865
28865
|
|
|
28866
28866
|
class heat_transfer_coeff(Group):
|
|
@@ -28879,7 +28879,7 @@ class heat_transfer_coeff(Group):
|
|
|
28879
28879
|
udf=udf,
|
|
28880
28880
|
)
|
|
28881
28881
|
_child_aliases = dict(
|
|
28882
|
-
constant='value',
|
|
28882
|
+
constant=('value', 'constant'),
|
|
28883
28883
|
)
|
|
28884
28884
|
|
|
28885
28885
|
class porous_structure(Boolean):
|
|
@@ -29010,7 +29010,7 @@ class rad_porous_wall_in_emiss(Group):
|
|
|
29010
29010
|
udf=udf,
|
|
29011
29011
|
)
|
|
29012
29012
|
_child_aliases = dict(
|
|
29013
|
-
constant='value',
|
|
29013
|
+
constant=('value', 'constant'),
|
|
29014
29014
|
)
|
|
29015
29015
|
|
|
29016
29016
|
class rad_porous_wall_diffuse_fraction(Real):
|
|
@@ -29109,16 +29109,16 @@ class porous_zone(Group):
|
|
|
29109
29109
|
rad_porous_wall_diffuse_fraction=rad_porous_wall_diffuse_fraction,
|
|
29110
29110
|
)
|
|
29111
29111
|
_child_aliases = dict(
|
|
29112
|
-
c0='power_law_c0',
|
|
29113
|
-
c1='power_law_c1',
|
|
29114
|
-
cone_axis_components='cone_axis_vector',
|
|
29115
|
-
direction_1_components='direction_1_vector',
|
|
29116
|
-
direction_2_components='direction_2_vector',
|
|
29117
|
-
inertial_resistance_components='inertial_resistance',
|
|
29118
|
-
none='relative_permeability',
|
|
29119
|
-
point_on_cone_axis_components='point_on_cone_axis',
|
|
29120
|
-
viscosity_ratio='relative_viscosity',
|
|
29121
|
-
viscous_resistance_components='viscous_resistance',
|
|
29112
|
+
c0=('power_law_c0', 'c0'),
|
|
29113
|
+
c1=('power_law_c1', 'c1'),
|
|
29114
|
+
cone_axis_components=('cone_axis_vector', 'cone-axis-components'),
|
|
29115
|
+
direction_1_components=('direction_1_vector', 'direction-1-components'),
|
|
29116
|
+
direction_2_components=('direction_2_vector', 'direction-2-components'),
|
|
29117
|
+
inertial_resistance_components=('inertial_resistance', 'inertial-resistance-components'),
|
|
29118
|
+
none=('relative_permeability', 'none?'),
|
|
29119
|
+
point_on_cone_axis_components=('point_on_cone_axis', 'point-on-cone-axis-components'),
|
|
29120
|
+
viscosity_ratio=('relative_viscosity', 'viscosity-ratio'),
|
|
29121
|
+
viscous_resistance_components=('viscous_resistance', 'viscous-resistance-components'),
|
|
29122
29122
|
)
|
|
29123
29123
|
|
|
29124
29124
|
class fan_zone_1(Boolean):
|
|
@@ -29362,9 +29362,9 @@ class fan_zone(Group):
|
|
|
29362
29362
|
read_fan_curve=read_fan_curve,
|
|
29363
29363
|
)
|
|
29364
29364
|
_child_aliases = dict(
|
|
29365
|
-
fan_origin_components='fan_origin',
|
|
29366
|
-
fan_zone_list='inlet_fan_zone',
|
|
29367
|
-
fanzone='fan_zone',
|
|
29365
|
+
fan_origin_components=('fan_origin', 'fan-origin-components'),
|
|
29366
|
+
fan_zone_list=('inlet_fan_zone', 'fan-zone-list'),
|
|
29367
|
+
fanzone=('fan_zone', 'fanzone?'),
|
|
29368
29368
|
)
|
|
29369
29369
|
|
|
29370
29370
|
class les_zone(Boolean):
|
|
@@ -29432,7 +29432,7 @@ class embedded_les(Group):
|
|
|
29432
29432
|
les_embedded_c_smag=les_embedded_c_smag,
|
|
29433
29433
|
)
|
|
29434
29434
|
_child_aliases = dict(
|
|
29435
|
-
les_embedded='les_zone',
|
|
29435
|
+
les_embedded=('les_zone', 'les-embedded?'),
|
|
29436
29436
|
)
|
|
29437
29437
|
|
|
29438
29438
|
class react(Boolean):
|
|
@@ -29506,7 +29506,7 @@ class terms_child_child(Group):
|
|
|
29506
29506
|
udf=udf,
|
|
29507
29507
|
)
|
|
29508
29508
|
_child_aliases = dict(
|
|
29509
|
-
constant='value',
|
|
29509
|
+
constant=('value', 'constant'),
|
|
29510
29510
|
)
|
|
29511
29511
|
|
|
29512
29512
|
class terms_child(ListObject[terms_child_child]):
|
|
@@ -29553,8 +29553,8 @@ class sources(Group):
|
|
|
29553
29553
|
terms=terms,
|
|
29554
29554
|
)
|
|
29555
29555
|
_child_aliases = dict(
|
|
29556
|
-
source_terms='terms',
|
|
29557
|
-
sources='enable',
|
|
29556
|
+
source_terms=('terms', 'source-terms'),
|
|
29557
|
+
sources=('enable', 'sources?'),
|
|
29558
29558
|
)
|
|
29559
29559
|
|
|
29560
29560
|
class enable_12(Boolean):
|
|
@@ -29589,7 +29589,7 @@ class variables_child(Group):
|
|
|
29589
29589
|
udf=udf,
|
|
29590
29590
|
)
|
|
29591
29591
|
_child_aliases = dict(
|
|
29592
|
-
constant='value',
|
|
29592
|
+
constant=('value', 'constant'),
|
|
29593
29593
|
)
|
|
29594
29594
|
|
|
29595
29595
|
class variables(NamedObject[variables_child], _NonCreatableNamedObjectMixin[variables_child]):
|
|
@@ -29623,8 +29623,8 @@ class fixed_values(Group):
|
|
|
29623
29623
|
variables=variables,
|
|
29624
29624
|
)
|
|
29625
29625
|
_child_aliases = dict(
|
|
29626
|
-
fixed='enable',
|
|
29627
|
-
fixes='variables',
|
|
29626
|
+
fixed=('enable', 'fixed?'),
|
|
29627
|
+
fixes=('variables', 'fixes'),
|
|
29628
29628
|
)
|
|
29629
29629
|
|
|
29630
29630
|
class mp_compressive_beta_max(Real):
|
|
@@ -29913,7 +29913,7 @@ class axis_direction_1_child(Group):
|
|
|
29913
29913
|
udf=udf,
|
|
29914
29914
|
)
|
|
29915
29915
|
_child_aliases = dict(
|
|
29916
|
-
constant='value',
|
|
29916
|
+
constant=('value', 'constant'),
|
|
29917
29917
|
)
|
|
29918
29918
|
|
|
29919
29919
|
class axis_direction_1(ListObject[axis_direction_1_child]):
|
|
@@ -29946,7 +29946,7 @@ class axis_origin_1_child(Group):
|
|
|
29946
29946
|
udf=udf,
|
|
29947
29947
|
)
|
|
29948
29948
|
_child_aliases = dict(
|
|
29949
|
-
constant='value',
|
|
29949
|
+
constant=('value', 'constant'),
|
|
29950
29950
|
)
|
|
29951
29951
|
|
|
29952
29952
|
class axis_origin_1(ListObject[axis_origin_1_child]):
|
|
@@ -29987,7 +29987,7 @@ class solid_omega(Group):
|
|
|
29987
29987
|
udf=udf,
|
|
29988
29988
|
)
|
|
29989
29989
|
_child_aliases = dict(
|
|
29990
|
-
constant='value',
|
|
29990
|
+
constant=('value', 'constant'),
|
|
29991
29991
|
)
|
|
29992
29992
|
|
|
29993
29993
|
class solid_relative_to_thread(String, AllowedValuesMixin):
|
|
@@ -30022,7 +30022,7 @@ class solid_motion_axis_direction_child(Group):
|
|
|
30022
30022
|
udf=udf,
|
|
30023
30023
|
)
|
|
30024
30024
|
_child_aliases = dict(
|
|
30025
|
-
constant='value',
|
|
30025
|
+
constant=('value', 'constant'),
|
|
30026
30026
|
)
|
|
30027
30027
|
|
|
30028
30028
|
class solid_motion_axis_direction(ListObject[solid_motion_axis_direction_child]):
|
|
@@ -30055,7 +30055,7 @@ class solid_motion_axis_origin_child(Group):
|
|
|
30055
30055
|
udf=udf,
|
|
30056
30056
|
)
|
|
30057
30057
|
_child_aliases = dict(
|
|
30058
|
-
constant='value',
|
|
30058
|
+
constant=('value', 'constant'),
|
|
30059
30059
|
)
|
|
30060
30060
|
|
|
30061
30061
|
class solid_motion_axis_origin(ListObject[solid_motion_axis_origin_child]):
|
|
@@ -30088,7 +30088,7 @@ class solid_motion_velocity_child(Group):
|
|
|
30088
30088
|
udf=udf,
|
|
30089
30089
|
)
|
|
30090
30090
|
_child_aliases = dict(
|
|
30091
|
-
constant='value',
|
|
30091
|
+
constant=('value', 'constant'),
|
|
30092
30092
|
)
|
|
30093
30093
|
|
|
30094
30094
|
class solid_motion_velocity(ListObject[solid_motion_velocity_child]):
|
|
@@ -30129,7 +30129,7 @@ class omega_1(Group):
|
|
|
30129
30129
|
udf=udf,
|
|
30130
30130
|
)
|
|
30131
30131
|
_child_aliases = dict(
|
|
30132
|
-
constant='value',
|
|
30132
|
+
constant=('value', 'constant'),
|
|
30133
30133
|
)
|
|
30134
30134
|
|
|
30135
30135
|
class relative_to_thread(String, AllowedValuesMixin):
|
|
@@ -30173,13 +30173,13 @@ class disabled(Group):
|
|
|
30173
30173
|
motion_spec=motion_spec,
|
|
30174
30174
|
)
|
|
30175
30175
|
_child_aliases = dict(
|
|
30176
|
-
axis_direction_component='axis_direction',
|
|
30177
|
-
axis_origin_component='axis_origin',
|
|
30178
|
-
solid_motion_axis_direction_components='solid_motion_axis_direction',
|
|
30179
|
-
solid_motion_axis_origin_components='solid_motion_axis_origin',
|
|
30180
|
-
solid_motion_velocity_components='solid_motion_velocity',
|
|
30181
|
-
solid_motion='enable',
|
|
30182
|
-
solid_udf_zmotion_name='solid_motion_zone_motion_function',
|
|
30176
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
30177
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
30178
|
+
solid_motion_axis_direction_components=('solid_motion_axis_direction', 'solid-motion-axis-direction-components'),
|
|
30179
|
+
solid_motion_axis_origin_components=('solid_motion_axis_origin', 'solid-motion-axis-origin-components'),
|
|
30180
|
+
solid_motion_velocity_components=('solid_motion_velocity', 'solid-motion-velocity-components'),
|
|
30181
|
+
solid_motion=('enable', 'solid-motion?'),
|
|
30182
|
+
solid_udf_zmotion_name=('solid_motion_zone_motion_function', 'solid-udf-zmotion-name'),
|
|
30183
30183
|
)
|
|
30184
30184
|
|
|
30185
30185
|
class adjacent_cell_zone(Query):
|
|
@@ -30225,7 +30225,7 @@ class phase_child(Group):
|
|
|
30225
30225
|
shadow_face_zone=shadow_face_zone,
|
|
30226
30226
|
)
|
|
30227
30227
|
_child_aliases = dict(
|
|
30228
|
-
material='general/material',
|
|
30228
|
+
material=('general/material', 'material'),
|
|
30229
30229
|
)
|
|
30230
30230
|
|
|
30231
30231
|
class phase(NamedObject[phase_child], _NonCreatableNamedObjectMixin[phase_child]):
|
|
@@ -30274,7 +30274,7 @@ class fluid_1_child(Group):
|
|
|
30274
30274
|
shadow_face_zone=shadow_face_zone,
|
|
30275
30275
|
)
|
|
30276
30276
|
_child_aliases = dict(
|
|
30277
|
-
material='general/material',
|
|
30277
|
+
material=('general/material', 'material'),
|
|
30278
30278
|
)
|
|
30279
30279
|
|
|
30280
30280
|
class fluid_1(NamedObject[fluid_1_child], _NonCreatableNamedObjectMixin[fluid_1_child]):
|
|
@@ -30307,7 +30307,7 @@ class general_3(Group):
|
|
|
30307
30307
|
participates_in_radiation=participates_in_radiation,
|
|
30308
30308
|
)
|
|
30309
30309
|
_child_aliases = dict(
|
|
30310
|
-
radiating='participates_in_radiation',
|
|
30310
|
+
radiating=('participates_in_radiation', 'radiating?'),
|
|
30311
30311
|
)
|
|
30312
30312
|
|
|
30313
30313
|
class reference_frame_3(Group):
|
|
@@ -30328,11 +30328,11 @@ class reference_frame_3(Group):
|
|
|
30328
30328
|
reference_frame_zone_motion_function=reference_frame_zone_motion_function,
|
|
30329
30329
|
)
|
|
30330
30330
|
_child_aliases = dict(
|
|
30331
|
-
mrf_motion='frame_motion',
|
|
30332
|
-
mrf_udf_zmotion_name='reference_frame_zone_motion_function',
|
|
30333
|
-
reference_frame_axis_direction_components='reference_frame_axis_direction',
|
|
30334
|
-
reference_frame_axis_origin_components='reference_frame_axis_origin',
|
|
30335
|
-
reference_frame_velocity_components='reference_frame_velocity',
|
|
30331
|
+
mrf_motion=('frame_motion', 'mrf-motion?'),
|
|
30332
|
+
mrf_udf_zmotion_name=('reference_frame_zone_motion_function', 'mrf-udf-zmotion-name'),
|
|
30333
|
+
reference_frame_axis_direction_components=('reference_frame_axis_direction', 'reference-frame-axis-direction-components'),
|
|
30334
|
+
reference_frame_axis_origin_components=('reference_frame_axis_origin', 'reference-frame-axis-origin-components'),
|
|
30335
|
+
reference_frame_velocity_components=('reference_frame_velocity', 'reference-frame-velocity-components'),
|
|
30336
30336
|
)
|
|
30337
30337
|
|
|
30338
30338
|
class solid_motion(Group):
|
|
@@ -30353,11 +30353,11 @@ class solid_motion(Group):
|
|
|
30353
30353
|
solid_motion_zone_motion_function=solid_motion_zone_motion_function,
|
|
30354
30354
|
)
|
|
30355
30355
|
_child_aliases = dict(
|
|
30356
|
-
solid_motion_axis_direction_components='solid_motion_axis_direction',
|
|
30357
|
-
solid_motion_axis_origin_components='solid_motion_axis_origin',
|
|
30358
|
-
solid_motion_velocity_components='solid_motion_velocity',
|
|
30359
|
-
solid_motion='enable',
|
|
30360
|
-
solid_udf_zmotion_name='solid_motion_zone_motion_function',
|
|
30356
|
+
solid_motion_axis_direction_components=('solid_motion_axis_direction', 'solid-motion-axis-direction-components'),
|
|
30357
|
+
solid_motion_axis_origin_components=('solid_motion_axis_origin', 'solid-motion-axis-origin-components'),
|
|
30358
|
+
solid_motion_velocity_components=('solid_motion_velocity', 'solid-motion-velocity-components'),
|
|
30359
|
+
solid_motion=('enable', 'solid-motion?'),
|
|
30360
|
+
solid_udf_zmotion_name=('solid_motion_zone_motion_function', 'solid-udf-zmotion-name'),
|
|
30361
30361
|
)
|
|
30362
30362
|
|
|
30363
30363
|
class cursys_1(Boolean):
|
|
@@ -30408,9 +30408,9 @@ class disabled_1(Group):
|
|
|
30408
30408
|
cylindrical_fixed_var=cylindrical_fixed_var,
|
|
30409
30409
|
)
|
|
30410
30410
|
_child_aliases = dict(
|
|
30411
|
-
axis_direction_component='axis_direction',
|
|
30412
|
-
axis_origin_component='axis_origin',
|
|
30413
|
-
les_embedded='les_zone',
|
|
30411
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
30412
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
30413
|
+
les_embedded=('les_zone', 'les-embedded?'),
|
|
30414
30414
|
)
|
|
30415
30415
|
|
|
30416
30416
|
class ecad_name(String, AllowedValuesMixin):
|
|
@@ -30502,7 +30502,7 @@ class internal(Group):
|
|
|
30502
30502
|
contact_property=contact_property,
|
|
30503
30503
|
)
|
|
30504
30504
|
_child_aliases = dict(
|
|
30505
|
-
pcb_model='pcb_model',
|
|
30505
|
+
pcb_model=('pcb_model', 'pcb-model?'),
|
|
30506
30506
|
)
|
|
30507
30507
|
|
|
30508
30508
|
class phase_1_child(Group):
|
|
@@ -30528,7 +30528,7 @@ class phase_1_child(Group):
|
|
|
30528
30528
|
shadow_face_zone=shadow_face_zone,
|
|
30529
30529
|
)
|
|
30530
30530
|
_child_aliases = dict(
|
|
30531
|
-
material='general/material',
|
|
30531
|
+
material=('general/material', 'material'),
|
|
30532
30532
|
)
|
|
30533
30533
|
|
|
30534
30534
|
class phase_1(NamedObject[phase_1_child], _NonCreatableNamedObjectMixin[phase_1_child]):
|
|
@@ -30573,7 +30573,7 @@ class solid_2_child(Group):
|
|
|
30573
30573
|
shadow_face_zone=shadow_face_zone,
|
|
30574
30574
|
)
|
|
30575
30575
|
_child_aliases = dict(
|
|
30576
|
-
material='general/material',
|
|
30576
|
+
material=('general/material', 'material'),
|
|
30577
30577
|
)
|
|
30578
30578
|
|
|
30579
30579
|
class solid_2(NamedObject[solid_2_child], _NonCreatableNamedObjectMixin[solid_2_child]):
|
|
@@ -31009,7 +31009,7 @@ class gauge_pressure(Group):
|
|
|
31009
31009
|
udf=udf,
|
|
31010
31010
|
)
|
|
31011
31011
|
_child_aliases = dict(
|
|
31012
|
-
constant='value',
|
|
31012
|
+
constant=('value', 'constant'),
|
|
31013
31013
|
)
|
|
31014
31014
|
|
|
31015
31015
|
class pressure_profile_multiplier(Real):
|
|
@@ -31052,7 +31052,7 @@ class flow_direction_child(Group):
|
|
|
31052
31052
|
udf=udf,
|
|
31053
31053
|
)
|
|
31054
31054
|
_child_aliases = dict(
|
|
31055
|
-
constant='value',
|
|
31055
|
+
constant=('value', 'constant'),
|
|
31056
31056
|
)
|
|
31057
31057
|
|
|
31058
31058
|
class flow_direction(ListObject[flow_direction_child]):
|
|
@@ -31185,7 +31185,7 @@ class target_mass_flow(Group):
|
|
|
31185
31185
|
udf=udf,
|
|
31186
31186
|
)
|
|
31187
31187
|
_child_aliases = dict(
|
|
31188
|
-
constant='value',
|
|
31188
|
+
constant=('value', 'constant'),
|
|
31189
31189
|
)
|
|
31190
31190
|
|
|
31191
31191
|
class upper_limit_of_abs_pressure(Group):
|
|
@@ -31204,7 +31204,7 @@ class upper_limit_of_abs_pressure(Group):
|
|
|
31204
31204
|
udf=udf,
|
|
31205
31205
|
)
|
|
31206
31206
|
_child_aliases = dict(
|
|
31207
|
-
constant='value',
|
|
31207
|
+
constant=('value', 'constant'),
|
|
31208
31208
|
)
|
|
31209
31209
|
|
|
31210
31210
|
class lower_limit_of_abs_pressure(Group):
|
|
@@ -31223,7 +31223,7 @@ class lower_limit_of_abs_pressure(Group):
|
|
|
31223
31223
|
udf=udf,
|
|
31224
31224
|
)
|
|
31225
31225
|
_child_aliases = dict(
|
|
31226
|
-
constant='value',
|
|
31226
|
+
constant=('value', 'constant'),
|
|
31227
31227
|
)
|
|
31228
31228
|
|
|
31229
31229
|
class acoustic_wave_model(String, AllowedValuesMixin):
|
|
@@ -31370,7 +31370,7 @@ class incoming_wave(Group):
|
|
|
31370
31370
|
udf=udf,
|
|
31371
31371
|
)
|
|
31372
31372
|
_child_aliases = dict(
|
|
31373
|
-
constant='value',
|
|
31373
|
+
constant=('value', 'constant'),
|
|
31374
31374
|
)
|
|
31375
31375
|
|
|
31376
31376
|
class pressure_jump(Group):
|
|
@@ -31407,7 +31407,7 @@ class strength(Group):
|
|
|
31407
31407
|
udf=udf,
|
|
31408
31408
|
)
|
|
31409
31409
|
_child_aliases = dict(
|
|
31410
|
-
constant='value',
|
|
31410
|
+
constant=('value', 'constant'),
|
|
31411
31411
|
)
|
|
31412
31412
|
|
|
31413
31413
|
class new_fan_definition(Boolean):
|
|
@@ -31459,32 +31459,32 @@ class momentum(Group):
|
|
|
31459
31459
|
new_fan_definition=new_fan_definition,
|
|
31460
31460
|
)
|
|
31461
31461
|
_child_aliases = dict(
|
|
31462
|
-
a='pressure_jump',
|
|
31463
|
-
ac_options='acoustic_wave_model',
|
|
31464
|
-
ac_wave='incoming_wave',
|
|
31465
|
-
avg_option='avg_method',
|
|
31466
|
-
avg_press_spec='avg_pressure_spec',
|
|
31467
|
-
axis_direction_component='axis_direction',
|
|
31468
|
-
axis_origin_component='axis_origin',
|
|
31469
|
-
direction_spec='backflow_dir_spec_method',
|
|
31470
|
-
flow_direction_component='flow_direction',
|
|
31471
|
-
frame_of_reference='backflow_reference_frame',
|
|
31472
|
-
gen_nrbc_spec='exit_pressure_spec',
|
|
31473
|
-
impedance_0='impedance_zero_order_term',
|
|
31474
|
-
impedance_1='real_pole_series',
|
|
31475
|
-
impedance_2='complex_pole_series',
|
|
31476
|
-
new_fan_definition='new_fan_definition',
|
|
31477
|
-
p='gauge_pressure',
|
|
31478
|
-
p_backflow_spec='backflow_pressure_specification',
|
|
31479
|
-
p_backflow_spec_gen='backflow_pressure_spec',
|
|
31480
|
-
p_profile_multiplier='pressure_profile_multiplier',
|
|
31481
|
-
press_spec='pressure_spec_method',
|
|
31482
|
-
press_spec_gen='pressure_spec',
|
|
31483
|
-
radial='radial_equ_pressure_distribution',
|
|
31484
|
-
targeted_mf='target_mass_flow',
|
|
31485
|
-
targeted_mf_boundary='target_mass_flow_rate',
|
|
31486
|
-
targeted_mf_pmax='upper_limit_of_abs_pressure',
|
|
31487
|
-
targeted_mf_pmin='lower_limit_of_abs_pressure',
|
|
31462
|
+
a=('pressure_jump', 'a'),
|
|
31463
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
31464
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
31465
|
+
avg_option=('avg_method', 'avg-option'),
|
|
31466
|
+
avg_press_spec=('avg_pressure_spec', 'avg-press-spec?'),
|
|
31467
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
31468
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
31469
|
+
direction_spec=('backflow_dir_spec_method', 'direction-spec'),
|
|
31470
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
31471
|
+
frame_of_reference=('backflow_reference_frame', 'frame-of-reference'),
|
|
31472
|
+
gen_nrbc_spec=('exit_pressure_spec', 'gen-nrbc-spec'),
|
|
31473
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
31474
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
31475
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
31476
|
+
new_fan_definition=('new_fan_definition', 'new-fan-definition?'),
|
|
31477
|
+
p=('gauge_pressure', 'p'),
|
|
31478
|
+
p_backflow_spec=('backflow_pressure_specification', 'p-backflow-spec'),
|
|
31479
|
+
p_backflow_spec_gen=('backflow_pressure_spec', 'p-backflow-spec-gen'),
|
|
31480
|
+
p_profile_multiplier=('pressure_profile_multiplier', 'p-profile-multiplier'),
|
|
31481
|
+
press_spec=('pressure_spec_method', 'press-spec'),
|
|
31482
|
+
press_spec_gen=('pressure_spec', 'press-spec-gen'),
|
|
31483
|
+
radial=('radial_equ_pressure_distribution', 'radial?'),
|
|
31484
|
+
targeted_mf=('target_mass_flow', 'targeted-mf'),
|
|
31485
|
+
targeted_mf_boundary=('target_mass_flow_rate', 'targeted-mf-boundary?'),
|
|
31486
|
+
targeted_mf_pmax=('upper_limit_of_abs_pressure', 'targeted-mf-pmax'),
|
|
31487
|
+
targeted_mf_pmin=('lower_limit_of_abs_pressure', 'targeted-mf-pmin'),
|
|
31488
31488
|
)
|
|
31489
31489
|
|
|
31490
31490
|
class turbulence_specification(String, AllowedValuesMixin):
|
|
@@ -31511,7 +31511,7 @@ class backflow_modified_turbulent_viscosity(Group):
|
|
|
31511
31511
|
udf=udf,
|
|
31512
31512
|
)
|
|
31513
31513
|
_child_aliases = dict(
|
|
31514
|
-
constant='value',
|
|
31514
|
+
constant=('value', 'constant'),
|
|
31515
31515
|
)
|
|
31516
31516
|
|
|
31517
31517
|
class backflow_laminar_kinetic_energy(Group):
|
|
@@ -31530,7 +31530,7 @@ class backflow_laminar_kinetic_energy(Group):
|
|
|
31530
31530
|
udf=udf,
|
|
31531
31531
|
)
|
|
31532
31532
|
_child_aliases = dict(
|
|
31533
|
-
constant='value',
|
|
31533
|
+
constant=('value', 'constant'),
|
|
31534
31534
|
)
|
|
31535
31535
|
|
|
31536
31536
|
class backflow_intermittency(Group):
|
|
@@ -31549,7 +31549,7 @@ class backflow_intermittency(Group):
|
|
|
31549
31549
|
udf=udf,
|
|
31550
31550
|
)
|
|
31551
31551
|
_child_aliases = dict(
|
|
31552
|
-
constant='value',
|
|
31552
|
+
constant=('value', 'constant'),
|
|
31553
31553
|
)
|
|
31554
31554
|
|
|
31555
31555
|
class backflow_turbulent_kinetic_energy(Group):
|
|
@@ -31568,7 +31568,7 @@ class backflow_turbulent_kinetic_energy(Group):
|
|
|
31568
31568
|
udf=udf,
|
|
31569
31569
|
)
|
|
31570
31570
|
_child_aliases = dict(
|
|
31571
|
-
constant='value',
|
|
31571
|
+
constant=('value', 'constant'),
|
|
31572
31572
|
)
|
|
31573
31573
|
|
|
31574
31574
|
class backflow_turbulent_dissipation_rate(Group):
|
|
@@ -31587,7 +31587,7 @@ class backflow_turbulent_dissipation_rate(Group):
|
|
|
31587
31587
|
udf=udf,
|
|
31588
31588
|
)
|
|
31589
31589
|
_child_aliases = dict(
|
|
31590
|
-
constant='value',
|
|
31590
|
+
constant=('value', 'constant'),
|
|
31591
31591
|
)
|
|
31592
31592
|
|
|
31593
31593
|
class backflow_specific_dissipation_rate(Group):
|
|
@@ -31606,7 +31606,7 @@ class backflow_specific_dissipation_rate(Group):
|
|
|
31606
31606
|
udf=udf,
|
|
31607
31607
|
)
|
|
31608
31608
|
_child_aliases = dict(
|
|
31609
|
-
constant='value',
|
|
31609
|
+
constant=('value', 'constant'),
|
|
31610
31610
|
)
|
|
31611
31611
|
|
|
31612
31612
|
class backflow_velocity_variance_scale(Group):
|
|
@@ -31625,7 +31625,7 @@ class backflow_velocity_variance_scale(Group):
|
|
|
31625
31625
|
udf=udf,
|
|
31626
31626
|
)
|
|
31627
31627
|
_child_aliases = dict(
|
|
31628
|
-
constant='value',
|
|
31628
|
+
constant=('value', 'constant'),
|
|
31629
31629
|
)
|
|
31630
31630
|
|
|
31631
31631
|
class backflow_turbulent_intensity(Real):
|
|
@@ -31676,7 +31676,7 @@ class backflow_turbulent_viscosity_ratio_profile(Group):
|
|
|
31676
31676
|
udf=udf,
|
|
31677
31677
|
)
|
|
31678
31678
|
_child_aliases = dict(
|
|
31679
|
-
constant='value',
|
|
31679
|
+
constant=('value', 'constant'),
|
|
31680
31680
|
)
|
|
31681
31681
|
|
|
31682
31682
|
class reynolds_stress_specification(String, AllowedValuesMixin):
|
|
@@ -31703,7 +31703,7 @@ class backflow_uu_reynolds_stresses(Group):
|
|
|
31703
31703
|
udf=udf,
|
|
31704
31704
|
)
|
|
31705
31705
|
_child_aliases = dict(
|
|
31706
|
-
constant='value',
|
|
31706
|
+
constant=('value', 'constant'),
|
|
31707
31707
|
)
|
|
31708
31708
|
|
|
31709
31709
|
class backflow_vv_reynolds_stresses(Group):
|
|
@@ -31722,7 +31722,7 @@ class backflow_vv_reynolds_stresses(Group):
|
|
|
31722
31722
|
udf=udf,
|
|
31723
31723
|
)
|
|
31724
31724
|
_child_aliases = dict(
|
|
31725
|
-
constant='value',
|
|
31725
|
+
constant=('value', 'constant'),
|
|
31726
31726
|
)
|
|
31727
31727
|
|
|
31728
31728
|
class backflow_ww_reynolds_stresses(Group):
|
|
@@ -31741,7 +31741,7 @@ class backflow_ww_reynolds_stresses(Group):
|
|
|
31741
31741
|
udf=udf,
|
|
31742
31742
|
)
|
|
31743
31743
|
_child_aliases = dict(
|
|
31744
|
-
constant='value',
|
|
31744
|
+
constant=('value', 'constant'),
|
|
31745
31745
|
)
|
|
31746
31746
|
|
|
31747
31747
|
class backflow_uv_reynolds_stresses(Group):
|
|
@@ -31760,7 +31760,7 @@ class backflow_uv_reynolds_stresses(Group):
|
|
|
31760
31760
|
udf=udf,
|
|
31761
31761
|
)
|
|
31762
31762
|
_child_aliases = dict(
|
|
31763
|
-
constant='value',
|
|
31763
|
+
constant=('value', 'constant'),
|
|
31764
31764
|
)
|
|
31765
31765
|
|
|
31766
31766
|
class backflow_vw_reynolds_stresses(Group):
|
|
@@ -31779,7 +31779,7 @@ class backflow_vw_reynolds_stresses(Group):
|
|
|
31779
31779
|
udf=udf,
|
|
31780
31780
|
)
|
|
31781
31781
|
_child_aliases = dict(
|
|
31782
|
-
constant='value',
|
|
31782
|
+
constant=('value', 'constant'),
|
|
31783
31783
|
)
|
|
31784
31784
|
|
|
31785
31785
|
class backflow_uw_reynolds_stresses(Group):
|
|
@@ -31798,7 +31798,7 @@ class backflow_uw_reynolds_stresses(Group):
|
|
|
31798
31798
|
udf=udf,
|
|
31799
31799
|
)
|
|
31800
31800
|
_child_aliases = dict(
|
|
31801
|
-
constant='value',
|
|
31801
|
+
constant=('value', 'constant'),
|
|
31802
31802
|
)
|
|
31803
31803
|
|
|
31804
31804
|
class subgrid_kinetic_energy_specification(String, AllowedValuesMixin):
|
|
@@ -31825,7 +31825,7 @@ class subgrid_kinetic_energy(Group):
|
|
|
31825
31825
|
udf=udf,
|
|
31826
31826
|
)
|
|
31827
31827
|
_child_aliases = dict(
|
|
31828
|
-
constant='value',
|
|
31828
|
+
constant=('value', 'constant'),
|
|
31829
31829
|
)
|
|
31830
31830
|
|
|
31831
31831
|
class subgrid_turbulent_intensity(Real):
|
|
@@ -31870,50 +31870,50 @@ class turbulence(Group):
|
|
|
31870
31870
|
subgrid_turbulent_intensity=subgrid_turbulent_intensity,
|
|
31871
31871
|
)
|
|
31872
31872
|
_child_aliases = dict(
|
|
31873
|
-
e='backflow_turbulent_dissipation_rate',
|
|
31874
|
-
hydraulic_diameter='backflow_hydraulic_diameter',
|
|
31875
|
-
intermit='backflow_intermittency',
|
|
31876
|
-
intermittency='backflow_intermittency',
|
|
31877
|
-
k='backflow_turbulent_kinetic_energy',
|
|
31878
|
-
kl='backflow_laminar_kinetic_energy',
|
|
31879
|
-
ksgs='subgrid_kinetic_energy',
|
|
31880
|
-
ksgs_spec='subgrid_kinetic_energy_specification',
|
|
31881
|
-
laminar_kinetic_energy='backflow_laminar_kinetic_energy',
|
|
31882
|
-
modified_turbulent_viscosity='backflow_modified_turbulent_viscosity',
|
|
31883
|
-
nut='backflow_modified_turbulent_viscosity',
|
|
31884
|
-
o='backflow_specific_dissipation_rate',
|
|
31885
|
-
reynolds_stress_specification='backflow_reynolds_stress_specification',
|
|
31886
|
-
rst_spec='reynolds_stress_specification',
|
|
31887
|
-
sgs_turb_intensity='subgrid_turbulent_intensity',
|
|
31888
|
-
specific_dissipation_rate='backflow_specific_dissipation_rate',
|
|
31889
|
-
subgrid_kinetic_energy='backflow_subgrid_kinetic_energy',
|
|
31890
|
-
subgrid_kinetic_energy_specification='backflow_subgrid_kinetic_energy_specification',
|
|
31891
|
-
subgrid_turbulent_intensity='backflow_subgrid_turbulent_intensity',
|
|
31892
|
-
turb_hydraulic_diam='backflow_hydraulic_diameter',
|
|
31893
|
-
turb_intensity='backflow_turbulent_intensity',
|
|
31894
|
-
turb_length_scale='backflow_turbulent_length_scale',
|
|
31895
|
-
turb_viscosity_ratio='backflow_turbulent_viscosity_ratio',
|
|
31896
|
-
turb_viscosity_ratio_profile='backflow_turbulent_viscosity_ratio_profile',
|
|
31897
|
-
turbulent_dissipation_rate='backflow_turbulent_dissipation_rate',
|
|
31898
|
-
turbulent_intensity='backflow_turbulent_intensity',
|
|
31899
|
-
turbulent_length_scale='backflow_turbulent_length_scale',
|
|
31900
|
-
turbulent_specification='turbulence_specification',
|
|
31901
|
-
turbulent_viscosity_ratio='backflow_turbulent_viscosity_ratio',
|
|
31902
|
-
turbulent_viscosity_ratio_profile='backflow_turbulent_viscosity_ratio_profile',
|
|
31903
|
-
uu='backflow_uu_reynolds_stresses',
|
|
31904
|
-
uu_reynolds_stresses='backflow_uu_reynolds_stresses',
|
|
31905
|
-
uv='backflow_uv_reynolds_stresses',
|
|
31906
|
-
uv_reynolds_stresses='backflow_uv_reynolds_stresses',
|
|
31907
|
-
uw='backflow_uw_reynolds_stresses',
|
|
31908
|
-
uw_reynolds_stresses='backflow_uw_reynolds_stresses',
|
|
31909
|
-
v2='backflow_velocity_variance_scale',
|
|
31910
|
-
velocity_variance_scale='backflow_velocity_variance_scale',
|
|
31911
|
-
vv='backflow_vv_reynolds_stresses',
|
|
31912
|
-
vv_reynolds_stresses='backflow_vv_reynolds_stresses',
|
|
31913
|
-
vw='backflow_vw_reynolds_stresses',
|
|
31914
|
-
vw_reynolds_stresses='backflow_vw_reynolds_stresses',
|
|
31915
|
-
ww='backflow_ww_reynolds_stresses',
|
|
31916
|
-
ww_reynolds_stresses='backflow_ww_reynolds_stresses',
|
|
31873
|
+
e=('backflow_turbulent_dissipation_rate', 'e'),
|
|
31874
|
+
hydraulic_diameter=('backflow_hydraulic_diameter', 'hydraulic-diameter'),
|
|
31875
|
+
intermit=('backflow_intermittency', 'intermit'),
|
|
31876
|
+
intermittency=('backflow_intermittency', 'intermittency'),
|
|
31877
|
+
k=('backflow_turbulent_kinetic_energy', 'k'),
|
|
31878
|
+
kl=('backflow_laminar_kinetic_energy', 'kl'),
|
|
31879
|
+
ksgs=('subgrid_kinetic_energy', 'ksgs'),
|
|
31880
|
+
ksgs_spec=('subgrid_kinetic_energy_specification', 'ksgs-spec'),
|
|
31881
|
+
laminar_kinetic_energy=('backflow_laminar_kinetic_energy', 'laminar-kinetic-energy'),
|
|
31882
|
+
modified_turbulent_viscosity=('backflow_modified_turbulent_viscosity', 'modified-turbulent-viscosity'),
|
|
31883
|
+
nut=('backflow_modified_turbulent_viscosity', 'nut'),
|
|
31884
|
+
o=('backflow_specific_dissipation_rate', 'o'),
|
|
31885
|
+
reynolds_stress_specification=('backflow_reynolds_stress_specification', 'reynolds-stress-specification'),
|
|
31886
|
+
rst_spec=('reynolds_stress_specification', 'rst-spec'),
|
|
31887
|
+
sgs_turb_intensity=('subgrid_turbulent_intensity', 'sgs-turb-intensity'),
|
|
31888
|
+
specific_dissipation_rate=('backflow_specific_dissipation_rate', 'specific-dissipation-rate'),
|
|
31889
|
+
subgrid_kinetic_energy=('backflow_subgrid_kinetic_energy', 'subgrid-kinetic-energy'),
|
|
31890
|
+
subgrid_kinetic_energy_specification=('backflow_subgrid_kinetic_energy_specification', 'subgrid-kinetic-energy-specification'),
|
|
31891
|
+
subgrid_turbulent_intensity=('backflow_subgrid_turbulent_intensity', 'subgrid-turbulent-intensity'),
|
|
31892
|
+
turb_hydraulic_diam=('backflow_hydraulic_diameter', 'turb-hydraulic-diam'),
|
|
31893
|
+
turb_intensity=('backflow_turbulent_intensity', 'turb-intensity'),
|
|
31894
|
+
turb_length_scale=('backflow_turbulent_length_scale', 'turb-length-scale'),
|
|
31895
|
+
turb_viscosity_ratio=('backflow_turbulent_viscosity_ratio', 'turb-viscosity-ratio'),
|
|
31896
|
+
turb_viscosity_ratio_profile=('backflow_turbulent_viscosity_ratio_profile', 'turb-viscosity-ratio-profile'),
|
|
31897
|
+
turbulent_dissipation_rate=('backflow_turbulent_dissipation_rate', 'turbulent-dissipation-rate'),
|
|
31898
|
+
turbulent_intensity=('backflow_turbulent_intensity', 'turbulent-intensity'),
|
|
31899
|
+
turbulent_length_scale=('backflow_turbulent_length_scale', 'turbulent-length-scale'),
|
|
31900
|
+
turbulent_specification=('turbulence_specification', 'turbulent-specification'),
|
|
31901
|
+
turbulent_viscosity_ratio=('backflow_turbulent_viscosity_ratio', 'turbulent-viscosity-ratio'),
|
|
31902
|
+
turbulent_viscosity_ratio_profile=('backflow_turbulent_viscosity_ratio_profile', 'turbulent-viscosity-ratio-profile'),
|
|
31903
|
+
uu=('backflow_uu_reynolds_stresses', 'uu'),
|
|
31904
|
+
uu_reynolds_stresses=('backflow_uu_reynolds_stresses', 'uu-reynolds-stresses'),
|
|
31905
|
+
uv=('backflow_uv_reynolds_stresses', 'uv'),
|
|
31906
|
+
uv_reynolds_stresses=('backflow_uv_reynolds_stresses', 'uv-reynolds-stresses'),
|
|
31907
|
+
uw=('backflow_uw_reynolds_stresses', 'uw'),
|
|
31908
|
+
uw_reynolds_stresses=('backflow_uw_reynolds_stresses', 'uw-reynolds-stresses'),
|
|
31909
|
+
v2=('backflow_velocity_variance_scale', 'v2'),
|
|
31910
|
+
velocity_variance_scale=('backflow_velocity_variance_scale', 'velocity-variance-scale'),
|
|
31911
|
+
vv=('backflow_vv_reynolds_stresses', 'vv'),
|
|
31912
|
+
vv_reynolds_stresses=('backflow_vv_reynolds_stresses', 'vv-reynolds-stresses'),
|
|
31913
|
+
vw=('backflow_vw_reynolds_stresses', 'vw'),
|
|
31914
|
+
vw_reynolds_stresses=('backflow_vw_reynolds_stresses', 'vw-reynolds-stresses'),
|
|
31915
|
+
ww=('backflow_ww_reynolds_stresses', 'ww'),
|
|
31916
|
+
ww_reynolds_stresses=('backflow_ww_reynolds_stresses', 'ww-reynolds-stresses'),
|
|
31917
31917
|
)
|
|
31918
31918
|
|
|
31919
31919
|
class backflow_total_temperature(Group):
|
|
@@ -31932,7 +31932,7 @@ class backflow_total_temperature(Group):
|
|
|
31932
31932
|
udf=udf,
|
|
31933
31933
|
)
|
|
31934
31934
|
_child_aliases = dict(
|
|
31935
|
-
constant='value',
|
|
31935
|
+
constant=('value', 'constant'),
|
|
31936
31936
|
)
|
|
31937
31937
|
|
|
31938
31938
|
class thermal(Group):
|
|
@@ -31947,7 +31947,7 @@ class thermal(Group):
|
|
|
31947
31947
|
backflow_total_temperature=backflow_total_temperature,
|
|
31948
31948
|
)
|
|
31949
31949
|
_child_aliases = dict(
|
|
31950
|
-
t0='backflow_total_temperature',
|
|
31950
|
+
t0=('backflow_total_temperature', 't0'),
|
|
31951
31951
|
)
|
|
31952
31952
|
|
|
31953
31953
|
class radiation_bc(String, AllowedValuesMixin):
|
|
@@ -31974,7 +31974,7 @@ class radial_direction_child(Group):
|
|
|
31974
31974
|
udf=udf,
|
|
31975
31975
|
)
|
|
31976
31976
|
_child_aliases = dict(
|
|
31977
|
-
constant='value',
|
|
31977
|
+
constant=('value', 'constant'),
|
|
31978
31978
|
)
|
|
31979
31979
|
|
|
31980
31980
|
class radial_direction(ListObject[radial_direction_child]):
|
|
@@ -32023,7 +32023,7 @@ class direct_irradiation_child(Group):
|
|
|
32023
32023
|
udf=udf,
|
|
32024
32024
|
)
|
|
32025
32025
|
_child_aliases = dict(
|
|
32026
|
-
constant='value',
|
|
32026
|
+
constant=('value', 'constant'),
|
|
32027
32027
|
)
|
|
32028
32028
|
|
|
32029
32029
|
class direct_irradiation(NamedObject[direct_irradiation_child], _NonCreatableNamedObjectMixin[direct_irradiation_child]):
|
|
@@ -32059,7 +32059,7 @@ class diffuse_irradiation_child(Group):
|
|
|
32059
32059
|
udf=udf,
|
|
32060
32060
|
)
|
|
32061
32061
|
_child_aliases = dict(
|
|
32062
|
-
constant='value',
|
|
32062
|
+
constant=('value', 'constant'),
|
|
32063
32063
|
)
|
|
32064
32064
|
|
|
32065
32065
|
class diffuse_irradiation(NamedObject[diffuse_irradiation_child], _NonCreatableNamedObjectMixin[diffuse_irradiation_child]):
|
|
@@ -32135,7 +32135,7 @@ class internal_emissivity(Group):
|
|
|
32135
32135
|
udf=udf,
|
|
32136
32136
|
)
|
|
32137
32137
|
_child_aliases = dict(
|
|
32138
|
-
constant='value',
|
|
32138
|
+
constant=('value', 'constant'),
|
|
32139
32139
|
)
|
|
32140
32140
|
|
|
32141
32141
|
class participates_in_solar_ray_tracing(Boolean):
|
|
@@ -32188,19 +32188,19 @@ class radiation_1(Group):
|
|
|
32188
32188
|
participates_in_view_factor_calculation=participates_in_view_factor_calculation,
|
|
32189
32189
|
)
|
|
32190
32190
|
_child_aliases = dict(
|
|
32191
|
-
band_q_irrad='direct_irradiation',
|
|
32192
|
-
band_q_irrad_diffuse='diffuse_irradiation',
|
|
32193
|
-
coll_dphi='phi_width_of_beam',
|
|
32194
|
-
coll_dtheta='theta_width_of_beam',
|
|
32195
|
-
in_emiss='internal_emissivity',
|
|
32196
|
-
radial_direction_component='radial_direction',
|
|
32197
|
-
radiating_s2s_surface='participates_in_view_factor_calculation',
|
|
32198
|
-
solar_direction='use_beeam_direction_from_solar_load_model_settings',
|
|
32199
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
32200
|
-
solar_irradiation='use_irradiation_from_solar_soad_model_settings',
|
|
32201
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
32202
|
-
t_b_b='black_body_temperature',
|
|
32203
|
-
t_b_b_spec='external_black_body_temperature_method',
|
|
32191
|
+
band_q_irrad=('direct_irradiation', 'band-q-irrad'),
|
|
32192
|
+
band_q_irrad_diffuse=('diffuse_irradiation', 'band-q-irrad-diffuse'),
|
|
32193
|
+
coll_dphi=('phi_width_of_beam', 'coll-dphi'),
|
|
32194
|
+
coll_dtheta=('theta_width_of_beam', 'coll-dtheta'),
|
|
32195
|
+
in_emiss=('internal_emissivity', 'in-emiss'),
|
|
32196
|
+
radial_direction_component=('radial_direction', 'radial-direction-component'),
|
|
32197
|
+
radiating_s2s_surface=('participates_in_view_factor_calculation', 'radiating-s2s-surface?'),
|
|
32198
|
+
solar_direction=('use_beeam_direction_from_solar_load_model_settings', 'solar-direction?'),
|
|
32199
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
32200
|
+
solar_irradiation=('use_irradiation_from_solar_soad_model_settings', 'solar-irradiation?'),
|
|
32201
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
32202
|
+
t_b_b=('black_body_temperature', 't-b-b'),
|
|
32203
|
+
t_b_b_spec=('external_black_body_temperature_method', 't-b-b-spec'),
|
|
32204
32204
|
)
|
|
32205
32205
|
|
|
32206
32206
|
class mean_mixture_fraction(Group):
|
|
@@ -32219,7 +32219,7 @@ class mean_mixture_fraction(Group):
|
|
|
32219
32219
|
udf=udf,
|
|
32220
32220
|
)
|
|
32221
32221
|
_child_aliases = dict(
|
|
32222
|
-
constant='value',
|
|
32222
|
+
constant=('value', 'constant'),
|
|
32223
32223
|
)
|
|
32224
32224
|
|
|
32225
32225
|
class secondary_mean_mixture_fraction(Group):
|
|
@@ -32238,7 +32238,7 @@ class secondary_mean_mixture_fraction(Group):
|
|
|
32238
32238
|
udf=udf,
|
|
32239
32239
|
)
|
|
32240
32240
|
_child_aliases = dict(
|
|
32241
|
-
constant='value',
|
|
32241
|
+
constant=('value', 'constant'),
|
|
32242
32242
|
)
|
|
32243
32243
|
|
|
32244
32244
|
class mixture_fraction_variance(Group):
|
|
@@ -32257,7 +32257,7 @@ class mixture_fraction_variance(Group):
|
|
|
32257
32257
|
udf=udf,
|
|
32258
32258
|
)
|
|
32259
32259
|
_child_aliases = dict(
|
|
32260
|
-
constant='value',
|
|
32260
|
+
constant=('value', 'constant'),
|
|
32261
32261
|
)
|
|
32262
32262
|
|
|
32263
32263
|
class secondary_mixture_fraction_variance(Group):
|
|
@@ -32276,7 +32276,7 @@ class secondary_mixture_fraction_variance(Group):
|
|
|
32276
32276
|
udf=udf,
|
|
32277
32277
|
)
|
|
32278
32278
|
_child_aliases = dict(
|
|
32279
|
-
constant='value',
|
|
32279
|
+
constant=('value', 'constant'),
|
|
32280
32280
|
)
|
|
32281
32281
|
|
|
32282
32282
|
class specify_species_in_mole_fractions(Boolean):
|
|
@@ -32303,7 +32303,7 @@ class backflow_species_mass_fraction_child(Group):
|
|
|
32303
32303
|
udf=udf,
|
|
32304
32304
|
)
|
|
32305
32305
|
_child_aliases = dict(
|
|
32306
|
-
constant='value',
|
|
32306
|
+
constant=('value', 'constant'),
|
|
32307
32307
|
)
|
|
32308
32308
|
|
|
32309
32309
|
class backflow_species_mass_fraction(NamedObject[backflow_species_mass_fraction_child], _NonCreatableNamedObjectMixin[backflow_species_mass_fraction_child]):
|
|
@@ -32339,7 +32339,7 @@ class species_mole_fraction_child(Group):
|
|
|
32339
32339
|
udf=udf,
|
|
32340
32340
|
)
|
|
32341
32341
|
_child_aliases = dict(
|
|
32342
|
-
constant='value',
|
|
32342
|
+
constant=('value', 'constant'),
|
|
32343
32343
|
)
|
|
32344
32344
|
|
|
32345
32345
|
class species_mole_fraction(NamedObject[species_mole_fraction_child], _NonCreatableNamedObjectMixin[species_mole_fraction_child]):
|
|
@@ -32375,7 +32375,7 @@ class backflow_mixture_fraction(Group):
|
|
|
32375
32375
|
udf=udf,
|
|
32376
32376
|
)
|
|
32377
32377
|
_child_aliases = dict(
|
|
32378
|
-
constant='value',
|
|
32378
|
+
constant=('value', 'constant'),
|
|
32379
32379
|
)
|
|
32380
32380
|
|
|
32381
32381
|
class backflow_mode_2_probability(Group):
|
|
@@ -32394,7 +32394,7 @@ class backflow_mode_2_probability(Group):
|
|
|
32394
32394
|
udf=udf,
|
|
32395
32395
|
)
|
|
32396
32396
|
_child_aliases = dict(
|
|
32397
|
-
constant='value',
|
|
32397
|
+
constant=('value', 'constant'),
|
|
32398
32398
|
)
|
|
32399
32399
|
|
|
32400
32400
|
class backflow_mode_3_probability(Group):
|
|
@@ -32413,7 +32413,7 @@ class backflow_mode_3_probability(Group):
|
|
|
32413
32413
|
udf=udf,
|
|
32414
32414
|
)
|
|
32415
32415
|
_child_aliases = dict(
|
|
32416
|
-
constant='value',
|
|
32416
|
+
constant=('value', 'constant'),
|
|
32417
32417
|
)
|
|
32418
32418
|
|
|
32419
32419
|
class backflow_progress_variable(Group):
|
|
@@ -32432,7 +32432,7 @@ class backflow_progress_variable(Group):
|
|
|
32432
32432
|
udf=udf,
|
|
32433
32433
|
)
|
|
32434
32434
|
_child_aliases = dict(
|
|
32435
|
-
constant='value',
|
|
32435
|
+
constant=('value', 'constant'),
|
|
32436
32436
|
)
|
|
32437
32437
|
|
|
32438
32438
|
class backflow_progress_variable_variance(Group):
|
|
@@ -32451,7 +32451,7 @@ class backflow_progress_variable_variance(Group):
|
|
|
32451
32451
|
udf=udf,
|
|
32452
32452
|
)
|
|
32453
32453
|
_child_aliases = dict(
|
|
32454
|
-
constant='value',
|
|
32454
|
+
constant=('value', 'constant'),
|
|
32455
32455
|
)
|
|
32456
32456
|
|
|
32457
32457
|
class backflow_flame_area_density(Group):
|
|
@@ -32470,7 +32470,7 @@ class backflow_flame_area_density(Group):
|
|
|
32470
32470
|
udf=udf,
|
|
32471
32471
|
)
|
|
32472
32472
|
_child_aliases = dict(
|
|
32473
|
-
constant='value',
|
|
32473
|
+
constant=('value', 'constant'),
|
|
32474
32474
|
)
|
|
32475
32475
|
|
|
32476
32476
|
class backflow_inert_stream(Group):
|
|
@@ -32489,7 +32489,7 @@ class backflow_inert_stream(Group):
|
|
|
32489
32489
|
udf=udf,
|
|
32490
32490
|
)
|
|
32491
32491
|
_child_aliases = dict(
|
|
32492
|
-
constant='value',
|
|
32492
|
+
constant=('value', 'constant'),
|
|
32493
32493
|
)
|
|
32494
32494
|
|
|
32495
32495
|
class backflow_pollutant_no_mass_fraction(Group):
|
|
@@ -32508,7 +32508,7 @@ class backflow_pollutant_no_mass_fraction(Group):
|
|
|
32508
32508
|
udf=udf,
|
|
32509
32509
|
)
|
|
32510
32510
|
_child_aliases = dict(
|
|
32511
|
-
constant='value',
|
|
32511
|
+
constant=('value', 'constant'),
|
|
32512
32512
|
)
|
|
32513
32513
|
|
|
32514
32514
|
class backflow_pollutant_hcn_mass_fraction(Group):
|
|
@@ -32527,7 +32527,7 @@ class backflow_pollutant_hcn_mass_fraction(Group):
|
|
|
32527
32527
|
udf=udf,
|
|
32528
32528
|
)
|
|
32529
32529
|
_child_aliases = dict(
|
|
32530
|
-
constant='value',
|
|
32530
|
+
constant=('value', 'constant'),
|
|
32531
32531
|
)
|
|
32532
32532
|
|
|
32533
32533
|
class backflow_pollutant_nh3_mass_fraction(Group):
|
|
@@ -32546,7 +32546,7 @@ class backflow_pollutant_nh3_mass_fraction(Group):
|
|
|
32546
32546
|
udf=udf,
|
|
32547
32547
|
)
|
|
32548
32548
|
_child_aliases = dict(
|
|
32549
|
-
constant='value',
|
|
32549
|
+
constant=('value', 'constant'),
|
|
32550
32550
|
)
|
|
32551
32551
|
|
|
32552
32552
|
class backflow_pollutant_n2o_mass_fraction(Group):
|
|
@@ -32565,7 +32565,7 @@ class backflow_pollutant_n2o_mass_fraction(Group):
|
|
|
32565
32565
|
udf=udf,
|
|
32566
32566
|
)
|
|
32567
32567
|
_child_aliases = dict(
|
|
32568
|
-
constant='value',
|
|
32568
|
+
constant=('value', 'constant'),
|
|
32569
32569
|
)
|
|
32570
32570
|
|
|
32571
32571
|
class backflow_pollutant_urea_mass_fraction(Group):
|
|
@@ -32584,7 +32584,7 @@ class backflow_pollutant_urea_mass_fraction(Group):
|
|
|
32584
32584
|
udf=udf,
|
|
32585
32585
|
)
|
|
32586
32586
|
_child_aliases = dict(
|
|
32587
|
-
constant='value',
|
|
32587
|
+
constant=('value', 'constant'),
|
|
32588
32588
|
)
|
|
32589
32589
|
|
|
32590
32590
|
class backflow_pollutant_hnco_mass_fraction(Group):
|
|
@@ -32603,7 +32603,7 @@ class backflow_pollutant_hnco_mass_fraction(Group):
|
|
|
32603
32603
|
udf=udf,
|
|
32604
32604
|
)
|
|
32605
32605
|
_child_aliases = dict(
|
|
32606
|
-
constant='value',
|
|
32606
|
+
constant=('value', 'constant'),
|
|
32607
32607
|
)
|
|
32608
32608
|
|
|
32609
32609
|
class backflow_pollutant_nco_mass_fraction(Group):
|
|
@@ -32622,7 +32622,7 @@ class backflow_pollutant_nco_mass_fraction(Group):
|
|
|
32622
32622
|
udf=udf,
|
|
32623
32623
|
)
|
|
32624
32624
|
_child_aliases = dict(
|
|
32625
|
-
constant='value',
|
|
32625
|
+
constant=('value', 'constant'),
|
|
32626
32626
|
)
|
|
32627
32627
|
|
|
32628
32628
|
class backflow_pollutant_so2_mass_fraction(Group):
|
|
@@ -32641,7 +32641,7 @@ class backflow_pollutant_so2_mass_fraction(Group):
|
|
|
32641
32641
|
udf=udf,
|
|
32642
32642
|
)
|
|
32643
32643
|
_child_aliases = dict(
|
|
32644
|
-
constant='value',
|
|
32644
|
+
constant=('value', 'constant'),
|
|
32645
32645
|
)
|
|
32646
32646
|
|
|
32647
32647
|
class backflow_pollutant_h2s_mass_fraction(Group):
|
|
@@ -32660,7 +32660,7 @@ class backflow_pollutant_h2s_mass_fraction(Group):
|
|
|
32660
32660
|
udf=udf,
|
|
32661
32661
|
)
|
|
32662
32662
|
_child_aliases = dict(
|
|
32663
|
-
constant='value',
|
|
32663
|
+
constant=('value', 'constant'),
|
|
32664
32664
|
)
|
|
32665
32665
|
|
|
32666
32666
|
class backflow_pollutant_so3_mass_fraction(Group):
|
|
@@ -32679,7 +32679,7 @@ class backflow_pollutant_so3_mass_fraction(Group):
|
|
|
32679
32679
|
udf=udf,
|
|
32680
32680
|
)
|
|
32681
32681
|
_child_aliases = dict(
|
|
32682
|
-
constant='value',
|
|
32682
|
+
constant=('value', 'constant'),
|
|
32683
32683
|
)
|
|
32684
32684
|
|
|
32685
32685
|
class backflow_pollutant_sh_mass_fraction(Group):
|
|
@@ -32698,7 +32698,7 @@ class backflow_pollutant_sh_mass_fraction(Group):
|
|
|
32698
32698
|
udf=udf,
|
|
32699
32699
|
)
|
|
32700
32700
|
_child_aliases = dict(
|
|
32701
|
-
constant='value',
|
|
32701
|
+
constant=('value', 'constant'),
|
|
32702
32702
|
)
|
|
32703
32703
|
|
|
32704
32704
|
class backflow_pollutant_so_mass_fraction(Group):
|
|
@@ -32717,7 +32717,7 @@ class backflow_pollutant_so_mass_fraction(Group):
|
|
|
32717
32717
|
udf=udf,
|
|
32718
32718
|
)
|
|
32719
32719
|
_child_aliases = dict(
|
|
32720
|
-
constant='value',
|
|
32720
|
+
constant=('value', 'constant'),
|
|
32721
32721
|
)
|
|
32722
32722
|
|
|
32723
32723
|
class backflow_soot_mass_fraction(Group):
|
|
@@ -32736,7 +32736,7 @@ class backflow_soot_mass_fraction(Group):
|
|
|
32736
32736
|
udf=udf,
|
|
32737
32737
|
)
|
|
32738
32738
|
_child_aliases = dict(
|
|
32739
|
-
constant='value',
|
|
32739
|
+
constant=('value', 'constant'),
|
|
32740
32740
|
)
|
|
32741
32741
|
|
|
32742
32742
|
class backflow_nuclei(Group):
|
|
@@ -32755,7 +32755,7 @@ class backflow_nuclei(Group):
|
|
|
32755
32755
|
udf=udf,
|
|
32756
32756
|
)
|
|
32757
32757
|
_child_aliases = dict(
|
|
32758
|
-
constant='value',
|
|
32758
|
+
constant=('value', 'constant'),
|
|
32759
32759
|
)
|
|
32760
32760
|
|
|
32761
32761
|
class backflow_tar_mass_fraction(Group):
|
|
@@ -32774,7 +32774,7 @@ class backflow_tar_mass_fraction(Group):
|
|
|
32774
32774
|
udf=udf,
|
|
32775
32775
|
)
|
|
32776
32776
|
_child_aliases = dict(
|
|
32777
|
-
constant='value',
|
|
32777
|
+
constant=('value', 'constant'),
|
|
32778
32778
|
)
|
|
32779
32779
|
|
|
32780
32780
|
class backflow_pollutant_hg_mass_fraction(Group):
|
|
@@ -32793,7 +32793,7 @@ class backflow_pollutant_hg_mass_fraction(Group):
|
|
|
32793
32793
|
udf=udf,
|
|
32794
32794
|
)
|
|
32795
32795
|
_child_aliases = dict(
|
|
32796
|
-
constant='value',
|
|
32796
|
+
constant=('value', 'constant'),
|
|
32797
32797
|
)
|
|
32798
32798
|
|
|
32799
32799
|
class backflow_pollutant_hgcl2_mass_fraction(Group):
|
|
@@ -32812,7 +32812,7 @@ class backflow_pollutant_hgcl2_mass_fraction(Group):
|
|
|
32812
32812
|
udf=udf,
|
|
32813
32813
|
)
|
|
32814
32814
|
_child_aliases = dict(
|
|
32815
|
-
constant='value',
|
|
32815
|
+
constant=('value', 'constant'),
|
|
32816
32816
|
)
|
|
32817
32817
|
|
|
32818
32818
|
class backflow_pollutant_hcl_mass_fraction(Group):
|
|
@@ -32831,7 +32831,7 @@ class backflow_pollutant_hcl_mass_fraction(Group):
|
|
|
32831
32831
|
udf=udf,
|
|
32832
32832
|
)
|
|
32833
32833
|
_child_aliases = dict(
|
|
32834
|
-
constant='value',
|
|
32834
|
+
constant=('value', 'constant'),
|
|
32835
32835
|
)
|
|
32836
32836
|
|
|
32837
32837
|
class backflow_pollutant_hgo_mass_fraction(Group):
|
|
@@ -32850,7 +32850,7 @@ class backflow_pollutant_hgo_mass_fraction(Group):
|
|
|
32850
32850
|
udf=udf,
|
|
32851
32851
|
)
|
|
32852
32852
|
_child_aliases = dict(
|
|
32853
|
-
constant='value',
|
|
32853
|
+
constant=('value', 'constant'),
|
|
32854
32854
|
)
|
|
32855
32855
|
|
|
32856
32856
|
class backflow_pollutant_cl_mass_fraction(Group):
|
|
@@ -32869,7 +32869,7 @@ class backflow_pollutant_cl_mass_fraction(Group):
|
|
|
32869
32869
|
udf=udf,
|
|
32870
32870
|
)
|
|
32871
32871
|
_child_aliases = dict(
|
|
32872
|
-
constant='value',
|
|
32872
|
+
constant=('value', 'constant'),
|
|
32873
32873
|
)
|
|
32874
32874
|
|
|
32875
32875
|
class backflow_pollutant_cl2_mass_fraction(Group):
|
|
@@ -32888,7 +32888,7 @@ class backflow_pollutant_cl2_mass_fraction(Group):
|
|
|
32888
32888
|
udf=udf,
|
|
32889
32889
|
)
|
|
32890
32890
|
_child_aliases = dict(
|
|
32891
|
-
constant='value',
|
|
32891
|
+
constant=('value', 'constant'),
|
|
32892
32892
|
)
|
|
32893
32893
|
|
|
32894
32894
|
class backflow_pollutant_hgcl_mass_fraction(Group):
|
|
@@ -32907,7 +32907,7 @@ class backflow_pollutant_hgcl_mass_fraction(Group):
|
|
|
32907
32907
|
udf=udf,
|
|
32908
32908
|
)
|
|
32909
32909
|
_child_aliases = dict(
|
|
32910
|
-
constant='value',
|
|
32910
|
+
constant=('value', 'constant'),
|
|
32911
32911
|
)
|
|
32912
32912
|
|
|
32913
32913
|
class backflow_pollutant_hocl_mass_fraction(Group):
|
|
@@ -32926,7 +32926,7 @@ class backflow_pollutant_hocl_mass_fraction(Group):
|
|
|
32926
32926
|
udf=udf,
|
|
32927
32927
|
)
|
|
32928
32928
|
_child_aliases = dict(
|
|
32929
|
-
constant='value',
|
|
32929
|
+
constant=('value', 'constant'),
|
|
32930
32930
|
)
|
|
32931
32931
|
|
|
32932
32932
|
class tss_scalar_child(Group):
|
|
@@ -32945,7 +32945,7 @@ class tss_scalar_child(Group):
|
|
|
32945
32945
|
udf=udf,
|
|
32946
32946
|
)
|
|
32947
32947
|
_child_aliases = dict(
|
|
32948
|
-
constant='value',
|
|
32948
|
+
constant=('value', 'constant'),
|
|
32949
32949
|
)
|
|
32950
32950
|
|
|
32951
32951
|
class tss_scalar(NamedObject[tss_scalar_child], _NonCreatableNamedObjectMixin[tss_scalar_child]):
|
|
@@ -33014,43 +33014,43 @@ class species_5(Group):
|
|
|
33014
33014
|
tss_scalar=tss_scalar,
|
|
33015
33015
|
)
|
|
33016
33016
|
_child_aliases = dict(
|
|
33017
|
-
ecfm_sigma='backflow_flame_area_density',
|
|
33018
|
-
fmean='mean_mixture_fraction',
|
|
33019
|
-
fmean2='secondary_mean_mixture_fraction',
|
|
33020
|
-
fvar='mixture_fraction_variance',
|
|
33021
|
-
fvar2='secondary_mixture_fraction_variance',
|
|
33022
|
-
inert='backflow_inert_stream',
|
|
33023
|
-
mf='backflow_species_mass_fraction',
|
|
33024
|
-
mole_fraction='species_mole_fraction',
|
|
33025
|
-
pollut_cl='backflow_pollutant_cl_mass_fraction',
|
|
33026
|
-
pollut_cl2='backflow_pollutant_cl2_mass_fraction',
|
|
33027
|
-
pollut_ctar='backflow_tar_mass_fraction',
|
|
33028
|
-
pollut_h2s='backflow_pollutant_h2s_mass_fraction',
|
|
33029
|
-
pollut_hcl='backflow_pollutant_hcl_mass_fraction',
|
|
33030
|
-
pollut_hcn='backflow_pollutant_hcn_mass_fraction',
|
|
33031
|
-
pollut_hg='backflow_pollutant_hg_mass_fraction',
|
|
33032
|
-
pollut_hgcl='backflow_pollutant_hgcl_mass_fraction',
|
|
33033
|
-
pollut_hgcl2='backflow_pollutant_hgcl2_mass_fraction',
|
|
33034
|
-
pollut_hgo='backflow_pollutant_hgo_mass_fraction',
|
|
33035
|
-
pollut_hnco='backflow_pollutant_hnco_mass_fraction',
|
|
33036
|
-
pollut_hocl='backflow_pollutant_hocl_mass_fraction',
|
|
33037
|
-
pollut_n2o='backflow_pollutant_n2o_mass_fraction',
|
|
33038
|
-
pollut_nco='backflow_pollutant_nco_mass_fraction',
|
|
33039
|
-
pollut_nh3='backflow_pollutant_nh3_mass_fraction',
|
|
33040
|
-
pollut_no='backflow_pollutant_no_mass_fraction',
|
|
33041
|
-
pollut_nuclei='backflow_nuclei',
|
|
33042
|
-
pollut_sh='backflow_pollutant_sh_mass_fraction',
|
|
33043
|
-
pollut_so='backflow_pollutant_so_mass_fraction',
|
|
33044
|
-
pollut_so2='backflow_pollutant_so2_mass_fraction',
|
|
33045
|
-
pollut_so3='backflow_pollutant_so3_mass_fraction',
|
|
33046
|
-
pollut_soot='backflow_soot_mass_fraction',
|
|
33047
|
-
pollut_urea='backflow_pollutant_urea_mass_fraction',
|
|
33048
|
-
premixc='backflow_progress_variable',
|
|
33049
|
-
premixc_var='backflow_progress_variable_variance',
|
|
33050
|
-
prob_mode_1='backflow_mixture_fraction',
|
|
33051
|
-
prob_mode_2='backflow_mode_2_probability',
|
|
33052
|
-
prob_mode_3='backflow_mode_3_probability',
|
|
33053
|
-
species_in_mole_fractions='specify_species_in_mole_fractions',
|
|
33017
|
+
ecfm_sigma=('backflow_flame_area_density', 'ecfm-sigma'),
|
|
33018
|
+
fmean=('mean_mixture_fraction', 'fmean'),
|
|
33019
|
+
fmean2=('secondary_mean_mixture_fraction', 'fmean2'),
|
|
33020
|
+
fvar=('mixture_fraction_variance', 'fvar'),
|
|
33021
|
+
fvar2=('secondary_mixture_fraction_variance', 'fvar2'),
|
|
33022
|
+
inert=('backflow_inert_stream', 'inert'),
|
|
33023
|
+
mf=('backflow_species_mass_fraction', 'mf'),
|
|
33024
|
+
mole_fraction=('species_mole_fraction', 'mole-fraction'),
|
|
33025
|
+
pollut_cl=('backflow_pollutant_cl_mass_fraction', 'pollut_cl'),
|
|
33026
|
+
pollut_cl2=('backflow_pollutant_cl2_mass_fraction', 'pollut_cl2'),
|
|
33027
|
+
pollut_ctar=('backflow_tar_mass_fraction', 'pollut_ctar'),
|
|
33028
|
+
pollut_h2s=('backflow_pollutant_h2s_mass_fraction', 'pollut_h2s'),
|
|
33029
|
+
pollut_hcl=('backflow_pollutant_hcl_mass_fraction', 'pollut_hcl'),
|
|
33030
|
+
pollut_hcn=('backflow_pollutant_hcn_mass_fraction', 'pollut_hcn'),
|
|
33031
|
+
pollut_hg=('backflow_pollutant_hg_mass_fraction', 'pollut_hg'),
|
|
33032
|
+
pollut_hgcl=('backflow_pollutant_hgcl_mass_fraction', 'pollut_hgcl'),
|
|
33033
|
+
pollut_hgcl2=('backflow_pollutant_hgcl2_mass_fraction', 'pollut_hgcl2'),
|
|
33034
|
+
pollut_hgo=('backflow_pollutant_hgo_mass_fraction', 'pollut_hgo'),
|
|
33035
|
+
pollut_hnco=('backflow_pollutant_hnco_mass_fraction', 'pollut_hnco'),
|
|
33036
|
+
pollut_hocl=('backflow_pollutant_hocl_mass_fraction', 'pollut_hocl'),
|
|
33037
|
+
pollut_n2o=('backflow_pollutant_n2o_mass_fraction', 'pollut_n2o'),
|
|
33038
|
+
pollut_nco=('backflow_pollutant_nco_mass_fraction', 'pollut_nco'),
|
|
33039
|
+
pollut_nh3=('backflow_pollutant_nh3_mass_fraction', 'pollut_nh3'),
|
|
33040
|
+
pollut_no=('backflow_pollutant_no_mass_fraction', 'pollut_no'),
|
|
33041
|
+
pollut_nuclei=('backflow_nuclei', 'pollut_nuclei'),
|
|
33042
|
+
pollut_sh=('backflow_pollutant_sh_mass_fraction', 'pollut_sh'),
|
|
33043
|
+
pollut_so=('backflow_pollutant_so_mass_fraction', 'pollut_so'),
|
|
33044
|
+
pollut_so2=('backflow_pollutant_so2_mass_fraction', 'pollut_so2'),
|
|
33045
|
+
pollut_so3=('backflow_pollutant_so3_mass_fraction', 'pollut_so3'),
|
|
33046
|
+
pollut_soot=('backflow_soot_mass_fraction', 'pollut_soot'),
|
|
33047
|
+
pollut_urea=('backflow_pollutant_urea_mass_fraction', 'pollut_urea'),
|
|
33048
|
+
premixc=('backflow_progress_variable', 'premixc'),
|
|
33049
|
+
premixc_var=('backflow_progress_variable_variance', 'premixc-var'),
|
|
33050
|
+
prob_mode_1=('backflow_mixture_fraction', 'prob-mode-1'),
|
|
33051
|
+
prob_mode_2=('backflow_mode_2_probability', 'prob-mode-2'),
|
|
33052
|
+
prob_mode_3=('backflow_mode_3_probability', 'prob-mode-3'),
|
|
33053
|
+
species_in_mole_fractions=('specify_species_in_mole_fractions', 'species-in-mole-fractions?'),
|
|
33054
33054
|
)
|
|
33055
33055
|
|
|
33056
33056
|
class discrete_phase_bc_type(String, AllowedValuesMixin):
|
|
@@ -33109,9 +33109,9 @@ class dpm(Group):
|
|
|
33109
33109
|
mixing_plane_thread=mixing_plane_thread,
|
|
33110
33110
|
)
|
|
33111
33111
|
_child_aliases = dict(
|
|
33112
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
33113
|
-
dpm_bc_type='discrete_phase_bc_type',
|
|
33114
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
33112
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
33113
|
+
dpm_bc_type=('discrete_phase_bc_type', 'dpm/bc-type'),
|
|
33114
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
33115
33115
|
)
|
|
33116
33116
|
|
|
33117
33117
|
class open_channel(Boolean):
|
|
@@ -33154,7 +33154,7 @@ class free_surface_level(Group):
|
|
|
33154
33154
|
udf=udf,
|
|
33155
33155
|
)
|
|
33156
33156
|
_child_aliases = dict(
|
|
33157
|
-
constant='value',
|
|
33157
|
+
constant=('value', 'constant'),
|
|
33158
33158
|
)
|
|
33159
33159
|
|
|
33160
33160
|
class bottom_level(Group):
|
|
@@ -33173,7 +33173,7 @@ class bottom_level(Group):
|
|
|
33173
33173
|
udf=udf,
|
|
33174
33174
|
)
|
|
33175
33175
|
_child_aliases = dict(
|
|
33176
|
-
constant='value',
|
|
33176
|
+
constant=('value', 'constant'),
|
|
33177
33177
|
)
|
|
33178
33178
|
|
|
33179
33179
|
class density_interpolation_method(String, AllowedValuesMixin):
|
|
@@ -33200,7 +33200,7 @@ class backflow_granular_temperature(Group):
|
|
|
33200
33200
|
udf=udf,
|
|
33201
33201
|
)
|
|
33202
33202
|
_child_aliases = dict(
|
|
33203
|
-
constant='value',
|
|
33203
|
+
constant=('value', 'constant'),
|
|
33204
33204
|
)
|
|
33205
33205
|
|
|
33206
33206
|
class backflow_interfacial_area_concentration(Group):
|
|
@@ -33219,7 +33219,7 @@ class backflow_interfacial_area_concentration(Group):
|
|
|
33219
33219
|
udf=udf,
|
|
33220
33220
|
)
|
|
33221
33221
|
_child_aliases = dict(
|
|
33222
|
-
constant='value',
|
|
33222
|
+
constant=('value', 'constant'),
|
|
33223
33223
|
)
|
|
33224
33224
|
|
|
33225
33225
|
class backflow_level_set_function_flux(Group):
|
|
@@ -33238,7 +33238,7 @@ class backflow_level_set_function_flux(Group):
|
|
|
33238
33238
|
udf=udf,
|
|
33239
33239
|
)
|
|
33240
33240
|
_child_aliases = dict(
|
|
33241
|
-
constant='value',
|
|
33241
|
+
constant=('value', 'constant'),
|
|
33242
33242
|
)
|
|
33243
33243
|
|
|
33244
33244
|
class volume_frac_spec_method(String, AllowedValuesMixin):
|
|
@@ -33265,7 +33265,7 @@ class backflow_volume_fraction(Group):
|
|
|
33265
33265
|
udf=udf,
|
|
33266
33266
|
)
|
|
33267
33267
|
_child_aliases = dict(
|
|
33268
|
-
constant='value',
|
|
33268
|
+
constant=('value', 'constant'),
|
|
33269
33269
|
)
|
|
33270
33270
|
|
|
33271
33271
|
class discrete_boundary_condition_child(String, AllowedValuesMixin):
|
|
@@ -33309,7 +33309,7 @@ class discrete_boundary_value_child(Group):
|
|
|
33309
33309
|
udf=udf,
|
|
33310
33310
|
)
|
|
33311
33311
|
_child_aliases = dict(
|
|
33312
|
-
constant='value',
|
|
33312
|
+
constant=('value', 'constant'),
|
|
33313
33313
|
)
|
|
33314
33314
|
|
|
33315
33315
|
class discrete_boundary_value(NamedObject[discrete_boundary_value_child], _NonCreatableNamedObjectMixin[discrete_boundary_value_child]):
|
|
@@ -33370,7 +33370,7 @@ class quadrature_moment_boundary_value_child(Group):
|
|
|
33370
33370
|
udf=udf,
|
|
33371
33371
|
)
|
|
33372
33372
|
_child_aliases = dict(
|
|
33373
|
-
constant='value',
|
|
33373
|
+
constant=('value', 'constant'),
|
|
33374
33374
|
)
|
|
33375
33375
|
|
|
33376
33376
|
class quadrature_moment_boundary_value(NamedObject[quadrature_moment_boundary_value_child], _NonCreatableNamedObjectMixin[quadrature_moment_boundary_value_child]):
|
|
@@ -33431,7 +33431,7 @@ class qbmm_boundary_value_child(Group):
|
|
|
33431
33431
|
udf=udf,
|
|
33432
33432
|
)
|
|
33433
33433
|
_child_aliases = dict(
|
|
33434
|
-
constant='value',
|
|
33434
|
+
constant=('value', 'constant'),
|
|
33435
33435
|
)
|
|
33436
33436
|
|
|
33437
33437
|
class qbmm_boundary_value(NamedObject[qbmm_boundary_value_child], _NonCreatableNamedObjectMixin[qbmm_boundary_value_child]):
|
|
@@ -33492,7 +33492,7 @@ class std_moment_boundary_value_child(Group):
|
|
|
33492
33492
|
udf=udf,
|
|
33493
33493
|
)
|
|
33494
33494
|
_child_aliases = dict(
|
|
33495
|
-
constant='value',
|
|
33495
|
+
constant=('value', 'constant'),
|
|
33496
33496
|
)
|
|
33497
33497
|
|
|
33498
33498
|
class std_moment_boundary_value(NamedObject[std_moment_boundary_value_child], _NonCreatableNamedObjectMixin[std_moment_boundary_value_child]):
|
|
@@ -33553,7 +33553,7 @@ class dqmom_boundary_value_child(Group):
|
|
|
33553
33553
|
udf=udf,
|
|
33554
33554
|
)
|
|
33555
33555
|
_child_aliases = dict(
|
|
33556
|
-
constant='value',
|
|
33556
|
+
constant=('value', 'constant'),
|
|
33557
33557
|
)
|
|
33558
33558
|
|
|
33559
33559
|
class dqmom_boundary_value(NamedObject[dqmom_boundary_value_child], _NonCreatableNamedObjectMixin[dqmom_boundary_value_child]):
|
|
@@ -33594,16 +33594,16 @@ class population_balance(Group):
|
|
|
33594
33594
|
dqmom_boundary_value=dqmom_boundary_value,
|
|
33595
33595
|
)
|
|
33596
33596
|
_child_aliases = dict(
|
|
33597
|
-
pb_disc='discrete_boundary_value',
|
|
33598
|
-
pb_disc_bc='discrete_boundary_condition',
|
|
33599
|
-
pb_dqmom='dqmom_boundary_value',
|
|
33600
|
-
pb_dqmom_bc='dqmom_boundary_condition',
|
|
33601
|
-
pb_qbmm='qbmm_boundary_value',
|
|
33602
|
-
pb_qbmm_bc='qbmm_boundary_condition',
|
|
33603
|
-
pb_qmom='quadrature_moment_boundary_value',
|
|
33604
|
-
pb_qmom_bc='quadrature_moment_boundary_condition',
|
|
33605
|
-
pb_smm='std_moment_boundary_value',
|
|
33606
|
-
pb_smm_bc='std_moment_boundary_condition',
|
|
33597
|
+
pb_disc=('discrete_boundary_value', 'pb-disc'),
|
|
33598
|
+
pb_disc_bc=('discrete_boundary_condition', 'pb-disc-bc'),
|
|
33599
|
+
pb_dqmom=('dqmom_boundary_value', 'pb-dqmom'),
|
|
33600
|
+
pb_dqmom_bc=('dqmom_boundary_condition', 'pb-dqmom-bc'),
|
|
33601
|
+
pb_qbmm=('qbmm_boundary_value', 'pb-qbmm'),
|
|
33602
|
+
pb_qbmm_bc=('qbmm_boundary_condition', 'pb-qbmm-bc'),
|
|
33603
|
+
pb_qmom=('quadrature_moment_boundary_value', 'pb-qmom'),
|
|
33604
|
+
pb_qmom_bc=('quadrature_moment_boundary_condition', 'pb-qmom-bc'),
|
|
33605
|
+
pb_smm=('std_moment_boundary_value', 'pb-smm'),
|
|
33606
|
+
pb_smm_bc=('std_moment_boundary_condition', 'pb-smm-bc'),
|
|
33607
33607
|
)
|
|
33608
33608
|
|
|
33609
33609
|
class backflow_relative_humidity(Group):
|
|
@@ -33622,7 +33622,7 @@ class backflow_relative_humidity(Group):
|
|
|
33622
33622
|
udf=udf,
|
|
33623
33623
|
)
|
|
33624
33624
|
_child_aliases = dict(
|
|
33625
|
-
constant='value',
|
|
33625
|
+
constant=('value', 'constant'),
|
|
33626
33626
|
)
|
|
33627
33627
|
|
|
33628
33628
|
class backflow_liquid_mass_fraction(Group):
|
|
@@ -33641,7 +33641,7 @@ class backflow_liquid_mass_fraction(Group):
|
|
|
33641
33641
|
udf=udf,
|
|
33642
33642
|
)
|
|
33643
33643
|
_child_aliases = dict(
|
|
33644
|
-
constant='value',
|
|
33644
|
+
constant=('value', 'constant'),
|
|
33645
33645
|
)
|
|
33646
33646
|
|
|
33647
33647
|
class backflow_log10_droplets_per_unit_volume(Group):
|
|
@@ -33660,7 +33660,7 @@ class backflow_log10_droplets_per_unit_volume(Group):
|
|
|
33660
33660
|
udf=udf,
|
|
33661
33661
|
)
|
|
33662
33662
|
_child_aliases = dict(
|
|
33663
|
-
constant='value',
|
|
33663
|
+
constant=('value', 'constant'),
|
|
33664
33664
|
)
|
|
33665
33665
|
|
|
33666
33666
|
class multiphase_2(Group):
|
|
@@ -33689,18 +33689,18 @@ class multiphase_2(Group):
|
|
|
33689
33689
|
backflow_log10_droplets_per_unit_volume=backflow_log10_droplets_per_unit_volume,
|
|
33690
33690
|
)
|
|
33691
33691
|
_child_aliases = dict(
|
|
33692
|
-
den_spec='density_interpolation_method',
|
|
33693
|
-
granular_temperature='backflow_granular_temperature',
|
|
33694
|
-
ht_bottom='bottom_level',
|
|
33695
|
-
ht_local='free_surface_level',
|
|
33696
|
-
iac='backflow_interfacial_area_concentration',
|
|
33697
|
-
lsfun='backflow_level_set_function_flux',
|
|
33698
|
-
outlet_number='outlet_group_id',
|
|
33699
|
-
vof_spec='volume_frac_spec_method',
|
|
33700
|
-
volume_fraction='backflow_volume_fraction',
|
|
33701
|
-
wsb='backflow_liquid_mass_fraction',
|
|
33702
|
-
wsf='backflow_relative_humidity',
|
|
33703
|
-
wsn='backflow_log10_droplets_per_unit_volume',
|
|
33692
|
+
den_spec=('density_interpolation_method', 'den-spec'),
|
|
33693
|
+
granular_temperature=('backflow_granular_temperature', 'granular-temperature'),
|
|
33694
|
+
ht_bottom=('bottom_level', 'ht-bottom'),
|
|
33695
|
+
ht_local=('free_surface_level', 'ht-local'),
|
|
33696
|
+
iac=('backflow_interfacial_area_concentration', 'iac'),
|
|
33697
|
+
lsfun=('backflow_level_set_function_flux', 'lsfun'),
|
|
33698
|
+
outlet_number=('outlet_group_id', 'outlet-number'),
|
|
33699
|
+
vof_spec=('volume_frac_spec_method', 'vof-spec'),
|
|
33700
|
+
volume_fraction=('backflow_volume_fraction', 'volume-fraction'),
|
|
33701
|
+
wsb=('backflow_liquid_mass_fraction', 'wsb'),
|
|
33702
|
+
wsf=('backflow_relative_humidity', 'wsf'),
|
|
33703
|
+
wsn=('backflow_log10_droplets_per_unit_volume', 'wsn'),
|
|
33704
33704
|
)
|
|
33705
33705
|
|
|
33706
33706
|
class potential_boundary_condition(String, AllowedValuesMixin):
|
|
@@ -33727,7 +33727,7 @@ class potential_boundary_value(Group):
|
|
|
33727
33727
|
udf=udf,
|
|
33728
33728
|
)
|
|
33729
33729
|
_child_aliases = dict(
|
|
33730
|
-
constant='value',
|
|
33730
|
+
constant=('value', 'constant'),
|
|
33731
33731
|
)
|
|
33732
33732
|
|
|
33733
33733
|
class electrolyte_potential_boundary_condition(String, AllowedValuesMixin):
|
|
@@ -33754,7 +33754,7 @@ class current_density_boundary_value(Group):
|
|
|
33754
33754
|
udf=udf,
|
|
33755
33755
|
)
|
|
33756
33756
|
_child_aliases = dict(
|
|
33757
|
-
constant='value',
|
|
33757
|
+
constant=('value', 'constant'),
|
|
33758
33758
|
)
|
|
33759
33759
|
|
|
33760
33760
|
class potential_1(Group):
|
|
@@ -33772,10 +33772,10 @@ class potential_1(Group):
|
|
|
33772
33772
|
current_density_boundary_value=current_density_boundary_value,
|
|
33773
33773
|
)
|
|
33774
33774
|
_child_aliases = dict(
|
|
33775
|
-
dual_potential_type='electrolyte_potential_boundary_condition',
|
|
33776
|
-
dual_potential_value='current_density_boundary_value',
|
|
33777
|
-
elec_potential_type='potential_boundary_condition',
|
|
33778
|
-
elec_potential_value='potential_boundary_value',
|
|
33775
|
+
dual_potential_type=('electrolyte_potential_boundary_condition', 'dual-potential-type'),
|
|
33776
|
+
dual_potential_value=('current_density_boundary_value', 'dual-potential-value'),
|
|
33777
|
+
elec_potential_type=('potential_boundary_condition', 'elec-potential-type'),
|
|
33778
|
+
elec_potential_value=('potential_boundary_value', 'elec-potential-value'),
|
|
33779
33779
|
)
|
|
33780
33780
|
|
|
33781
33781
|
class x_disp_boundary_condition(String, AllowedValuesMixin):
|
|
@@ -33802,7 +33802,7 @@ class x_disp_boundary_value(Group):
|
|
|
33802
33802
|
udf=udf,
|
|
33803
33803
|
)
|
|
33804
33804
|
_child_aliases = dict(
|
|
33805
|
-
constant='value',
|
|
33805
|
+
constant=('value', 'constant'),
|
|
33806
33806
|
)
|
|
33807
33807
|
|
|
33808
33808
|
class y_disp_boundary_condition(String, AllowedValuesMixin):
|
|
@@ -33829,7 +33829,7 @@ class y_disp_boundary_value(Group):
|
|
|
33829
33829
|
udf=udf,
|
|
33830
33830
|
)
|
|
33831
33831
|
_child_aliases = dict(
|
|
33832
|
-
constant='value',
|
|
33832
|
+
constant=('value', 'constant'),
|
|
33833
33833
|
)
|
|
33834
33834
|
|
|
33835
33835
|
class z_disp_boundary_condition(String, AllowedValuesMixin):
|
|
@@ -33856,7 +33856,7 @@ class z_disp_boundary_value(Group):
|
|
|
33856
33856
|
udf=udf,
|
|
33857
33857
|
)
|
|
33858
33858
|
_child_aliases = dict(
|
|
33859
|
-
constant='value',
|
|
33859
|
+
constant=('value', 'constant'),
|
|
33860
33860
|
)
|
|
33861
33861
|
|
|
33862
33862
|
class structure_1(Group):
|
|
@@ -33876,12 +33876,12 @@ class structure_1(Group):
|
|
|
33876
33876
|
z_disp_boundary_value=z_disp_boundary_value,
|
|
33877
33877
|
)
|
|
33878
33878
|
_child_aliases = dict(
|
|
33879
|
-
x_displacement_type='x_disp_boundary_condition',
|
|
33880
|
-
x_displacement_value='x_disp_boundary_value',
|
|
33881
|
-
y_displacement_type='y_disp_boundary_condition',
|
|
33882
|
-
y_displacement_value='y_disp_boundary_value',
|
|
33883
|
-
z_displacement_type='z_disp_boundary_condition',
|
|
33884
|
-
z_displacement_value='z_disp_boundary_value',
|
|
33879
|
+
x_displacement_type=('x_disp_boundary_condition', 'x-displacement-type'),
|
|
33880
|
+
x_displacement_value=('x_disp_boundary_value', 'x-displacement-value'),
|
|
33881
|
+
y_displacement_type=('y_disp_boundary_condition', 'y-displacement-type'),
|
|
33882
|
+
y_displacement_value=('y_disp_boundary_value', 'y-displacement-value'),
|
|
33883
|
+
z_displacement_type=('z_disp_boundary_condition', 'z-displacement-type'),
|
|
33884
|
+
z_displacement_value=('z_disp_boundary_value', 'z-displacement-value'),
|
|
33885
33885
|
)
|
|
33886
33886
|
|
|
33887
33887
|
class uds_bc_child(String, AllowedValuesMixin):
|
|
@@ -33925,7 +33925,7 @@ class uds_1_child(Group):
|
|
|
33925
33925
|
udf=udf,
|
|
33926
33926
|
)
|
|
33927
33927
|
_child_aliases = dict(
|
|
33928
|
-
constant='value',
|
|
33928
|
+
constant=('value', 'constant'),
|
|
33929
33929
|
)
|
|
33930
33930
|
|
|
33931
33931
|
class uds_1(NamedObject[uds_1_child], _NonCreatableNamedObjectMixin[uds_1_child]):
|
|
@@ -34151,7 +34151,7 @@ class pressure_jump_profile(Group):
|
|
|
34151
34151
|
udf=udf,
|
|
34152
34152
|
)
|
|
34153
34153
|
_child_aliases = dict(
|
|
34154
|
-
constant='value',
|
|
34154
|
+
constant=('value', 'constant'),
|
|
34155
34155
|
)
|
|
34156
34156
|
|
|
34157
34157
|
class limit_polynomial_velocity_range(Boolean):
|
|
@@ -34212,18 +34212,18 @@ class pressure_jump_specification(Group):
|
|
|
34212
34212
|
new_fan_definition=new_fan_definition,
|
|
34213
34213
|
)
|
|
34214
34214
|
_child_aliases = dict(
|
|
34215
|
-
average_dp='cal_pressure_jump_from_avg_conditions',
|
|
34216
|
-
c='pressure_jump',
|
|
34217
|
-
dir='reverse_fan_direction',
|
|
34218
|
-
dp_profile='pressure_jump_profile',
|
|
34219
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
34220
|
-
dpm_bc_type_j='discrete_phase_bc_type',
|
|
34221
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
34222
|
-
limit_range='limit_polynomial_velocity_range',
|
|
34223
|
-
new_fan_definition='new_fan_definition',
|
|
34224
|
-
profile_dp='profile_specification_of_pressure_jump',
|
|
34225
|
-
v_max='max_velocity',
|
|
34226
|
-
v_min='min_velocity',
|
|
34215
|
+
average_dp=('cal_pressure_jump_from_avg_conditions', 'average-dp?'),
|
|
34216
|
+
c=('pressure_jump', 'c'),
|
|
34217
|
+
dir=('reverse_fan_direction', 'dir'),
|
|
34218
|
+
dp_profile=('pressure_jump_profile', 'dp-profile'),
|
|
34219
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
34220
|
+
dpm_bc_type_j=('discrete_phase_bc_type', 'dpm/bc-type-j'),
|
|
34221
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
34222
|
+
limit_range=('limit_polynomial_velocity_range', 'limit-range?'),
|
|
34223
|
+
new_fan_definition=('new_fan_definition', 'new-fan-definition?'),
|
|
34224
|
+
profile_dp=('profile_specification_of_pressure_jump', 'profile-dp?'),
|
|
34225
|
+
v_max=('max_velocity', 'v-max'),
|
|
34226
|
+
v_min=('min_velocity', 'v-min'),
|
|
34227
34227
|
)
|
|
34228
34228
|
|
|
34229
34229
|
class specify_swirl_velocity(Boolean):
|
|
@@ -34310,7 +34310,7 @@ class tangential_velocity_profile(Group):
|
|
|
34310
34310
|
udf=udf,
|
|
34311
34311
|
)
|
|
34312
34312
|
_child_aliases = dict(
|
|
34313
|
-
constant='value',
|
|
34313
|
+
constant=('value', 'constant'),
|
|
34314
34314
|
)
|
|
34315
34315
|
|
|
34316
34316
|
class tangential_velocity_polynomial_coeff(RealList):
|
|
@@ -34345,7 +34345,7 @@ class radial_velocity_profile(Group):
|
|
|
34345
34345
|
udf=udf,
|
|
34346
34346
|
)
|
|
34347
34347
|
_child_aliases = dict(
|
|
34348
|
-
constant='value',
|
|
34348
|
+
constant=('value', 'constant'),
|
|
34349
34349
|
)
|
|
34350
34350
|
|
|
34351
34351
|
class radial_velocity_polynomial_coeff(RealList):
|
|
@@ -34386,16 +34386,16 @@ class swirl_velocity_specification(Group):
|
|
|
34386
34386
|
swirl_factor=swirl_factor,
|
|
34387
34387
|
)
|
|
34388
34388
|
_child_aliases = dict(
|
|
34389
|
-
axis_direction_component='fan_axis',
|
|
34390
|
-
axis_origin_component='fan_origin',
|
|
34391
|
-
fan_vr='radial_velocity_polynomial_coeff',
|
|
34392
|
-
fr='tangential_velocity_polynomial_coeff',
|
|
34393
|
-
hub='fan_hub_radius',
|
|
34394
|
-
profile_vr='profile_specification_of_radial_velocity',
|
|
34395
|
-
profile_vt='profile_specification_of_tangential_velocity',
|
|
34396
|
-
swirl_model='specify_swirl_velocity',
|
|
34397
|
-
vr_profile='radial_velocity_profile',
|
|
34398
|
-
vt_profile='tangential_velocity_profile',
|
|
34389
|
+
axis_direction_component=('fan_axis', 'axis-direction-component'),
|
|
34390
|
+
axis_origin_component=('fan_origin', 'axis-origin-component'),
|
|
34391
|
+
fan_vr=('radial_velocity_polynomial_coeff', 'fan-vr'),
|
|
34392
|
+
fr=('tangential_velocity_polynomial_coeff', 'fr'),
|
|
34393
|
+
hub=('fan_hub_radius', 'hub'),
|
|
34394
|
+
profile_vr=('profile_specification_of_radial_velocity', 'profile-vr?'),
|
|
34395
|
+
profile_vt=('profile_specification_of_tangential_velocity', 'profile-vt?'),
|
|
34396
|
+
swirl_model=('specify_swirl_velocity', 'swirl-model?'),
|
|
34397
|
+
vr_profile=('radial_velocity_profile', 'vr-profile'),
|
|
34398
|
+
vt_profile=('tangential_velocity_profile', 'vt-profile'),
|
|
34399
34399
|
)
|
|
34400
34400
|
|
|
34401
34401
|
class phase_4_child(Group):
|
|
@@ -34526,7 +34526,7 @@ class gauge_total_pressure(Group):
|
|
|
34526
34526
|
udf=udf,
|
|
34527
34527
|
)
|
|
34528
34528
|
_child_aliases = dict(
|
|
34529
|
-
constant='value',
|
|
34529
|
+
constant=('value', 'constant'),
|
|
34530
34530
|
)
|
|
34531
34531
|
|
|
34532
34532
|
class supersonic_or_initial_gauge_pressure(Group):
|
|
@@ -34545,7 +34545,7 @@ class supersonic_or_initial_gauge_pressure(Group):
|
|
|
34545
34545
|
udf=udf,
|
|
34546
34546
|
)
|
|
34547
34547
|
_child_aliases = dict(
|
|
34548
|
-
constant='value',
|
|
34548
|
+
constant=('value', 'constant'),
|
|
34549
34549
|
)
|
|
34550
34550
|
|
|
34551
34551
|
class direction_specification_method(String, AllowedValuesMixin):
|
|
@@ -34572,7 +34572,7 @@ class direction_vector_child(Group):
|
|
|
34572
34572
|
udf=udf,
|
|
34573
34573
|
)
|
|
34574
34574
|
_child_aliases = dict(
|
|
34575
|
-
constant='value',
|
|
34575
|
+
constant=('value', 'constant'),
|
|
34576
34576
|
)
|
|
34577
34577
|
|
|
34578
34578
|
class direction_vector(ListObject[direction_vector_child]):
|
|
@@ -34643,19 +34643,19 @@ class momentum_1(Group):
|
|
|
34643
34643
|
strength=strength,
|
|
34644
34644
|
)
|
|
34645
34645
|
_child_aliases = dict(
|
|
34646
|
-
ac_options='acoustic_wave_model',
|
|
34647
|
-
ac_wave='incoming_wave',
|
|
34648
|
-
axis_direction_component='axis_direction',
|
|
34649
|
-
axis_origin_component='axis_origin',
|
|
34650
|
-
b='loss_coefficient',
|
|
34651
|
-
direction_spec='direction_specification_method',
|
|
34652
|
-
direction_vector_components='direction_vector',
|
|
34653
|
-
flow_direction_component='flow_direction',
|
|
34654
|
-
frame_of_reference='reference_frame',
|
|
34655
|
-
impedance_0='impedance_zero_order_term',
|
|
34656
|
-
impedance_1='real_pole_series',
|
|
34657
|
-
impedance_2='complex_pole_series',
|
|
34658
|
-
p0='gauge_total_pressure',
|
|
34646
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
34647
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
34648
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
34649
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
34650
|
+
b=('loss_coefficient', 'b'),
|
|
34651
|
+
direction_spec=('direction_specification_method', 'direction-spec'),
|
|
34652
|
+
direction_vector_components=('direction_vector', 'direction-vector-components'),
|
|
34653
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
34654
|
+
frame_of_reference=('reference_frame', 'frame-of-reference'),
|
|
34655
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
34656
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
34657
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
34658
|
+
p0=('gauge_total_pressure', 'p0'),
|
|
34659
34659
|
)
|
|
34660
34660
|
|
|
34661
34661
|
class number_of_vortices(Integer):
|
|
@@ -34770,7 +34770,7 @@ class modified_turbulent_viscosity(Group):
|
|
|
34770
34770
|
udf=udf,
|
|
34771
34771
|
)
|
|
34772
34772
|
_child_aliases = dict(
|
|
34773
|
-
constant='value',
|
|
34773
|
+
constant=('value', 'constant'),
|
|
34774
34774
|
)
|
|
34775
34775
|
|
|
34776
34776
|
class laminar_kinetic_energy(Group):
|
|
@@ -34789,7 +34789,7 @@ class laminar_kinetic_energy(Group):
|
|
|
34789
34789
|
udf=udf,
|
|
34790
34790
|
)
|
|
34791
34791
|
_child_aliases = dict(
|
|
34792
|
-
constant='value',
|
|
34792
|
+
constant=('value', 'constant'),
|
|
34793
34793
|
)
|
|
34794
34794
|
|
|
34795
34795
|
class intermittency(Group):
|
|
@@ -34808,7 +34808,7 @@ class intermittency(Group):
|
|
|
34808
34808
|
udf=udf,
|
|
34809
34809
|
)
|
|
34810
34810
|
_child_aliases = dict(
|
|
34811
|
-
constant='value',
|
|
34811
|
+
constant=('value', 'constant'),
|
|
34812
34812
|
)
|
|
34813
34813
|
|
|
34814
34814
|
class turbulent_kinetic_energy(Group):
|
|
@@ -34827,7 +34827,7 @@ class turbulent_kinetic_energy(Group):
|
|
|
34827
34827
|
udf=udf,
|
|
34828
34828
|
)
|
|
34829
34829
|
_child_aliases = dict(
|
|
34830
|
-
constant='value',
|
|
34830
|
+
constant=('value', 'constant'),
|
|
34831
34831
|
)
|
|
34832
34832
|
|
|
34833
34833
|
class turbulent_dissipation_rate(Group):
|
|
@@ -34846,7 +34846,7 @@ class turbulent_dissipation_rate(Group):
|
|
|
34846
34846
|
udf=udf,
|
|
34847
34847
|
)
|
|
34848
34848
|
_child_aliases = dict(
|
|
34849
|
-
constant='value',
|
|
34849
|
+
constant=('value', 'constant'),
|
|
34850
34850
|
)
|
|
34851
34851
|
|
|
34852
34852
|
class specific_dissipation_rate(Group):
|
|
@@ -34865,7 +34865,7 @@ class specific_dissipation_rate(Group):
|
|
|
34865
34865
|
udf=udf,
|
|
34866
34866
|
)
|
|
34867
34867
|
_child_aliases = dict(
|
|
34868
|
-
constant='value',
|
|
34868
|
+
constant=('value', 'constant'),
|
|
34869
34869
|
)
|
|
34870
34870
|
|
|
34871
34871
|
class velocity_variance_scale(Group):
|
|
@@ -34884,7 +34884,7 @@ class velocity_variance_scale(Group):
|
|
|
34884
34884
|
udf=udf,
|
|
34885
34885
|
)
|
|
34886
34886
|
_child_aliases = dict(
|
|
34887
|
-
constant='value',
|
|
34887
|
+
constant=('value', 'constant'),
|
|
34888
34888
|
)
|
|
34889
34889
|
|
|
34890
34890
|
class turbulent_intensity(Real):
|
|
@@ -34935,7 +34935,7 @@ class turbulent_viscosity_ratio_profile(Group):
|
|
|
34935
34935
|
udf=udf,
|
|
34936
34936
|
)
|
|
34937
34937
|
_child_aliases = dict(
|
|
34938
|
-
constant='value',
|
|
34938
|
+
constant=('value', 'constant'),
|
|
34939
34939
|
)
|
|
34940
34940
|
|
|
34941
34941
|
class number_of_fourier_modes(Integer):
|
|
@@ -34962,7 +34962,7 @@ class uu_reynolds_stresses(Group):
|
|
|
34962
34962
|
udf=udf,
|
|
34963
34963
|
)
|
|
34964
34964
|
_child_aliases = dict(
|
|
34965
|
-
constant='value',
|
|
34965
|
+
constant=('value', 'constant'),
|
|
34966
34966
|
)
|
|
34967
34967
|
|
|
34968
34968
|
class vv_reynolds_stresses(Group):
|
|
@@ -34981,7 +34981,7 @@ class vv_reynolds_stresses(Group):
|
|
|
34981
34981
|
udf=udf,
|
|
34982
34982
|
)
|
|
34983
34983
|
_child_aliases = dict(
|
|
34984
|
-
constant='value',
|
|
34984
|
+
constant=('value', 'constant'),
|
|
34985
34985
|
)
|
|
34986
34986
|
|
|
34987
34987
|
class ww_reynolds_stresses(Group):
|
|
@@ -35000,7 +35000,7 @@ class ww_reynolds_stresses(Group):
|
|
|
35000
35000
|
udf=udf,
|
|
35001
35001
|
)
|
|
35002
35002
|
_child_aliases = dict(
|
|
35003
|
-
constant='value',
|
|
35003
|
+
constant=('value', 'constant'),
|
|
35004
35004
|
)
|
|
35005
35005
|
|
|
35006
35006
|
class uv_reynolds_stresses(Group):
|
|
@@ -35019,7 +35019,7 @@ class uv_reynolds_stresses(Group):
|
|
|
35019
35019
|
udf=udf,
|
|
35020
35020
|
)
|
|
35021
35021
|
_child_aliases = dict(
|
|
35022
|
-
constant='value',
|
|
35022
|
+
constant=('value', 'constant'),
|
|
35023
35023
|
)
|
|
35024
35024
|
|
|
35025
35025
|
class vw_reynolds_stresses(Group):
|
|
@@ -35038,7 +35038,7 @@ class vw_reynolds_stresses(Group):
|
|
|
35038
35038
|
udf=udf,
|
|
35039
35039
|
)
|
|
35040
35040
|
_child_aliases = dict(
|
|
35041
|
-
constant='value',
|
|
35041
|
+
constant=('value', 'constant'),
|
|
35042
35042
|
)
|
|
35043
35043
|
|
|
35044
35044
|
class uw_reynolds_stresses(Group):
|
|
@@ -35057,7 +35057,7 @@ class uw_reynolds_stresses(Group):
|
|
|
35057
35057
|
udf=udf,
|
|
35058
35058
|
)
|
|
35059
35059
|
_child_aliases = dict(
|
|
35060
|
-
constant='value',
|
|
35060
|
+
constant=('value', 'constant'),
|
|
35061
35061
|
)
|
|
35062
35062
|
|
|
35063
35063
|
class turbulence_1(Group):
|
|
@@ -35107,40 +35107,40 @@ class turbulence_1(Group):
|
|
|
35107
35107
|
uw_reynolds_stresses=uw_reynolds_stresses,
|
|
35108
35108
|
)
|
|
35109
35109
|
_child_aliases = dict(
|
|
35110
|
-
e='turbulent_dissipation_rate',
|
|
35111
|
-
intermit='intermittency',
|
|
35112
|
-
k='turbulent_kinetic_energy',
|
|
35113
|
-
kl='laminar_kinetic_energy',
|
|
35114
|
-
ksgs='subgrid_kinetic_energy',
|
|
35115
|
-
ksgs_spec='subgrid_kinetic_energy_specification',
|
|
35116
|
-
nut='modified_turbulent_viscosity',
|
|
35117
|
-
o='specific_dissipation_rate',
|
|
35118
|
-
rfg_number_of_modes='number_of_fourier_modes',
|
|
35119
|
-
rst_spec='reynolds_stress_specification',
|
|
35120
|
-
sgs_turb_intensity='subgrid_turbulent_intensity',
|
|
35121
|
-
stg_dw_limiter='wall_distance',
|
|
35122
|
-
stg_scale_limiter_type='scale_search_limiter',
|
|
35123
|
-
stg_ti_limiter='stg_turbulent_intensity',
|
|
35124
|
-
stg_tvr_limiter='stg_turbulent_viscosity_ratio',
|
|
35125
|
-
turb_hydraulic_diam='hydraulic_diameter',
|
|
35126
|
-
turb_intensity='turbulent_intensity',
|
|
35127
|
-
turb_length_scale='turbulent_length_scale',
|
|
35128
|
-
turb_viscosity_ratio='turbulent_viscosity_ratio',
|
|
35129
|
-
turb_viscosity_ratio_profile='turbulent_viscosity_ratio_profile',
|
|
35130
|
-
turbulent_specification='turbulence_specification',
|
|
35131
|
-
uu='uu_reynolds_stresses',
|
|
35132
|
-
uv='uv_reynolds_stresses',
|
|
35133
|
-
uw='uw_reynolds_stresses',
|
|
35134
|
-
v2='velocity_variance_scale',
|
|
35135
|
-
vm_mass_conservation='satisfy_mass_conservation',
|
|
35136
|
-
vm_number_of_vortices='number_of_vortices',
|
|
35137
|
-
vm_streamwise_fluct='streamwise_fluctuations',
|
|
35138
|
-
volumetric_synthetic_turbulence_generator_option='forcing_zone_thickness',
|
|
35139
|
-
volumetric_synthetic_turbulence_generator_option_thickness='volumetric_thickness',
|
|
35140
|
-
volumetric_synthetic_turbulence_generator='volumetric_forcing',
|
|
35141
|
-
vv='vv_reynolds_stresses',
|
|
35142
|
-
vw='vw_reynolds_stresses',
|
|
35143
|
-
ww='ww_reynolds_stresses',
|
|
35110
|
+
e=('turbulent_dissipation_rate', 'e'),
|
|
35111
|
+
intermit=('intermittency', 'intermit'),
|
|
35112
|
+
k=('turbulent_kinetic_energy', 'k'),
|
|
35113
|
+
kl=('laminar_kinetic_energy', 'kl'),
|
|
35114
|
+
ksgs=('subgrid_kinetic_energy', 'ksgs'),
|
|
35115
|
+
ksgs_spec=('subgrid_kinetic_energy_specification', 'ksgs-spec'),
|
|
35116
|
+
nut=('modified_turbulent_viscosity', 'nut'),
|
|
35117
|
+
o=('specific_dissipation_rate', 'o'),
|
|
35118
|
+
rfg_number_of_modes=('number_of_fourier_modes', 'rfg-number-of-modes'),
|
|
35119
|
+
rst_spec=('reynolds_stress_specification', 'rst-spec'),
|
|
35120
|
+
sgs_turb_intensity=('subgrid_turbulent_intensity', 'sgs-turb-intensity'),
|
|
35121
|
+
stg_dw_limiter=('wall_distance', 'stg-dw-limiter'),
|
|
35122
|
+
stg_scale_limiter_type=('scale_search_limiter', 'stg-scale-limiter-type'),
|
|
35123
|
+
stg_ti_limiter=('stg_turbulent_intensity', 'stg-ti-limiter'),
|
|
35124
|
+
stg_tvr_limiter=('stg_turbulent_viscosity_ratio', 'stg-tvr-limiter'),
|
|
35125
|
+
turb_hydraulic_diam=('hydraulic_diameter', 'turb-hydraulic-diam'),
|
|
35126
|
+
turb_intensity=('turbulent_intensity', 'turb-intensity'),
|
|
35127
|
+
turb_length_scale=('turbulent_length_scale', 'turb-length-scale'),
|
|
35128
|
+
turb_viscosity_ratio=('turbulent_viscosity_ratio', 'turb-viscosity-ratio'),
|
|
35129
|
+
turb_viscosity_ratio_profile=('turbulent_viscosity_ratio_profile', 'turb-viscosity-ratio-profile'),
|
|
35130
|
+
turbulent_specification=('turbulence_specification', 'turbulent-specification'),
|
|
35131
|
+
uu=('uu_reynolds_stresses', 'uu'),
|
|
35132
|
+
uv=('uv_reynolds_stresses', 'uv'),
|
|
35133
|
+
uw=('uw_reynolds_stresses', 'uw'),
|
|
35134
|
+
v2=('velocity_variance_scale', 'v2'),
|
|
35135
|
+
vm_mass_conservation=('satisfy_mass_conservation', 'vm-mass-conservation?'),
|
|
35136
|
+
vm_number_of_vortices=('number_of_vortices', 'vm-number-of-vortices'),
|
|
35137
|
+
vm_streamwise_fluct=('streamwise_fluctuations', 'vm-streamwise-fluct?'),
|
|
35138
|
+
volumetric_synthetic_turbulence_generator_option=('forcing_zone_thickness', 'volumetric-synthetic-turbulence-generator-option'),
|
|
35139
|
+
volumetric_synthetic_turbulence_generator_option_thickness=('volumetric_thickness', 'volumetric-synthetic-turbulence-generator-option-thickness'),
|
|
35140
|
+
volumetric_synthetic_turbulence_generator=('volumetric_forcing', 'volumetric-synthetic-turbulence-generator?'),
|
|
35141
|
+
vv=('vv_reynolds_stresses', 'vv'),
|
|
35142
|
+
vw=('vw_reynolds_stresses', 'vw'),
|
|
35143
|
+
ww=('ww_reynolds_stresses', 'ww'),
|
|
35144
35144
|
)
|
|
35145
35145
|
|
|
35146
35146
|
class total_temperature(Group):
|
|
@@ -35159,7 +35159,7 @@ class total_temperature(Group):
|
|
|
35159
35159
|
udf=udf,
|
|
35160
35160
|
)
|
|
35161
35161
|
_child_aliases = dict(
|
|
35162
|
-
constant='value',
|
|
35162
|
+
constant=('value', 'constant'),
|
|
35163
35163
|
)
|
|
35164
35164
|
|
|
35165
35165
|
class thermal_1(Group):
|
|
@@ -35174,7 +35174,7 @@ class thermal_1(Group):
|
|
|
35174
35174
|
total_temperature=total_temperature,
|
|
35175
35175
|
)
|
|
35176
35176
|
_child_aliases = dict(
|
|
35177
|
-
t0='total_temperature',
|
|
35177
|
+
t0=('total_temperature', 't0'),
|
|
35178
35178
|
)
|
|
35179
35179
|
|
|
35180
35180
|
class radiating_s2s_surface(Boolean):
|
|
@@ -35211,18 +35211,18 @@ class radiation_2(Group):
|
|
|
35211
35211
|
internal_emissivity=internal_emissivity,
|
|
35212
35212
|
)
|
|
35213
35213
|
_child_aliases = dict(
|
|
35214
|
-
band_q_irrad='direct_irradiation',
|
|
35215
|
-
band_q_irrad_diffuse='diffuse_irradiation',
|
|
35216
|
-
coll_dphi='phi_width_of_beam',
|
|
35217
|
-
coll_dtheta='theta_width_of_beam',
|
|
35218
|
-
in_emiss='internal_emissivity',
|
|
35219
|
-
radial_direction_component='radial_direction',
|
|
35220
|
-
solar_direction='use_beeam_direction_from_solar_load_model_settings',
|
|
35221
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
35222
|
-
solar_irradiation='use_irradiation_from_solar_soad_model_settings',
|
|
35223
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
35224
|
-
t_b_b='black_body_temperature',
|
|
35225
|
-
t_b_b_spec='external_black_body_temperature_method',
|
|
35214
|
+
band_q_irrad=('direct_irradiation', 'band-q-irrad'),
|
|
35215
|
+
band_q_irrad_diffuse=('diffuse_irradiation', 'band-q-irrad-diffuse'),
|
|
35216
|
+
coll_dphi=('phi_width_of_beam', 'coll-dphi'),
|
|
35217
|
+
coll_dtheta=('theta_width_of_beam', 'coll-dtheta'),
|
|
35218
|
+
in_emiss=('internal_emissivity', 'in-emiss'),
|
|
35219
|
+
radial_direction_component=('radial_direction', 'radial-direction-component'),
|
|
35220
|
+
solar_direction=('use_beeam_direction_from_solar_load_model_settings', 'solar-direction?'),
|
|
35221
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
35222
|
+
solar_irradiation=('use_irradiation_from_solar_soad_model_settings', 'solar-irradiation?'),
|
|
35223
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
35224
|
+
t_b_b=('black_body_temperature', 't-b-b'),
|
|
35225
|
+
t_b_b_spec=('external_black_body_temperature_method', 't-b-b-spec'),
|
|
35226
35226
|
)
|
|
35227
35227
|
|
|
35228
35228
|
class mixture_fraction(Group):
|
|
@@ -35241,7 +35241,7 @@ class mixture_fraction(Group):
|
|
|
35241
35241
|
udf=udf,
|
|
35242
35242
|
)
|
|
35243
35243
|
_child_aliases = dict(
|
|
35244
|
-
constant='value',
|
|
35244
|
+
constant=('value', 'constant'),
|
|
35245
35245
|
)
|
|
35246
35246
|
|
|
35247
35247
|
class mode_2_probability(Group):
|
|
@@ -35260,7 +35260,7 @@ class mode_2_probability(Group):
|
|
|
35260
35260
|
udf=udf,
|
|
35261
35261
|
)
|
|
35262
35262
|
_child_aliases = dict(
|
|
35263
|
-
constant='value',
|
|
35263
|
+
constant=('value', 'constant'),
|
|
35264
35264
|
)
|
|
35265
35265
|
|
|
35266
35266
|
class mode_3_probability(Group):
|
|
@@ -35279,7 +35279,7 @@ class mode_3_probability(Group):
|
|
|
35279
35279
|
udf=udf,
|
|
35280
35280
|
)
|
|
35281
35281
|
_child_aliases = dict(
|
|
35282
|
-
constant='value',
|
|
35282
|
+
constant=('value', 'constant'),
|
|
35283
35283
|
)
|
|
35284
35284
|
|
|
35285
35285
|
class equilibrate_inlet_stream(Boolean):
|
|
@@ -35306,7 +35306,7 @@ class species_mass_fraction_child(Group):
|
|
|
35306
35306
|
udf=udf,
|
|
35307
35307
|
)
|
|
35308
35308
|
_child_aliases = dict(
|
|
35309
|
-
constant='value',
|
|
35309
|
+
constant=('value', 'constant'),
|
|
35310
35310
|
)
|
|
35311
35311
|
|
|
35312
35312
|
class species_mass_fraction(NamedObject[species_mass_fraction_child], _NonCreatableNamedObjectMixin[species_mass_fraction_child]):
|
|
@@ -35342,7 +35342,7 @@ class progress_variable(Group):
|
|
|
35342
35342
|
udf=udf,
|
|
35343
35343
|
)
|
|
35344
35344
|
_child_aliases = dict(
|
|
35345
|
-
constant='value',
|
|
35345
|
+
constant=('value', 'constant'),
|
|
35346
35346
|
)
|
|
35347
35347
|
|
|
35348
35348
|
class progress_variable_variance(Group):
|
|
@@ -35361,7 +35361,7 @@ class progress_variable_variance(Group):
|
|
|
35361
35361
|
udf=udf,
|
|
35362
35362
|
)
|
|
35363
35363
|
_child_aliases = dict(
|
|
35364
|
-
constant='value',
|
|
35364
|
+
constant=('value', 'constant'),
|
|
35365
35365
|
)
|
|
35366
35366
|
|
|
35367
35367
|
class flame_area_density(Group):
|
|
@@ -35380,7 +35380,7 @@ class flame_area_density(Group):
|
|
|
35380
35380
|
udf=udf,
|
|
35381
35381
|
)
|
|
35382
35382
|
_child_aliases = dict(
|
|
35383
|
-
constant='value',
|
|
35383
|
+
constant=('value', 'constant'),
|
|
35384
35384
|
)
|
|
35385
35385
|
|
|
35386
35386
|
class inert_stream(Group):
|
|
@@ -35399,7 +35399,7 @@ class inert_stream(Group):
|
|
|
35399
35399
|
udf=udf,
|
|
35400
35400
|
)
|
|
35401
35401
|
_child_aliases = dict(
|
|
35402
|
-
constant='value',
|
|
35402
|
+
constant=('value', 'constant'),
|
|
35403
35403
|
)
|
|
35404
35404
|
|
|
35405
35405
|
class pollutant_no_mass_fraction(Group):
|
|
@@ -35418,7 +35418,7 @@ class pollutant_no_mass_fraction(Group):
|
|
|
35418
35418
|
udf=udf,
|
|
35419
35419
|
)
|
|
35420
35420
|
_child_aliases = dict(
|
|
35421
|
-
constant='value',
|
|
35421
|
+
constant=('value', 'constant'),
|
|
35422
35422
|
)
|
|
35423
35423
|
|
|
35424
35424
|
class pollutant_hcn_mass_fraction(Group):
|
|
@@ -35437,7 +35437,7 @@ class pollutant_hcn_mass_fraction(Group):
|
|
|
35437
35437
|
udf=udf,
|
|
35438
35438
|
)
|
|
35439
35439
|
_child_aliases = dict(
|
|
35440
|
-
constant='value',
|
|
35440
|
+
constant=('value', 'constant'),
|
|
35441
35441
|
)
|
|
35442
35442
|
|
|
35443
35443
|
class pollutant_nh3_mass_fraction(Group):
|
|
@@ -35456,7 +35456,7 @@ class pollutant_nh3_mass_fraction(Group):
|
|
|
35456
35456
|
udf=udf,
|
|
35457
35457
|
)
|
|
35458
35458
|
_child_aliases = dict(
|
|
35459
|
-
constant='value',
|
|
35459
|
+
constant=('value', 'constant'),
|
|
35460
35460
|
)
|
|
35461
35461
|
|
|
35462
35462
|
class pollutant_n2o_mass_fraction(Group):
|
|
@@ -35475,7 +35475,7 @@ class pollutant_n2o_mass_fraction(Group):
|
|
|
35475
35475
|
udf=udf,
|
|
35476
35476
|
)
|
|
35477
35477
|
_child_aliases = dict(
|
|
35478
|
-
constant='value',
|
|
35478
|
+
constant=('value', 'constant'),
|
|
35479
35479
|
)
|
|
35480
35480
|
|
|
35481
35481
|
class pollutant_urea_mass_fraction(Group):
|
|
@@ -35494,7 +35494,7 @@ class pollutant_urea_mass_fraction(Group):
|
|
|
35494
35494
|
udf=udf,
|
|
35495
35495
|
)
|
|
35496
35496
|
_child_aliases = dict(
|
|
35497
|
-
constant='value',
|
|
35497
|
+
constant=('value', 'constant'),
|
|
35498
35498
|
)
|
|
35499
35499
|
|
|
35500
35500
|
class pollutant_hnco_mass_fraction(Group):
|
|
@@ -35513,7 +35513,7 @@ class pollutant_hnco_mass_fraction(Group):
|
|
|
35513
35513
|
udf=udf,
|
|
35514
35514
|
)
|
|
35515
35515
|
_child_aliases = dict(
|
|
35516
|
-
constant='value',
|
|
35516
|
+
constant=('value', 'constant'),
|
|
35517
35517
|
)
|
|
35518
35518
|
|
|
35519
35519
|
class pollutant_nco_mass_fraction(Group):
|
|
@@ -35532,7 +35532,7 @@ class pollutant_nco_mass_fraction(Group):
|
|
|
35532
35532
|
udf=udf,
|
|
35533
35533
|
)
|
|
35534
35534
|
_child_aliases = dict(
|
|
35535
|
-
constant='value',
|
|
35535
|
+
constant=('value', 'constant'),
|
|
35536
35536
|
)
|
|
35537
35537
|
|
|
35538
35538
|
class pollutant_so2_mass_fraction(Group):
|
|
@@ -35551,7 +35551,7 @@ class pollutant_so2_mass_fraction(Group):
|
|
|
35551
35551
|
udf=udf,
|
|
35552
35552
|
)
|
|
35553
35553
|
_child_aliases = dict(
|
|
35554
|
-
constant='value',
|
|
35554
|
+
constant=('value', 'constant'),
|
|
35555
35555
|
)
|
|
35556
35556
|
|
|
35557
35557
|
class pollutant_h2s_mass_fraction(Group):
|
|
@@ -35570,7 +35570,7 @@ class pollutant_h2s_mass_fraction(Group):
|
|
|
35570
35570
|
udf=udf,
|
|
35571
35571
|
)
|
|
35572
35572
|
_child_aliases = dict(
|
|
35573
|
-
constant='value',
|
|
35573
|
+
constant=('value', 'constant'),
|
|
35574
35574
|
)
|
|
35575
35575
|
|
|
35576
35576
|
class pollutant_so3_mass_fraction(Group):
|
|
@@ -35589,7 +35589,7 @@ class pollutant_so3_mass_fraction(Group):
|
|
|
35589
35589
|
udf=udf,
|
|
35590
35590
|
)
|
|
35591
35591
|
_child_aliases = dict(
|
|
35592
|
-
constant='value',
|
|
35592
|
+
constant=('value', 'constant'),
|
|
35593
35593
|
)
|
|
35594
35594
|
|
|
35595
35595
|
class pollutant_sh_mass_fraction(Group):
|
|
@@ -35608,7 +35608,7 @@ class pollutant_sh_mass_fraction(Group):
|
|
|
35608
35608
|
udf=udf,
|
|
35609
35609
|
)
|
|
35610
35610
|
_child_aliases = dict(
|
|
35611
|
-
constant='value',
|
|
35611
|
+
constant=('value', 'constant'),
|
|
35612
35612
|
)
|
|
35613
35613
|
|
|
35614
35614
|
class pollutant_so_mass_fraction(Group):
|
|
@@ -35627,7 +35627,7 @@ class pollutant_so_mass_fraction(Group):
|
|
|
35627
35627
|
udf=udf,
|
|
35628
35628
|
)
|
|
35629
35629
|
_child_aliases = dict(
|
|
35630
|
-
constant='value',
|
|
35630
|
+
constant=('value', 'constant'),
|
|
35631
35631
|
)
|
|
35632
35632
|
|
|
35633
35633
|
class soot_mass_fraction(Group):
|
|
@@ -35646,7 +35646,7 @@ class soot_mass_fraction(Group):
|
|
|
35646
35646
|
udf=udf,
|
|
35647
35647
|
)
|
|
35648
35648
|
_child_aliases = dict(
|
|
35649
|
-
constant='value',
|
|
35649
|
+
constant=('value', 'constant'),
|
|
35650
35650
|
)
|
|
35651
35651
|
|
|
35652
35652
|
class nuclei(Group):
|
|
@@ -35665,7 +35665,7 @@ class nuclei(Group):
|
|
|
35665
35665
|
udf=udf,
|
|
35666
35666
|
)
|
|
35667
35667
|
_child_aliases = dict(
|
|
35668
|
-
constant='value',
|
|
35668
|
+
constant=('value', 'constant'),
|
|
35669
35669
|
)
|
|
35670
35670
|
|
|
35671
35671
|
class tar_mass_fraction(Group):
|
|
@@ -35684,7 +35684,7 @@ class tar_mass_fraction(Group):
|
|
|
35684
35684
|
udf=udf,
|
|
35685
35685
|
)
|
|
35686
35686
|
_child_aliases = dict(
|
|
35687
|
-
constant='value',
|
|
35687
|
+
constant=('value', 'constant'),
|
|
35688
35688
|
)
|
|
35689
35689
|
|
|
35690
35690
|
class pollutant_hg_mass_fraction(Group):
|
|
@@ -35703,7 +35703,7 @@ class pollutant_hg_mass_fraction(Group):
|
|
|
35703
35703
|
udf=udf,
|
|
35704
35704
|
)
|
|
35705
35705
|
_child_aliases = dict(
|
|
35706
|
-
constant='value',
|
|
35706
|
+
constant=('value', 'constant'),
|
|
35707
35707
|
)
|
|
35708
35708
|
|
|
35709
35709
|
class pollutant_hgcl2_mass_fraction(Group):
|
|
@@ -35722,7 +35722,7 @@ class pollutant_hgcl2_mass_fraction(Group):
|
|
|
35722
35722
|
udf=udf,
|
|
35723
35723
|
)
|
|
35724
35724
|
_child_aliases = dict(
|
|
35725
|
-
constant='value',
|
|
35725
|
+
constant=('value', 'constant'),
|
|
35726
35726
|
)
|
|
35727
35727
|
|
|
35728
35728
|
class pollutant_hcl_mass_fraction(Group):
|
|
@@ -35741,7 +35741,7 @@ class pollutant_hcl_mass_fraction(Group):
|
|
|
35741
35741
|
udf=udf,
|
|
35742
35742
|
)
|
|
35743
35743
|
_child_aliases = dict(
|
|
35744
|
-
constant='value',
|
|
35744
|
+
constant=('value', 'constant'),
|
|
35745
35745
|
)
|
|
35746
35746
|
|
|
35747
35747
|
class pollutant_hgo_mass_fraction(Group):
|
|
@@ -35760,7 +35760,7 @@ class pollutant_hgo_mass_fraction(Group):
|
|
|
35760
35760
|
udf=udf,
|
|
35761
35761
|
)
|
|
35762
35762
|
_child_aliases = dict(
|
|
35763
|
-
constant='value',
|
|
35763
|
+
constant=('value', 'constant'),
|
|
35764
35764
|
)
|
|
35765
35765
|
|
|
35766
35766
|
class pollutant_cl_mass_fraction(Group):
|
|
@@ -35779,7 +35779,7 @@ class pollutant_cl_mass_fraction(Group):
|
|
|
35779
35779
|
udf=udf,
|
|
35780
35780
|
)
|
|
35781
35781
|
_child_aliases = dict(
|
|
35782
|
-
constant='value',
|
|
35782
|
+
constant=('value', 'constant'),
|
|
35783
35783
|
)
|
|
35784
35784
|
|
|
35785
35785
|
class pollutant_cl2_mass_fraction(Group):
|
|
@@ -35798,7 +35798,7 @@ class pollutant_cl2_mass_fraction(Group):
|
|
|
35798
35798
|
udf=udf,
|
|
35799
35799
|
)
|
|
35800
35800
|
_child_aliases = dict(
|
|
35801
|
-
constant='value',
|
|
35801
|
+
constant=('value', 'constant'),
|
|
35802
35802
|
)
|
|
35803
35803
|
|
|
35804
35804
|
class pollutant_hgcl_mass_fraction(Group):
|
|
@@ -35817,7 +35817,7 @@ class pollutant_hgcl_mass_fraction(Group):
|
|
|
35817
35817
|
udf=udf,
|
|
35818
35818
|
)
|
|
35819
35819
|
_child_aliases = dict(
|
|
35820
|
-
constant='value',
|
|
35820
|
+
constant=('value', 'constant'),
|
|
35821
35821
|
)
|
|
35822
35822
|
|
|
35823
35823
|
class pollutant_hocl_mass_fraction(Group):
|
|
@@ -35836,7 +35836,7 @@ class pollutant_hocl_mass_fraction(Group):
|
|
|
35836
35836
|
udf=udf,
|
|
35837
35837
|
)
|
|
35838
35838
|
_child_aliases = dict(
|
|
35839
|
-
constant='value',
|
|
35839
|
+
constant=('value', 'constant'),
|
|
35840
35840
|
)
|
|
35841
35841
|
|
|
35842
35842
|
class species_6(Group):
|
|
@@ -35889,44 +35889,44 @@ class species_6(Group):
|
|
|
35889
35889
|
tss_scalar=tss_scalar,
|
|
35890
35890
|
)
|
|
35891
35891
|
_child_aliases = dict(
|
|
35892
|
-
ecfm_sigma='flame_area_density',
|
|
35893
|
-
equ_required='equilibrate_inlet_stream',
|
|
35894
|
-
fmean='mean_mixture_fraction',
|
|
35895
|
-
fmean2='secondary_mean_mixture_fraction',
|
|
35896
|
-
fvar='mixture_fraction_variance',
|
|
35897
|
-
fvar2='secondary_mixture_fraction_variance',
|
|
35898
|
-
inert='inert_stream',
|
|
35899
|
-
mf='species_mass_fraction',
|
|
35900
|
-
mole_fraction='species_mole_fraction',
|
|
35901
|
-
pollut_cl='pollutant_cl_mass_fraction',
|
|
35902
|
-
pollut_cl2='pollutant_cl2_mass_fraction',
|
|
35903
|
-
pollut_ctar='tar_mass_fraction',
|
|
35904
|
-
pollut_h2s='pollutant_h2s_mass_fraction',
|
|
35905
|
-
pollut_hcl='pollutant_hcl_mass_fraction',
|
|
35906
|
-
pollut_hcn='pollutant_hcn_mass_fraction',
|
|
35907
|
-
pollut_hg='pollutant_hg_mass_fraction',
|
|
35908
|
-
pollut_hgcl='pollutant_hgcl_mass_fraction',
|
|
35909
|
-
pollut_hgcl2='pollutant_hgcl2_mass_fraction',
|
|
35910
|
-
pollut_hgo='pollutant_hgo_mass_fraction',
|
|
35911
|
-
pollut_hnco='pollutant_hnco_mass_fraction',
|
|
35912
|
-
pollut_hocl='pollutant_hocl_mass_fraction',
|
|
35913
|
-
pollut_n2o='pollutant_n2o_mass_fraction',
|
|
35914
|
-
pollut_nco='pollutant_nco_mass_fraction',
|
|
35915
|
-
pollut_nh3='pollutant_nh3_mass_fraction',
|
|
35916
|
-
pollut_no='pollutant_no_mass_fraction',
|
|
35917
|
-
pollut_nuclei='nuclei',
|
|
35918
|
-
pollut_sh='pollutant_sh_mass_fraction',
|
|
35919
|
-
pollut_so='pollutant_so_mass_fraction',
|
|
35920
|
-
pollut_so2='pollutant_so2_mass_fraction',
|
|
35921
|
-
pollut_so3='pollutant_so3_mass_fraction',
|
|
35922
|
-
pollut_soot='soot_mass_fraction',
|
|
35923
|
-
pollut_urea='pollutant_urea_mass_fraction',
|
|
35924
|
-
premixc='progress_variable',
|
|
35925
|
-
premixc_var='progress_variable_variance',
|
|
35926
|
-
prob_mode_1='mixture_fraction',
|
|
35927
|
-
prob_mode_2='mode_2_probability',
|
|
35928
|
-
prob_mode_3='mode_3_probability',
|
|
35929
|
-
species_in_mole_fractions='specify_species_in_mole_fractions',
|
|
35892
|
+
ecfm_sigma=('flame_area_density', 'ecfm-sigma'),
|
|
35893
|
+
equ_required=('equilibrate_inlet_stream', 'equ-required?'),
|
|
35894
|
+
fmean=('mean_mixture_fraction', 'fmean'),
|
|
35895
|
+
fmean2=('secondary_mean_mixture_fraction', 'fmean2'),
|
|
35896
|
+
fvar=('mixture_fraction_variance', 'fvar'),
|
|
35897
|
+
fvar2=('secondary_mixture_fraction_variance', 'fvar2'),
|
|
35898
|
+
inert=('inert_stream', 'inert'),
|
|
35899
|
+
mf=('species_mass_fraction', 'mf'),
|
|
35900
|
+
mole_fraction=('species_mole_fraction', 'mole-fraction'),
|
|
35901
|
+
pollut_cl=('pollutant_cl_mass_fraction', 'pollut_cl'),
|
|
35902
|
+
pollut_cl2=('pollutant_cl2_mass_fraction', 'pollut_cl2'),
|
|
35903
|
+
pollut_ctar=('tar_mass_fraction', 'pollut_ctar'),
|
|
35904
|
+
pollut_h2s=('pollutant_h2s_mass_fraction', 'pollut_h2s'),
|
|
35905
|
+
pollut_hcl=('pollutant_hcl_mass_fraction', 'pollut_hcl'),
|
|
35906
|
+
pollut_hcn=('pollutant_hcn_mass_fraction', 'pollut_hcn'),
|
|
35907
|
+
pollut_hg=('pollutant_hg_mass_fraction', 'pollut_hg'),
|
|
35908
|
+
pollut_hgcl=('pollutant_hgcl_mass_fraction', 'pollut_hgcl'),
|
|
35909
|
+
pollut_hgcl2=('pollutant_hgcl2_mass_fraction', 'pollut_hgcl2'),
|
|
35910
|
+
pollut_hgo=('pollutant_hgo_mass_fraction', 'pollut_hgo'),
|
|
35911
|
+
pollut_hnco=('pollutant_hnco_mass_fraction', 'pollut_hnco'),
|
|
35912
|
+
pollut_hocl=('pollutant_hocl_mass_fraction', 'pollut_hocl'),
|
|
35913
|
+
pollut_n2o=('pollutant_n2o_mass_fraction', 'pollut_n2o'),
|
|
35914
|
+
pollut_nco=('pollutant_nco_mass_fraction', 'pollut_nco'),
|
|
35915
|
+
pollut_nh3=('pollutant_nh3_mass_fraction', 'pollut_nh3'),
|
|
35916
|
+
pollut_no=('pollutant_no_mass_fraction', 'pollut_no'),
|
|
35917
|
+
pollut_nuclei=('nuclei', 'pollut_nuclei'),
|
|
35918
|
+
pollut_sh=('pollutant_sh_mass_fraction', 'pollut_sh'),
|
|
35919
|
+
pollut_so=('pollutant_so_mass_fraction', 'pollut_so'),
|
|
35920
|
+
pollut_so2=('pollutant_so2_mass_fraction', 'pollut_so2'),
|
|
35921
|
+
pollut_so3=('pollutant_so3_mass_fraction', 'pollut_so3'),
|
|
35922
|
+
pollut_soot=('soot_mass_fraction', 'pollut_soot'),
|
|
35923
|
+
pollut_urea=('pollutant_urea_mass_fraction', 'pollut_urea'),
|
|
35924
|
+
premixc=('progress_variable', 'premixc'),
|
|
35925
|
+
premixc_var=('progress_variable_variance', 'premixc-var'),
|
|
35926
|
+
prob_mode_1=('mixture_fraction', 'prob-mode-1'),
|
|
35927
|
+
prob_mode_2=('mode_2_probability', 'prob-mode-2'),
|
|
35928
|
+
prob_mode_3=('mode_3_probability', 'prob-mode-3'),
|
|
35929
|
+
species_in_mole_fractions=('specify_species_in_mole_fractions', 'species-in-mole-fractions?'),
|
|
35930
35930
|
)
|
|
35931
35931
|
|
|
35932
35932
|
class open_channel_1(Boolean):
|
|
@@ -35977,7 +35977,7 @@ class ht_bottom(Group):
|
|
|
35977
35977
|
udf=udf,
|
|
35978
35978
|
)
|
|
35979
35979
|
_child_aliases = dict(
|
|
35980
|
-
constant='value',
|
|
35980
|
+
constant=('value', 'constant'),
|
|
35981
35981
|
)
|
|
35982
35982
|
|
|
35983
35983
|
class ht_total(Group):
|
|
@@ -35996,7 +35996,7 @@ class ht_total(Group):
|
|
|
35996
35996
|
udf=udf,
|
|
35997
35997
|
)
|
|
35998
35998
|
_child_aliases = dict(
|
|
35999
|
-
constant='value',
|
|
35999
|
+
constant=('value', 'constant'),
|
|
36000
36000
|
)
|
|
36001
36001
|
|
|
36002
36002
|
class vmag(Group):
|
|
@@ -36015,7 +36015,7 @@ class vmag(Group):
|
|
|
36015
36015
|
udf=udf,
|
|
36016
36016
|
)
|
|
36017
36017
|
_child_aliases = dict(
|
|
36018
|
-
constant='value',
|
|
36018
|
+
constant=('value', 'constant'),
|
|
36019
36019
|
)
|
|
36020
36020
|
|
|
36021
36021
|
class den_spec(String, AllowedValuesMixin):
|
|
@@ -36042,7 +36042,7 @@ class granular_temperature(Group):
|
|
|
36042
36042
|
udf=udf,
|
|
36043
36043
|
)
|
|
36044
36044
|
_child_aliases = dict(
|
|
36045
|
-
constant='value',
|
|
36045
|
+
constant=('value', 'constant'),
|
|
36046
36046
|
)
|
|
36047
36047
|
|
|
36048
36048
|
class interfacial_area_concentration(Group):
|
|
@@ -36061,7 +36061,7 @@ class interfacial_area_concentration(Group):
|
|
|
36061
36061
|
udf=udf,
|
|
36062
36062
|
)
|
|
36063
36063
|
_child_aliases = dict(
|
|
36064
|
-
constant='value',
|
|
36064
|
+
constant=('value', 'constant'),
|
|
36065
36065
|
)
|
|
36066
36066
|
|
|
36067
36067
|
class level_set_function_flux(Group):
|
|
@@ -36080,7 +36080,7 @@ class level_set_function_flux(Group):
|
|
|
36080
36080
|
udf=udf,
|
|
36081
36081
|
)
|
|
36082
36082
|
_child_aliases = dict(
|
|
36083
|
-
constant='value',
|
|
36083
|
+
constant=('value', 'constant'),
|
|
36084
36084
|
)
|
|
36085
36085
|
|
|
36086
36086
|
class volume_fraction(Group):
|
|
@@ -36099,7 +36099,7 @@ class volume_fraction(Group):
|
|
|
36099
36099
|
udf=udf,
|
|
36100
36100
|
)
|
|
36101
36101
|
_child_aliases = dict(
|
|
36102
|
-
constant='value',
|
|
36102
|
+
constant=('value', 'constant'),
|
|
36103
36103
|
)
|
|
36104
36104
|
|
|
36105
36105
|
class relative_humidity(Group):
|
|
@@ -36118,7 +36118,7 @@ class relative_humidity(Group):
|
|
|
36118
36118
|
udf=udf,
|
|
36119
36119
|
)
|
|
36120
36120
|
_child_aliases = dict(
|
|
36121
|
-
constant='value',
|
|
36121
|
+
constant=('value', 'constant'),
|
|
36122
36122
|
)
|
|
36123
36123
|
|
|
36124
36124
|
class liquid_mass_fraction(Group):
|
|
@@ -36137,7 +36137,7 @@ class liquid_mass_fraction(Group):
|
|
|
36137
36137
|
udf=udf,
|
|
36138
36138
|
)
|
|
36139
36139
|
_child_aliases = dict(
|
|
36140
|
-
constant='value',
|
|
36140
|
+
constant=('value', 'constant'),
|
|
36141
36141
|
)
|
|
36142
36142
|
|
|
36143
36143
|
class log10_droplets_per_unit_volume(Group):
|
|
@@ -36156,7 +36156,7 @@ class log10_droplets_per_unit_volume(Group):
|
|
|
36156
36156
|
udf=udf,
|
|
36157
36157
|
)
|
|
36158
36158
|
_child_aliases = dict(
|
|
36159
|
-
constant='value',
|
|
36159
|
+
constant=('value', 'constant'),
|
|
36160
36160
|
)
|
|
36161
36161
|
|
|
36162
36162
|
class multiphase_3(Group):
|
|
@@ -36187,12 +36187,12 @@ class multiphase_3(Group):
|
|
|
36187
36187
|
log10_droplets_per_unit_volume=log10_droplets_per_unit_volume,
|
|
36188
36188
|
)
|
|
36189
36189
|
_child_aliases = dict(
|
|
36190
|
-
ht_local='free_surface_level',
|
|
36191
|
-
iac='interfacial_area_concentration',
|
|
36192
|
-
lsfun='level_set_function_flux',
|
|
36193
|
-
wsb='liquid_mass_fraction',
|
|
36194
|
-
wsf='relative_humidity',
|
|
36195
|
-
wsn='log10_droplets_per_unit_volume',
|
|
36190
|
+
ht_local=('free_surface_level', 'ht-local'),
|
|
36191
|
+
iac=('interfacial_area_concentration', 'iac'),
|
|
36192
|
+
lsfun=('level_set_function_flux', 'lsfun'),
|
|
36193
|
+
wsb=('liquid_mass_fraction', 'wsb'),
|
|
36194
|
+
wsf=('relative_humidity', 'wsf'),
|
|
36195
|
+
wsn=('log10_droplets_per_unit_volume', 'wsn'),
|
|
36196
36196
|
)
|
|
36197
36197
|
|
|
36198
36198
|
class fensapice_drop_bccustom(Boolean):
|
|
@@ -36353,7 +36353,7 @@ class fensapice_drop_vrh_1_1(Real):
|
|
|
36353
36353
|
"""
|
|
36354
36354
|
version = '242'
|
|
36355
36355
|
fluent_name = 'fensapice-drop-vrh'
|
|
36356
|
-
_python_name = '
|
|
36356
|
+
_python_name = 'fensapice_drop_vrh'
|
|
36357
36357
|
|
|
36358
36358
|
class icing_1(Group):
|
|
36359
36359
|
"""
|
|
@@ -36526,23 +36526,23 @@ class momentum_2(Group):
|
|
|
36526
36526
|
new_fan_definition=new_fan_definition,
|
|
36527
36527
|
)
|
|
36528
36528
|
_child_aliases = dict(
|
|
36529
|
-
a='pressure_jump',
|
|
36530
|
-
ac_options='acoustic_wave_model',
|
|
36531
|
-
ac_wave='incoming_wave',
|
|
36532
|
-
axis_direction_component='axis_direction',
|
|
36533
|
-
axis_origin_component='axis_origin',
|
|
36534
|
-
direction_spec='direction_specification_method',
|
|
36535
|
-
direction_vector_components='direction_vector',
|
|
36536
|
-
fan_omega='fan_rotation_speed',
|
|
36537
|
-
fan_origin_components='fan_origin',
|
|
36538
|
-
flow_direction_component='flow_direction',
|
|
36539
|
-
frame_of_reference='reference_frame',
|
|
36540
|
-
impedance_0='impedance_zero_order_term',
|
|
36541
|
-
impedance_1='real_pole_series',
|
|
36542
|
-
impedance_2='complex_pole_series',
|
|
36543
|
-
new_fan_definition='new_fan_definition',
|
|
36544
|
-
p0='gauge_total_pressure',
|
|
36545
|
-
swirl_model='swirl_velocity_specification',
|
|
36529
|
+
a=('pressure_jump', 'a'),
|
|
36530
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
36531
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
36532
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
36533
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
36534
|
+
direction_spec=('direction_specification_method', 'direction-spec'),
|
|
36535
|
+
direction_vector_components=('direction_vector', 'direction-vector-components'),
|
|
36536
|
+
fan_omega=('fan_rotation_speed', 'fan-omega'),
|
|
36537
|
+
fan_origin_components=('fan_origin', 'fan-origin-components'),
|
|
36538
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
36539
|
+
frame_of_reference=('reference_frame', 'frame-of-reference'),
|
|
36540
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
36541
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
36542
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
36543
|
+
new_fan_definition=('new_fan_definition', 'new-fan-definition?'),
|
|
36544
|
+
p0=('gauge_total_pressure', 'p0'),
|
|
36545
|
+
swirl_model=('swirl_velocity_specification', 'swirl-model?'),
|
|
36546
36546
|
)
|
|
36547
36547
|
|
|
36548
36548
|
class phase_6_child(Group):
|
|
@@ -36839,7 +36839,7 @@ class mass_flow_rate_1(Group):
|
|
|
36839
36839
|
udf=udf,
|
|
36840
36840
|
)
|
|
36841
36841
|
_child_aliases = dict(
|
|
36842
|
-
constant='value',
|
|
36842
|
+
constant=('value', 'constant'),
|
|
36843
36843
|
)
|
|
36844
36844
|
|
|
36845
36845
|
class exit_corrected_mass_flow_rate(Group):
|
|
@@ -36858,7 +36858,7 @@ class exit_corrected_mass_flow_rate(Group):
|
|
|
36858
36858
|
udf=udf,
|
|
36859
36859
|
)
|
|
36860
36860
|
_child_aliases = dict(
|
|
36861
|
-
constant='value',
|
|
36861
|
+
constant=('value', 'constant'),
|
|
36862
36862
|
)
|
|
36863
36863
|
|
|
36864
36864
|
class mass_flux(Group):
|
|
@@ -36877,7 +36877,7 @@ class mass_flux(Group):
|
|
|
36877
36877
|
udf=udf,
|
|
36878
36878
|
)
|
|
36879
36879
|
_child_aliases = dict(
|
|
36880
|
-
constant='value',
|
|
36880
|
+
constant=('value', 'constant'),
|
|
36881
36881
|
)
|
|
36882
36882
|
|
|
36883
36883
|
class average_mass_flux(Real):
|
|
@@ -36904,7 +36904,7 @@ class supersonic_gauge_pressure(Group):
|
|
|
36904
36904
|
udf=udf,
|
|
36905
36905
|
)
|
|
36906
36906
|
_child_aliases = dict(
|
|
36907
|
-
constant='value',
|
|
36907
|
+
constant=('value', 'constant'),
|
|
36908
36908
|
)
|
|
36909
36909
|
|
|
36910
36910
|
class direction_specification(String, AllowedValuesMixin):
|
|
@@ -36974,26 +36974,26 @@ class momentum_3(Group):
|
|
|
36974
36974
|
incoming_wave=incoming_wave,
|
|
36975
36975
|
)
|
|
36976
36976
|
_child_aliases = dict(
|
|
36977
|
-
ac_options='acoustic_wave_model',
|
|
36978
|
-
ac_wave='incoming_wave',
|
|
36979
|
-
axis_direction_component='axis_direction',
|
|
36980
|
-
axis_origin_component='axis_origin',
|
|
36981
|
-
direction_spec='direction_specification',
|
|
36982
|
-
direction_vector_components='direction_vector',
|
|
36983
|
-
ec_mass_flow='exit_corrected_mass_flow_rate',
|
|
36984
|
-
fan_origin_components='fan_origin',
|
|
36985
|
-
flow_direction_component='flow_direction',
|
|
36986
|
-
flow_spec='mass_flow_specification',
|
|
36987
|
-
frame_of_reference='reference_frame',
|
|
36988
|
-
impedance_0='impedance_zero_order_term',
|
|
36989
|
-
impedance_1='real_pole_series',
|
|
36990
|
-
impedance_2='complex_pole_series',
|
|
36991
|
-
mass_flow='mass_flow_rate',
|
|
36992
|
-
mass_flux_ave='average_mass_flux',
|
|
36993
|
-
p='supersonic_gauge_pressure',
|
|
36994
|
-
pref='ecmf_reference_gauge_pressure',
|
|
36995
|
-
swirl_model='swirl_velocity_specification',
|
|
36996
|
-
tref='ecmf_reference_temperature',
|
|
36977
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
36978
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
36979
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
36980
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
36981
|
+
direction_spec=('direction_specification', 'direction-spec'),
|
|
36982
|
+
direction_vector_components=('direction_vector', 'direction-vector-components'),
|
|
36983
|
+
ec_mass_flow=('exit_corrected_mass_flow_rate', 'ec-mass-flow'),
|
|
36984
|
+
fan_origin_components=('fan_origin', 'fan-origin-components'),
|
|
36985
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
36986
|
+
flow_spec=('mass_flow_specification', 'flow-spec'),
|
|
36987
|
+
frame_of_reference=('reference_frame', 'frame-of-reference'),
|
|
36988
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
36989
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
36990
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
36991
|
+
mass_flow=('mass_flow_rate', 'mass-flow'),
|
|
36992
|
+
mass_flux_ave=('average_mass_flux', 'mass-flux-ave'),
|
|
36993
|
+
p=('supersonic_gauge_pressure', 'p'),
|
|
36994
|
+
pref=('ecmf_reference_gauge_pressure', 'pref'),
|
|
36995
|
+
swirl_model=('swirl_velocity_specification', 'swirl-model?'),
|
|
36996
|
+
tref=('ecmf_reference_temperature', 'tref'),
|
|
36997
36997
|
)
|
|
36998
36998
|
|
|
36999
36999
|
class turbulence_2(Group):
|
|
@@ -37030,29 +37030,29 @@ class turbulence_2(Group):
|
|
|
37030
37030
|
subgrid_turbulent_intensity=subgrid_turbulent_intensity,
|
|
37031
37031
|
)
|
|
37032
37032
|
_child_aliases = dict(
|
|
37033
|
-
e='turbulent_dissipation_rate',
|
|
37034
|
-
intermit='intermittency',
|
|
37035
|
-
k='turbulent_kinetic_energy',
|
|
37036
|
-
kl='laminar_kinetic_energy',
|
|
37037
|
-
ksgs='subgrid_kinetic_energy',
|
|
37038
|
-
ksgs_spec='subgrid_kinetic_energy_specification',
|
|
37039
|
-
nut='modified_turbulent_viscosity',
|
|
37040
|
-
o='specific_dissipation_rate',
|
|
37041
|
-
rst_spec='reynolds_stress_specification',
|
|
37042
|
-
sgs_turb_intensity='subgrid_turbulent_intensity',
|
|
37043
|
-
turb_hydraulic_diam='hydraulic_diameter',
|
|
37044
|
-
turb_intensity='turbulent_intensity',
|
|
37045
|
-
turb_length_scale='turbulent_length_scale',
|
|
37046
|
-
turb_viscosity_ratio='turbulent_viscosity_ratio',
|
|
37047
|
-
turb_viscosity_ratio_profile='turbulent_viscosity_ratio_profile',
|
|
37048
|
-
turbulent_specification='turbulence_specification',
|
|
37049
|
-
uu='uu_reynolds_stresses',
|
|
37050
|
-
uv='uv_reynolds_stresses',
|
|
37051
|
-
uw='uw_reynolds_stresses',
|
|
37052
|
-
v2='velocity_variance_scale',
|
|
37053
|
-
vv='vv_reynolds_stresses',
|
|
37054
|
-
vw='vw_reynolds_stresses',
|
|
37055
|
-
ww='ww_reynolds_stresses',
|
|
37033
|
+
e=('turbulent_dissipation_rate', 'e'),
|
|
37034
|
+
intermit=('intermittency', 'intermit'),
|
|
37035
|
+
k=('turbulent_kinetic_energy', 'k'),
|
|
37036
|
+
kl=('laminar_kinetic_energy', 'kl'),
|
|
37037
|
+
ksgs=('subgrid_kinetic_energy', 'ksgs'),
|
|
37038
|
+
ksgs_spec=('subgrid_kinetic_energy_specification', 'ksgs-spec'),
|
|
37039
|
+
nut=('modified_turbulent_viscosity', 'nut'),
|
|
37040
|
+
o=('specific_dissipation_rate', 'o'),
|
|
37041
|
+
rst_spec=('reynolds_stress_specification', 'rst-spec'),
|
|
37042
|
+
sgs_turb_intensity=('subgrid_turbulent_intensity', 'sgs-turb-intensity'),
|
|
37043
|
+
turb_hydraulic_diam=('hydraulic_diameter', 'turb-hydraulic-diam'),
|
|
37044
|
+
turb_intensity=('turbulent_intensity', 'turb-intensity'),
|
|
37045
|
+
turb_length_scale=('turbulent_length_scale', 'turb-length-scale'),
|
|
37046
|
+
turb_viscosity_ratio=('turbulent_viscosity_ratio', 'turb-viscosity-ratio'),
|
|
37047
|
+
turb_viscosity_ratio_profile=('turbulent_viscosity_ratio_profile', 'turb-viscosity-ratio-profile'),
|
|
37048
|
+
turbulent_specification=('turbulence_specification', 'turbulent-specification'),
|
|
37049
|
+
uu=('uu_reynolds_stresses', 'uu'),
|
|
37050
|
+
uv=('uv_reynolds_stresses', 'uv'),
|
|
37051
|
+
uw=('uw_reynolds_stresses', 'uw'),
|
|
37052
|
+
v2=('velocity_variance_scale', 'v2'),
|
|
37053
|
+
vv=('vv_reynolds_stresses', 'vv'),
|
|
37054
|
+
vw=('vw_reynolds_stresses', 'vw'),
|
|
37055
|
+
ww=('ww_reynolds_stresses', 'ww'),
|
|
37056
37056
|
)
|
|
37057
37057
|
|
|
37058
37058
|
class total_temperature_1(Group):
|
|
@@ -37071,7 +37071,7 @@ class total_temperature_1(Group):
|
|
|
37071
37071
|
udf=udf,
|
|
37072
37072
|
)
|
|
37073
37073
|
_child_aliases = dict(
|
|
37074
|
-
constant='value',
|
|
37074
|
+
constant=('value', 'constant'),
|
|
37075
37075
|
)
|
|
37076
37076
|
|
|
37077
37077
|
class thermal_2(Group):
|
|
@@ -37086,7 +37086,7 @@ class thermal_2(Group):
|
|
|
37086
37086
|
total_temperature=total_temperature_1,
|
|
37087
37087
|
)
|
|
37088
37088
|
_child_aliases = dict(
|
|
37089
|
-
t0='total_temperature',
|
|
37089
|
+
t0=('total_temperature', 't0'),
|
|
37090
37090
|
)
|
|
37091
37091
|
|
|
37092
37092
|
class species_7(Group):
|
|
@@ -37139,44 +37139,44 @@ class species_7(Group):
|
|
|
37139
37139
|
tss_scalar=tss_scalar,
|
|
37140
37140
|
)
|
|
37141
37141
|
_child_aliases = dict(
|
|
37142
|
-
ecfm_sigma='flame_area_density',
|
|
37143
|
-
equ_required='equilibrate_inlet_stream',
|
|
37144
|
-
fmean='mean_mixture_fraction',
|
|
37145
|
-
fmean2='secondary_mean_mixture_fraction',
|
|
37146
|
-
fvar='mixture_fraction_variance',
|
|
37147
|
-
fvar2='secondary_mixture_fraction_variance',
|
|
37148
|
-
inert='inert_stream',
|
|
37149
|
-
mf='species_mass_fraction',
|
|
37150
|
-
mole_fraction='species_mole_fraction',
|
|
37151
|
-
pollut_cl='pollutant_cl_mass_fraction',
|
|
37152
|
-
pollut_cl2='pollutant_cl2_mass_fraction',
|
|
37153
|
-
pollut_ctar='tar_mass_fraction',
|
|
37154
|
-
pollut_h2s='pollutant_h2s_mass_fraction',
|
|
37155
|
-
pollut_hcl='pollutant_hcl_mass_fraction',
|
|
37156
|
-
pollut_hcn='pollutant_hcn_mass_fraction',
|
|
37157
|
-
pollut_hg='pollutant_hg_mass_fraction',
|
|
37158
|
-
pollut_hgcl='pollutant_hgcl_mass_fraction',
|
|
37159
|
-
pollut_hgcl2='pollutant_hgcl2_mass_fraction',
|
|
37160
|
-
pollut_hgo='pollutant_hgo_mass_fraction',
|
|
37161
|
-
pollut_hnco='pollutant_hnco_mass_fraction',
|
|
37162
|
-
pollut_hocl='pollutant_hocl_mass_fraction',
|
|
37163
|
-
pollut_n2o='pollutant_n2o_mass_fraction',
|
|
37164
|
-
pollut_nco='pollutant_nco_mass_fraction',
|
|
37165
|
-
pollut_nh3='pollutant_nh3_mass_fraction',
|
|
37166
|
-
pollut_no='pollutant_no_mass_fraction',
|
|
37167
|
-
pollut_nuclei='nuclei',
|
|
37168
|
-
pollut_sh='pollutant_sh_mass_fraction',
|
|
37169
|
-
pollut_so='pollutant_so_mass_fraction',
|
|
37170
|
-
pollut_so2='pollutant_so2_mass_fraction',
|
|
37171
|
-
pollut_so3='pollutant_so3_mass_fraction',
|
|
37172
|
-
pollut_soot='soot_mass_fraction',
|
|
37173
|
-
pollut_urea='pollutant_urea_mass_fraction',
|
|
37174
|
-
premixc='progress_variable',
|
|
37175
|
-
premixc_var='progress_variable_variance',
|
|
37176
|
-
prob_mode_1='mixture_fraction',
|
|
37177
|
-
prob_mode_2='mode_2_probability',
|
|
37178
|
-
prob_mode_3='mode_3_probability',
|
|
37179
|
-
species_in_mole_fractions='specify_species_in_mole_fractions',
|
|
37142
|
+
ecfm_sigma=('flame_area_density', 'ecfm-sigma'),
|
|
37143
|
+
equ_required=('equilibrate_inlet_stream', 'equ-required?'),
|
|
37144
|
+
fmean=('mean_mixture_fraction', 'fmean'),
|
|
37145
|
+
fmean2=('secondary_mean_mixture_fraction', 'fmean2'),
|
|
37146
|
+
fvar=('mixture_fraction_variance', 'fvar'),
|
|
37147
|
+
fvar2=('secondary_mixture_fraction_variance', 'fvar2'),
|
|
37148
|
+
inert=('inert_stream', 'inert'),
|
|
37149
|
+
mf=('species_mass_fraction', 'mf'),
|
|
37150
|
+
mole_fraction=('species_mole_fraction', 'mole-fraction'),
|
|
37151
|
+
pollut_cl=('pollutant_cl_mass_fraction', 'pollut_cl'),
|
|
37152
|
+
pollut_cl2=('pollutant_cl2_mass_fraction', 'pollut_cl2'),
|
|
37153
|
+
pollut_ctar=('tar_mass_fraction', 'pollut_ctar'),
|
|
37154
|
+
pollut_h2s=('pollutant_h2s_mass_fraction', 'pollut_h2s'),
|
|
37155
|
+
pollut_hcl=('pollutant_hcl_mass_fraction', 'pollut_hcl'),
|
|
37156
|
+
pollut_hcn=('pollutant_hcn_mass_fraction', 'pollut_hcn'),
|
|
37157
|
+
pollut_hg=('pollutant_hg_mass_fraction', 'pollut_hg'),
|
|
37158
|
+
pollut_hgcl=('pollutant_hgcl_mass_fraction', 'pollut_hgcl'),
|
|
37159
|
+
pollut_hgcl2=('pollutant_hgcl2_mass_fraction', 'pollut_hgcl2'),
|
|
37160
|
+
pollut_hgo=('pollutant_hgo_mass_fraction', 'pollut_hgo'),
|
|
37161
|
+
pollut_hnco=('pollutant_hnco_mass_fraction', 'pollut_hnco'),
|
|
37162
|
+
pollut_hocl=('pollutant_hocl_mass_fraction', 'pollut_hocl'),
|
|
37163
|
+
pollut_n2o=('pollutant_n2o_mass_fraction', 'pollut_n2o'),
|
|
37164
|
+
pollut_nco=('pollutant_nco_mass_fraction', 'pollut_nco'),
|
|
37165
|
+
pollut_nh3=('pollutant_nh3_mass_fraction', 'pollut_nh3'),
|
|
37166
|
+
pollut_no=('pollutant_no_mass_fraction', 'pollut_no'),
|
|
37167
|
+
pollut_nuclei=('nuclei', 'pollut_nuclei'),
|
|
37168
|
+
pollut_sh=('pollutant_sh_mass_fraction', 'pollut_sh'),
|
|
37169
|
+
pollut_so=('pollutant_so_mass_fraction', 'pollut_so'),
|
|
37170
|
+
pollut_so2=('pollutant_so2_mass_fraction', 'pollut_so2'),
|
|
37171
|
+
pollut_so3=('pollutant_so3_mass_fraction', 'pollut_so3'),
|
|
37172
|
+
pollut_soot=('soot_mass_fraction', 'pollut_soot'),
|
|
37173
|
+
pollut_urea=('pollutant_urea_mass_fraction', 'pollut_urea'),
|
|
37174
|
+
premixc=('progress_variable', 'premixc'),
|
|
37175
|
+
premixc_var=('progress_variable_variance', 'premixc-var'),
|
|
37176
|
+
prob_mode_1=('mixture_fraction', 'prob-mode-1'),
|
|
37177
|
+
prob_mode_2=('mode_2_probability', 'prob-mode-2'),
|
|
37178
|
+
prob_mode_3=('mode_3_probability', 'prob-mode-3'),
|
|
37179
|
+
species_in_mole_fractions=('specify_species_in_mole_fractions', 'species-in-mole-fractions?'),
|
|
37180
37180
|
)
|
|
37181
37181
|
|
|
37182
37182
|
class upstream_torque_integral(Real):
|
|
@@ -37213,11 +37213,11 @@ class dpm_1(Group):
|
|
|
37213
37213
|
mixing_plane_thread=mixing_plane_thread,
|
|
37214
37214
|
)
|
|
37215
37215
|
_child_aliases = dict(
|
|
37216
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
37217
|
-
dpm_bc_type='discrete_phase_bc_type',
|
|
37218
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
37219
|
-
upstream_t_enthalpy='upstream_total_enthalpy_integral',
|
|
37220
|
-
upstream_torque='upstream_torque_integral',
|
|
37216
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
37217
|
+
dpm_bc_type=('discrete_phase_bc_type', 'dpm/bc-type'),
|
|
37218
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
37219
|
+
upstream_t_enthalpy=('upstream_total_enthalpy_integral', 'upstream-t-enthalpy'),
|
|
37220
|
+
upstream_torque=('upstream_torque_integral', 'upstream-torque'),
|
|
37221
37221
|
)
|
|
37222
37222
|
|
|
37223
37223
|
class open_channel_2(Boolean):
|
|
@@ -37252,7 +37252,7 @@ class free_surface_level_1(Group):
|
|
|
37252
37252
|
udf=udf,
|
|
37253
37253
|
)
|
|
37254
37254
|
_child_aliases = dict(
|
|
37255
|
-
constant='value',
|
|
37255
|
+
constant=('value', 'constant'),
|
|
37256
37256
|
)
|
|
37257
37257
|
|
|
37258
37258
|
class bottom_level_1(Group):
|
|
@@ -37271,7 +37271,7 @@ class bottom_level_1(Group):
|
|
|
37271
37271
|
udf=udf,
|
|
37272
37272
|
)
|
|
37273
37273
|
_child_aliases = dict(
|
|
37274
|
-
constant='value',
|
|
37274
|
+
constant=('value', 'constant'),
|
|
37275
37275
|
)
|
|
37276
37276
|
|
|
37277
37277
|
class density_interpolation_method_1(String, AllowedValuesMixin):
|
|
@@ -37306,7 +37306,7 @@ class phase_velocity_ratio(Group):
|
|
|
37306
37306
|
udf=udf,
|
|
37307
37307
|
)
|
|
37308
37308
|
_child_aliases = dict(
|
|
37309
|
-
constant='value',
|
|
37309
|
+
constant=('value', 'constant'),
|
|
37310
37310
|
)
|
|
37311
37311
|
|
|
37312
37312
|
class volume_fraction_1(Group):
|
|
@@ -37325,7 +37325,7 @@ class volume_fraction_1(Group):
|
|
|
37325
37325
|
udf=udf,
|
|
37326
37326
|
)
|
|
37327
37327
|
_child_aliases = dict(
|
|
37328
|
-
constant='value',
|
|
37328
|
+
constant=('value', 'constant'),
|
|
37329
37329
|
)
|
|
37330
37330
|
|
|
37331
37331
|
class relative_humidity_1(Group):
|
|
@@ -37344,7 +37344,7 @@ class relative_humidity_1(Group):
|
|
|
37344
37344
|
udf=udf,
|
|
37345
37345
|
)
|
|
37346
37346
|
_child_aliases = dict(
|
|
37347
|
-
constant='value',
|
|
37347
|
+
constant=('value', 'constant'),
|
|
37348
37348
|
)
|
|
37349
37349
|
|
|
37350
37350
|
class liquid_mass_fraction_1(Group):
|
|
@@ -37363,7 +37363,7 @@ class liquid_mass_fraction_1(Group):
|
|
|
37363
37363
|
udf=udf,
|
|
37364
37364
|
)
|
|
37365
37365
|
_child_aliases = dict(
|
|
37366
|
-
constant='value',
|
|
37366
|
+
constant=('value', 'constant'),
|
|
37367
37367
|
)
|
|
37368
37368
|
|
|
37369
37369
|
class log10_droplets_per_unit_volume_1(Group):
|
|
@@ -37382,7 +37382,7 @@ class log10_droplets_per_unit_volume_1(Group):
|
|
|
37382
37382
|
udf=udf,
|
|
37383
37383
|
)
|
|
37384
37384
|
_child_aliases = dict(
|
|
37385
|
-
constant='value',
|
|
37385
|
+
constant=('value', 'constant'),
|
|
37386
37386
|
)
|
|
37387
37387
|
|
|
37388
37388
|
class multiphase_4(Group):
|
|
@@ -37411,18 +37411,18 @@ class multiphase_4(Group):
|
|
|
37411
37411
|
log10_droplets_per_unit_volume=log10_droplets_per_unit_volume_1,
|
|
37412
37412
|
)
|
|
37413
37413
|
_child_aliases = dict(
|
|
37414
|
-
den_spec='density_interpolation_method',
|
|
37415
|
-
ht_bottom='bottom_level',
|
|
37416
|
-
ht_local='free_surface_level',
|
|
37417
|
-
iac='interfacial_area_concentration',
|
|
37418
|
-
open_channel='open_channel',
|
|
37419
|
-
phase_spec='secondary_phase_for_inlet',
|
|
37420
|
-
slip_velocity='slip_velocity_specification',
|
|
37421
|
-
velocity_ratio='phase_velocity_ratio',
|
|
37422
|
-
volume_frac='volume_fraction',
|
|
37423
|
-
wsb='liquid_mass_fraction',
|
|
37424
|
-
wsf='relative_humidity',
|
|
37425
|
-
wsn='log10_droplets_per_unit_volume',
|
|
37414
|
+
den_spec=('density_interpolation_method', 'den-spec'),
|
|
37415
|
+
ht_bottom=('bottom_level', 'ht-bottom'),
|
|
37416
|
+
ht_local=('free_surface_level', 'ht-local'),
|
|
37417
|
+
iac=('interfacial_area_concentration', 'iac'),
|
|
37418
|
+
open_channel=('open_channel', 'open-channel?'),
|
|
37419
|
+
phase_spec=('secondary_phase_for_inlet', 'phase-spec'),
|
|
37420
|
+
slip_velocity=('slip_velocity_specification', 'slip-velocity'),
|
|
37421
|
+
velocity_ratio=('phase_velocity_ratio', 'velocity-ratio'),
|
|
37422
|
+
volume_frac=('volume_fraction', 'volume-frac'),
|
|
37423
|
+
wsb=('liquid_mass_fraction', 'wsb'),
|
|
37424
|
+
wsf=('relative_humidity', 'wsf'),
|
|
37425
|
+
wsn=('log10_droplets_per_unit_volume', 'wsn'),
|
|
37426
37426
|
)
|
|
37427
37427
|
|
|
37428
37428
|
class phase_9_child(Group):
|
|
@@ -37532,13 +37532,13 @@ class momentum_4(Group):
|
|
|
37532
37532
|
ecmf_reference_gauge_pressure=ecmf_reference_gauge_pressure,
|
|
37533
37533
|
)
|
|
37534
37534
|
_child_aliases = dict(
|
|
37535
|
-
ec_mass_flow='exit_corrected_mass_flow_rate',
|
|
37536
|
-
flow_spec='mass_flow_specification',
|
|
37537
|
-
frame_of_reference='reference_frame',
|
|
37538
|
-
mass_flow='mass_flow_rate',
|
|
37539
|
-
mass_flux_ave='average_mass_flux',
|
|
37540
|
-
pref='ecmf_reference_gauge_pressure',
|
|
37541
|
-
tref='ecmf_reference_temperature',
|
|
37535
|
+
ec_mass_flow=('exit_corrected_mass_flow_rate', 'ec-mass-flow'),
|
|
37536
|
+
flow_spec=('mass_flow_specification', 'flow-spec'),
|
|
37537
|
+
frame_of_reference=('reference_frame', 'frame-of-reference'),
|
|
37538
|
+
mass_flow=('mass_flow_rate', 'mass-flow'),
|
|
37539
|
+
mass_flux_ave=('average_mass_flux', 'mass-flux-ave'),
|
|
37540
|
+
pref=('ecmf_reference_gauge_pressure', 'pref'),
|
|
37541
|
+
tref=('ecmf_reference_temperature', 'tref'),
|
|
37542
37542
|
)
|
|
37543
37543
|
|
|
37544
37544
|
class turbulence_3(Group):
|
|
@@ -37581,10 +37581,10 @@ class multiphase_5(Group):
|
|
|
37581
37581
|
interfacial_area_concentration=interfacial_area_concentration,
|
|
37582
37582
|
)
|
|
37583
37583
|
_child_aliases = dict(
|
|
37584
|
-
iac='interfacial_area_concentration',
|
|
37585
|
-
slip_velocity='slip_velocity_specification',
|
|
37586
|
-
velocity_ratio='phase_velocity_ratio',
|
|
37587
|
-
volume_frac='volume_fraction',
|
|
37584
|
+
iac=('interfacial_area_concentration', 'iac'),
|
|
37585
|
+
slip_velocity=('slip_velocity_specification', 'slip-velocity'),
|
|
37586
|
+
velocity_ratio=('phase_velocity_ratio', 'velocity-ratio'),
|
|
37587
|
+
volume_frac=('volume_fraction', 'volume-frac'),
|
|
37588
37588
|
)
|
|
37589
37589
|
|
|
37590
37590
|
class potential_2(Group):
|
|
@@ -37770,7 +37770,7 @@ class temperature_1(Group):
|
|
|
37770
37770
|
udf=udf,
|
|
37771
37771
|
)
|
|
37772
37772
|
_child_aliases = dict(
|
|
37773
|
-
constant='value',
|
|
37773
|
+
constant=('value', 'constant'),
|
|
37774
37774
|
)
|
|
37775
37775
|
|
|
37776
37776
|
class q(Group):
|
|
@@ -37789,7 +37789,7 @@ class q(Group):
|
|
|
37789
37789
|
udf=udf,
|
|
37790
37790
|
)
|
|
37791
37791
|
_child_aliases = dict(
|
|
37792
|
-
constant='value',
|
|
37792
|
+
constant=('value', 'constant'),
|
|
37793
37793
|
)
|
|
37794
37794
|
|
|
37795
37795
|
class network_end_1(Group):
|
|
@@ -37917,17 +37917,17 @@ class radiation_3(Group):
|
|
|
37917
37917
|
radiating_s2s_surface=radiating_s2s_surface,
|
|
37918
37918
|
)
|
|
37919
37919
|
_child_aliases = dict(
|
|
37920
|
-
band_q_irrad='direct_irradiation',
|
|
37921
|
-
band_q_irrad_diffuse='diffuse_irradiation',
|
|
37922
|
-
coll_dphi='phi_width_of_beam',
|
|
37923
|
-
coll_dtheta='theta_width_of_beam',
|
|
37924
|
-
in_emiss='internal_emissivity',
|
|
37925
|
-
solar_direction='use_beeam_direction_from_solar_load_model_settings',
|
|
37926
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
37927
|
-
solar_irradiation='use_irradiation_from_solar_soad_model_settings',
|
|
37928
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
37929
|
-
t_b_b='black_body_temperature',
|
|
37930
|
-
t_b_b_spec='external_black_body_temperature_method',
|
|
37920
|
+
band_q_irrad=('direct_irradiation', 'band-q-irrad'),
|
|
37921
|
+
band_q_irrad_diffuse=('diffuse_irradiation', 'band-q-irrad-diffuse'),
|
|
37922
|
+
coll_dphi=('phi_width_of_beam', 'coll-dphi'),
|
|
37923
|
+
coll_dtheta=('theta_width_of_beam', 'coll-dtheta'),
|
|
37924
|
+
in_emiss=('internal_emissivity', 'in-emiss'),
|
|
37925
|
+
solar_direction=('use_beeam_direction_from_solar_load_model_settings', 'solar-direction?'),
|
|
37926
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
37927
|
+
solar_irradiation=('use_irradiation_from_solar_soad_model_settings', 'solar-irradiation?'),
|
|
37928
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
37929
|
+
t_b_b=('black_body_temperature', 't-b-b'),
|
|
37930
|
+
t_b_b_spec=('external_black_body_temperature_method', 't-b-b-spec'),
|
|
37931
37931
|
)
|
|
37932
37932
|
|
|
37933
37933
|
class dpm_2(Group):
|
|
@@ -37945,9 +37945,9 @@ class dpm_2(Group):
|
|
|
37945
37945
|
discrete_phase_bc_function=discrete_phase_bc_function,
|
|
37946
37946
|
)
|
|
37947
37947
|
_child_aliases = dict(
|
|
37948
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
37949
|
-
dpm_bc_type='discrete_phase_bc_type',
|
|
37950
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
37948
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
37949
|
+
dpm_bc_type=('discrete_phase_bc_type', 'dpm/bc-type'),
|
|
37950
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
37951
37951
|
)
|
|
37952
37952
|
|
|
37953
37953
|
class phase_13_child(Group):
|
|
@@ -38068,31 +38068,31 @@ class momentum_6(Group):
|
|
|
38068
38068
|
strength=strength,
|
|
38069
38069
|
)
|
|
38070
38070
|
_child_aliases = dict(
|
|
38071
|
-
ac_options='acoustic_wave_model',
|
|
38072
|
-
ac_wave='incoming_wave',
|
|
38073
|
-
avg_option='avg_method',
|
|
38074
|
-
avg_press_spec='avg_pressure_spec',
|
|
38075
|
-
axis_direction_component='axis_direction',
|
|
38076
|
-
axis_origin_component='axis_origin',
|
|
38077
|
-
b='loss_coefficient',
|
|
38078
|
-
direction_spec='backflow_dir_spec_method',
|
|
38079
|
-
flow_direction_component='flow_direction',
|
|
38080
|
-
frame_of_reference='backflow_reference_frame',
|
|
38081
|
-
gen_nrbc_spec='exit_pressure_spec',
|
|
38082
|
-
impedance_0='impedance_zero_order_term',
|
|
38083
|
-
impedance_1='real_pole_series',
|
|
38084
|
-
impedance_2='complex_pole_series',
|
|
38085
|
-
p='gauge_pressure',
|
|
38086
|
-
p_backflow_spec='backflow_pressure_specification',
|
|
38087
|
-
p_backflow_spec_gen='backflow_pressure_spec',
|
|
38088
|
-
p_profile_multiplier='pressure_profile_multiplier',
|
|
38089
|
-
press_spec='pressure_spec_method',
|
|
38090
|
-
press_spec_gen='pressure_spec',
|
|
38091
|
-
radial='radial_equ_pressure_distribution',
|
|
38092
|
-
targeted_mf='target_mass_flow',
|
|
38093
|
-
targeted_mf_boundary='target_mass_flow_rate',
|
|
38094
|
-
targeted_mf_pmax='upper_limit_of_abs_pressure',
|
|
38095
|
-
targeted_mf_pmin='lower_limit_of_abs_pressure',
|
|
38071
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
38072
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
38073
|
+
avg_option=('avg_method', 'avg-option'),
|
|
38074
|
+
avg_press_spec=('avg_pressure_spec', 'avg-press-spec?'),
|
|
38075
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
38076
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
38077
|
+
b=('loss_coefficient', 'b'),
|
|
38078
|
+
direction_spec=('backflow_dir_spec_method', 'direction-spec'),
|
|
38079
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
38080
|
+
frame_of_reference=('backflow_reference_frame', 'frame-of-reference'),
|
|
38081
|
+
gen_nrbc_spec=('exit_pressure_spec', 'gen-nrbc-spec'),
|
|
38082
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
38083
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
38084
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
38085
|
+
p=('gauge_pressure', 'p'),
|
|
38086
|
+
p_backflow_spec=('backflow_pressure_specification', 'p-backflow-spec'),
|
|
38087
|
+
p_backflow_spec_gen=('backflow_pressure_spec', 'p-backflow-spec-gen'),
|
|
38088
|
+
p_profile_multiplier=('pressure_profile_multiplier', 'p-profile-multiplier'),
|
|
38089
|
+
press_spec=('pressure_spec_method', 'press-spec'),
|
|
38090
|
+
press_spec_gen=('pressure_spec', 'press-spec-gen'),
|
|
38091
|
+
radial=('radial_equ_pressure_distribution', 'radial?'),
|
|
38092
|
+
targeted_mf=('target_mass_flow', 'targeted-mf'),
|
|
38093
|
+
targeted_mf_boundary=('target_mass_flow_rate', 'targeted-mf-boundary?'),
|
|
38094
|
+
targeted_mf_pmax=('upper_limit_of_abs_pressure', 'targeted-mf-pmax'),
|
|
38095
|
+
targeted_mf_pmin=('lower_limit_of_abs_pressure', 'targeted-mf-pmin'),
|
|
38096
38096
|
)
|
|
38097
38097
|
|
|
38098
38098
|
class phase_14_child(Group):
|
|
@@ -38324,10 +38324,10 @@ class periodic_1(Group):
|
|
|
38324
38324
|
per_angle=per_angle,
|
|
38325
38325
|
)
|
|
38326
38326
|
_child_aliases = dict(
|
|
38327
|
-
angular='rotationally_periodic',
|
|
38328
|
-
axis_direction_component='axis_direction',
|
|
38329
|
-
position_of_axis='axis_origin',
|
|
38330
|
-
shift_components='shift_component',
|
|
38327
|
+
angular=('rotationally_periodic', 'angular?'),
|
|
38328
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
38329
|
+
position_of_axis=('axis_origin', 'position-of-axis'),
|
|
38330
|
+
shift_components=('shift_component', 'shift-components'),
|
|
38331
38331
|
)
|
|
38332
38332
|
|
|
38333
38333
|
class phase_15_child(Group):
|
|
@@ -38454,7 +38454,7 @@ class v_absp(Group):
|
|
|
38454
38454
|
udf=udf,
|
|
38455
38455
|
)
|
|
38456
38456
|
_child_aliases = dict(
|
|
38457
|
-
constant='value',
|
|
38457
|
+
constant=('value', 'constant'),
|
|
38458
38458
|
)
|
|
38459
38459
|
|
|
38460
38460
|
class ir_absp(Group):
|
|
@@ -38473,7 +38473,7 @@ class ir_absp(Group):
|
|
|
38473
38473
|
udf=udf,
|
|
38474
38474
|
)
|
|
38475
38475
|
_child_aliases = dict(
|
|
38476
|
-
constant='value',
|
|
38476
|
+
constant=('value', 'constant'),
|
|
38477
38477
|
)
|
|
38478
38478
|
|
|
38479
38479
|
class ir_trans(Group):
|
|
@@ -38492,7 +38492,7 @@ class ir_trans(Group):
|
|
|
38492
38492
|
udf=udf,
|
|
38493
38493
|
)
|
|
38494
38494
|
_child_aliases = dict(
|
|
38495
|
-
constant='value',
|
|
38495
|
+
constant=('value', 'constant'),
|
|
38496
38496
|
)
|
|
38497
38497
|
|
|
38498
38498
|
class v_trans(Group):
|
|
@@ -38511,7 +38511,7 @@ class v_trans(Group):
|
|
|
38511
38511
|
udf=udf,
|
|
38512
38512
|
)
|
|
38513
38513
|
_child_aliases = dict(
|
|
38514
|
-
constant='value',
|
|
38514
|
+
constant=('value', 'constant'),
|
|
38515
38515
|
)
|
|
38516
38516
|
|
|
38517
38517
|
class jump_adhesion(Boolean):
|
|
@@ -38546,7 +38546,7 @@ class contact_angles_child(Group):
|
|
|
38546
38546
|
udf=udf,
|
|
38547
38547
|
)
|
|
38548
38548
|
_child_aliases = dict(
|
|
38549
|
-
constant='value',
|
|
38549
|
+
constant=('value', 'constant'),
|
|
38550
38550
|
)
|
|
38551
38551
|
|
|
38552
38552
|
class contact_angles(NamedObject[contact_angles_child], _NonCreatableNamedObjectMixin[contact_angles_child]):
|
|
@@ -38601,16 +38601,16 @@ class porous_jump_1(Group):
|
|
|
38601
38601
|
z_disp_boundary_value=z_disp_boundary_value,
|
|
38602
38602
|
)
|
|
38603
38603
|
_child_aliases = dict(
|
|
38604
|
-
adhesion_angle='contact_angles',
|
|
38605
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
38606
|
-
dpm_bc_type_j='discrete_phase_bc_type',
|
|
38607
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
38608
|
-
x_displacement_type='x_disp_boundary_condition',
|
|
38609
|
-
x_displacement_value='x_disp_boundary_value',
|
|
38610
|
-
y_displacement_type='y_disp_boundary_condition',
|
|
38611
|
-
y_displacement_value='y_disp_boundary_value',
|
|
38612
|
-
z_displacement_type='z_disp_boundary_condition',
|
|
38613
|
-
z_displacement_value='z_disp_boundary_value',
|
|
38604
|
+
adhesion_angle=('contact_angles', 'adhesion-angle'),
|
|
38605
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
38606
|
+
dpm_bc_type_j=('discrete_phase_bc_type', 'dpm/bc-type-j'),
|
|
38607
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
38608
|
+
x_displacement_type=('x_disp_boundary_condition', 'x-displacement-type'),
|
|
38609
|
+
x_displacement_value=('x_disp_boundary_value', 'x-displacement-value'),
|
|
38610
|
+
y_displacement_type=('y_disp_boundary_condition', 'y-displacement-type'),
|
|
38611
|
+
y_displacement_value=('y_disp_boundary_value', 'y-displacement-value'),
|
|
38612
|
+
z_displacement_type=('z_disp_boundary_condition', 'z-displacement-type'),
|
|
38613
|
+
z_displacement_value=('z_disp_boundary_value', 'z-displacement-value'),
|
|
38614
38614
|
)
|
|
38615
38615
|
|
|
38616
38616
|
class phase_16_child(Group):
|
|
@@ -38697,7 +38697,7 @@ class mach_number(Group):
|
|
|
38697
38697
|
udf=udf,
|
|
38698
38698
|
)
|
|
38699
38699
|
_child_aliases = dict(
|
|
38700
|
-
constant='value',
|
|
38700
|
+
constant=('value', 'constant'),
|
|
38701
38701
|
)
|
|
38702
38702
|
|
|
38703
38703
|
class non_equil_boundary(Boolean):
|
|
@@ -38726,11 +38726,11 @@ class momentum_7(Group):
|
|
|
38726
38726
|
axis_origin=axis_origin_2,
|
|
38727
38727
|
)
|
|
38728
38728
|
_child_aliases = dict(
|
|
38729
|
-
axis_direction_component='axis_direction',
|
|
38730
|
-
axis_origin_component='axis_origin',
|
|
38731
|
-
flow_direction_component='flow_direction',
|
|
38732
|
-
m='mach_number',
|
|
38733
|
-
p='gauge_pressure',
|
|
38729
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
38730
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
38731
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
38732
|
+
m=('mach_number', 'm'),
|
|
38733
|
+
p=('gauge_pressure', 'p'),
|
|
38734
38734
|
)
|
|
38735
38735
|
|
|
38736
38736
|
class vibrational_electronic_temperature(Group):
|
|
@@ -38749,7 +38749,7 @@ class vibrational_electronic_temperature(Group):
|
|
|
38749
38749
|
udf=udf,
|
|
38750
38750
|
)
|
|
38751
38751
|
_child_aliases = dict(
|
|
38752
|
-
constant='value',
|
|
38752
|
+
constant=('value', 'constant'),
|
|
38753
38753
|
)
|
|
38754
38754
|
|
|
38755
38755
|
class thermal_4(Group):
|
|
@@ -38765,8 +38765,8 @@ class thermal_4(Group):
|
|
|
38765
38765
|
vibrational_electronic_temperature=vibrational_electronic_temperature,
|
|
38766
38766
|
)
|
|
38767
38767
|
_child_aliases = dict(
|
|
38768
|
-
t='temperature',
|
|
38769
|
-
tve='vibrational_electronic_temperature',
|
|
38768
|
+
t=('temperature', 't'),
|
|
38769
|
+
tve=('vibrational_electronic_temperature', 'tve'),
|
|
38770
38770
|
)
|
|
38771
38771
|
|
|
38772
38772
|
class radiation_4(Group):
|
|
@@ -38795,18 +38795,18 @@ class radiation_4(Group):
|
|
|
38795
38795
|
radiating_s2s_surface=radiating_s2s_surface,
|
|
38796
38796
|
)
|
|
38797
38797
|
_child_aliases = dict(
|
|
38798
|
-
band_q_irrad='direct_irradiation',
|
|
38799
|
-
band_q_irrad_diffuse='diffuse_irradiation',
|
|
38800
|
-
coll_dphi='phi_width_of_beam',
|
|
38801
|
-
coll_dtheta='theta_width_of_beam',
|
|
38802
|
-
in_emiss='internal_emissivity',
|
|
38803
|
-
radial_direction_component='radial_direction',
|
|
38804
|
-
solar_direction='use_beeam_direction_from_solar_load_model_settings',
|
|
38805
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
38806
|
-
solar_irradiation='use_irradiation_from_solar_soad_model_settings',
|
|
38807
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
38808
|
-
t_b_b='black_body_temperature',
|
|
38809
|
-
t_b_b_spec='external_black_body_temperature_method',
|
|
38798
|
+
band_q_irrad=('direct_irradiation', 'band-q-irrad'),
|
|
38799
|
+
band_q_irrad_diffuse=('diffuse_irradiation', 'band-q-irrad-diffuse'),
|
|
38800
|
+
coll_dphi=('phi_width_of_beam', 'coll-dphi'),
|
|
38801
|
+
coll_dtheta=('theta_width_of_beam', 'coll-dtheta'),
|
|
38802
|
+
in_emiss=('internal_emissivity', 'in-emiss'),
|
|
38803
|
+
radial_direction_component=('radial_direction', 'radial-direction-component'),
|
|
38804
|
+
solar_direction=('use_beeam_direction_from_solar_load_model_settings', 'solar-direction?'),
|
|
38805
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
38806
|
+
solar_irradiation=('use_irradiation_from_solar_soad_model_settings', 'solar-irradiation?'),
|
|
38807
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
38808
|
+
t_b_b=('black_body_temperature', 't-b-b'),
|
|
38809
|
+
t_b_b_spec=('external_black_body_temperature_method', 't-b-b-spec'),
|
|
38810
38810
|
)
|
|
38811
38811
|
|
|
38812
38812
|
class species_9(Group):
|
|
@@ -38853,39 +38853,39 @@ class species_9(Group):
|
|
|
38853
38853
|
pollutant_hocl_mass_fraction=pollutant_hocl_mass_fraction,
|
|
38854
38854
|
)
|
|
38855
38855
|
_child_aliases = dict(
|
|
38856
|
-
fmean='mean_mixture_fraction',
|
|
38857
|
-
fmean2='secondary_mean_mixture_fraction',
|
|
38858
|
-
fvar='mixture_fraction_variance',
|
|
38859
|
-
fvar2='secondary_mixture_fraction_variance',
|
|
38860
|
-
mf='species_mass_fraction',
|
|
38861
|
-
mole_fraction='species_mole_fraction',
|
|
38862
|
-
pollut_cl='pollutant_cl_mass_fraction',
|
|
38863
|
-
pollut_cl2='pollutant_cl2_mass_fraction',
|
|
38864
|
-
pollut_ctar='tar_mass_fraction',
|
|
38865
|
-
pollut_h2s='pollutant_h2s_mass_fraction',
|
|
38866
|
-
pollut_hcl='pollutant_hcl_mass_fraction',
|
|
38867
|
-
pollut_hcn='pollutant_hcn_mass_fraction',
|
|
38868
|
-
pollut_hg='pollutant_hg_mass_fraction',
|
|
38869
|
-
pollut_hgcl='pollutant_hgcl_mass_fraction',
|
|
38870
|
-
pollut_hgcl2='pollutant_hgcl2_mass_fraction',
|
|
38871
|
-
pollut_hgo='pollutant_hgo_mass_fraction',
|
|
38872
|
-
pollut_hnco='pollutant_hnco_mass_fraction',
|
|
38873
|
-
pollut_hocl='pollutant_hocl_mass_fraction',
|
|
38874
|
-
pollut_n2o='pollutant_n2o_mass_fraction',
|
|
38875
|
-
pollut_nco='pollutant_nco_mass_fraction',
|
|
38876
|
-
pollut_nh3='pollutant_nh3_mass_fraction',
|
|
38877
|
-
pollut_no='pollutant_no_mass_fraction',
|
|
38878
|
-
pollut_nuclei='nuclei',
|
|
38879
|
-
pollut_sh='pollutant_sh_mass_fraction',
|
|
38880
|
-
pollut_so='pollutant_so_mass_fraction',
|
|
38881
|
-
pollut_so2='pollutant_so2_mass_fraction',
|
|
38882
|
-
pollut_so3='pollutant_so3_mass_fraction',
|
|
38883
|
-
pollut_soot='soot_mass_fraction',
|
|
38884
|
-
pollut_urea='pollutant_urea_mass_fraction',
|
|
38885
|
-
prob_mode_1='mixture_fraction',
|
|
38886
|
-
prob_mode_2='mode_2_probability',
|
|
38887
|
-
prob_mode_3='mode_3_probability',
|
|
38888
|
-
species_in_mole_fractions='specify_species_in_mole_fractions',
|
|
38856
|
+
fmean=('mean_mixture_fraction', 'fmean'),
|
|
38857
|
+
fmean2=('secondary_mean_mixture_fraction', 'fmean2'),
|
|
38858
|
+
fvar=('mixture_fraction_variance', 'fvar'),
|
|
38859
|
+
fvar2=('secondary_mixture_fraction_variance', 'fvar2'),
|
|
38860
|
+
mf=('species_mass_fraction', 'mf'),
|
|
38861
|
+
mole_fraction=('species_mole_fraction', 'mole-fraction'),
|
|
38862
|
+
pollut_cl=('pollutant_cl_mass_fraction', 'pollut_cl'),
|
|
38863
|
+
pollut_cl2=('pollutant_cl2_mass_fraction', 'pollut_cl2'),
|
|
38864
|
+
pollut_ctar=('tar_mass_fraction', 'pollut_ctar'),
|
|
38865
|
+
pollut_h2s=('pollutant_h2s_mass_fraction', 'pollut_h2s'),
|
|
38866
|
+
pollut_hcl=('pollutant_hcl_mass_fraction', 'pollut_hcl'),
|
|
38867
|
+
pollut_hcn=('pollutant_hcn_mass_fraction', 'pollut_hcn'),
|
|
38868
|
+
pollut_hg=('pollutant_hg_mass_fraction', 'pollut_hg'),
|
|
38869
|
+
pollut_hgcl=('pollutant_hgcl_mass_fraction', 'pollut_hgcl'),
|
|
38870
|
+
pollut_hgcl2=('pollutant_hgcl2_mass_fraction', 'pollut_hgcl2'),
|
|
38871
|
+
pollut_hgo=('pollutant_hgo_mass_fraction', 'pollut_hgo'),
|
|
38872
|
+
pollut_hnco=('pollutant_hnco_mass_fraction', 'pollut_hnco'),
|
|
38873
|
+
pollut_hocl=('pollutant_hocl_mass_fraction', 'pollut_hocl'),
|
|
38874
|
+
pollut_n2o=('pollutant_n2o_mass_fraction', 'pollut_n2o'),
|
|
38875
|
+
pollut_nco=('pollutant_nco_mass_fraction', 'pollut_nco'),
|
|
38876
|
+
pollut_nh3=('pollutant_nh3_mass_fraction', 'pollut_nh3'),
|
|
38877
|
+
pollut_no=('pollutant_no_mass_fraction', 'pollut_no'),
|
|
38878
|
+
pollut_nuclei=('nuclei', 'pollut_nuclei'),
|
|
38879
|
+
pollut_sh=('pollutant_sh_mass_fraction', 'pollut_sh'),
|
|
38880
|
+
pollut_so=('pollutant_so_mass_fraction', 'pollut_so'),
|
|
38881
|
+
pollut_so2=('pollutant_so2_mass_fraction', 'pollut_so2'),
|
|
38882
|
+
pollut_so3=('pollutant_so3_mass_fraction', 'pollut_so3'),
|
|
38883
|
+
pollut_soot=('soot_mass_fraction', 'pollut_soot'),
|
|
38884
|
+
pollut_urea=('pollutant_urea_mass_fraction', 'pollut_urea'),
|
|
38885
|
+
prob_mode_1=('mixture_fraction', 'prob-mode-1'),
|
|
38886
|
+
prob_mode_2=('mode_2_probability', 'prob-mode-2'),
|
|
38887
|
+
prob_mode_3=('mode_3_probability', 'prob-mode-3'),
|
|
38888
|
+
species_in_mole_fractions=('specify_species_in_mole_fractions', 'species-in-mole-fractions?'),
|
|
38889
38889
|
)
|
|
38890
38890
|
|
|
38891
38891
|
class phase_17_child(Group):
|
|
@@ -39000,18 +39000,18 @@ class momentum_8(Group):
|
|
|
39000
39000
|
incoming_wave=incoming_wave,
|
|
39001
39001
|
)
|
|
39002
39002
|
_child_aliases = dict(
|
|
39003
|
-
ac_options='acoustic_wave_model',
|
|
39004
|
-
ac_wave='incoming_wave',
|
|
39005
|
-
axis_direction_component='axis_direction',
|
|
39006
|
-
axis_origin_component='axis_origin',
|
|
39007
|
-
direction_spec='direction_specification_method',
|
|
39008
|
-
direction_vector_components='direction_vector',
|
|
39009
|
-
flow_direction_component='flow_direction',
|
|
39010
|
-
frame_of_reference='reference_frame',
|
|
39011
|
-
impedance_0='impedance_zero_order_term',
|
|
39012
|
-
impedance_1='real_pole_series',
|
|
39013
|
-
impedance_2='complex_pole_series',
|
|
39014
|
-
p0='gauge_total_pressure',
|
|
39003
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
39004
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
39005
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
39006
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
39007
|
+
direction_spec=('direction_specification_method', 'direction-spec'),
|
|
39008
|
+
direction_vector_components=('direction_vector', 'direction-vector-components'),
|
|
39009
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
39010
|
+
frame_of_reference=('reference_frame', 'frame-of-reference'),
|
|
39011
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
39012
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
39013
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
39014
|
+
p0=('gauge_total_pressure', 'p0'),
|
|
39015
39015
|
)
|
|
39016
39016
|
|
|
39017
39017
|
class phase_18_child(Group):
|
|
@@ -39140,30 +39140,30 @@ class momentum_9(Group):
|
|
|
39140
39140
|
incoming_wave=incoming_wave,
|
|
39141
39141
|
)
|
|
39142
39142
|
_child_aliases = dict(
|
|
39143
|
-
ac_options='acoustic_wave_model',
|
|
39144
|
-
ac_wave='incoming_wave',
|
|
39145
|
-
avg_option='avg_method',
|
|
39146
|
-
avg_press_spec='avg_pressure_spec',
|
|
39147
|
-
axis_direction_component='axis_direction',
|
|
39148
|
-
axis_origin_component='axis_origin',
|
|
39149
|
-
direction_spec='backflow_dir_spec_method',
|
|
39150
|
-
flow_direction_component='flow_direction',
|
|
39151
|
-
frame_of_reference='backflow_reference_frame',
|
|
39152
|
-
gen_nrbc_spec='exit_pressure_spec',
|
|
39153
|
-
impedance_0='impedance_zero_order_term',
|
|
39154
|
-
impedance_1='real_pole_series',
|
|
39155
|
-
impedance_2='complex_pole_series',
|
|
39156
|
-
p='gauge_pressure',
|
|
39157
|
-
p_backflow_spec='backflow_pressure_specification',
|
|
39158
|
-
p_backflow_spec_gen='backflow_pressure_spec',
|
|
39159
|
-
p_profile_multiplier='pressure_profile_multiplier',
|
|
39160
|
-
press_spec='pressure_spec_method',
|
|
39161
|
-
press_spec_gen='pressure_spec',
|
|
39162
|
-
radial='radial_equ_pressure_distribution',
|
|
39163
|
-
targeted_mf='target_mass_flow',
|
|
39164
|
-
targeted_mf_boundary='target_mass_flow_rate',
|
|
39165
|
-
targeted_mf_pmax='upper_limit_of_abs_pressure',
|
|
39166
|
-
targeted_mf_pmin='lower_limit_of_abs_pressure',
|
|
39143
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
39144
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
39145
|
+
avg_option=('avg_method', 'avg-option'),
|
|
39146
|
+
avg_press_spec=('avg_pressure_spec', 'avg-press-spec?'),
|
|
39147
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
39148
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
39149
|
+
direction_spec=('backflow_dir_spec_method', 'direction-spec'),
|
|
39150
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
39151
|
+
frame_of_reference=('backflow_reference_frame', 'frame-of-reference'),
|
|
39152
|
+
gen_nrbc_spec=('exit_pressure_spec', 'gen-nrbc-spec'),
|
|
39153
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
39154
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
39155
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
39156
|
+
p=('gauge_pressure', 'p'),
|
|
39157
|
+
p_backflow_spec=('backflow_pressure_specification', 'p-backflow-spec'),
|
|
39158
|
+
p_backflow_spec_gen=('backflow_pressure_spec', 'p-backflow-spec-gen'),
|
|
39159
|
+
p_profile_multiplier=('pressure_profile_multiplier', 'p-profile-multiplier'),
|
|
39160
|
+
press_spec=('pressure_spec_method', 'press-spec'),
|
|
39161
|
+
press_spec_gen=('pressure_spec', 'press-spec-gen'),
|
|
39162
|
+
radial=('radial_equ_pressure_distribution', 'radial?'),
|
|
39163
|
+
targeted_mf=('target_mass_flow', 'targeted-mf'),
|
|
39164
|
+
targeted_mf_boundary=('target_mass_flow_rate', 'targeted-mf-boundary?'),
|
|
39165
|
+
targeted_mf_pmax=('upper_limit_of_abs_pressure', 'targeted-mf-pmax'),
|
|
39166
|
+
targeted_mf_pmin=('lower_limit_of_abs_pressure', 'targeted-mf-pmin'),
|
|
39167
39167
|
)
|
|
39168
39168
|
|
|
39169
39169
|
class phase_19_child(Group):
|
|
@@ -39309,11 +39309,11 @@ class radiator_1(Group):
|
|
|
39309
39309
|
strength=strength,
|
|
39310
39310
|
)
|
|
39311
39311
|
_child_aliases = dict(
|
|
39312
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
39313
|
-
dpm_bc_type_j='discrete_phase_bc_type',
|
|
39314
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
39315
|
-
kc='loss_coefficient',
|
|
39316
|
-
q='heat_flux',
|
|
39312
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
39313
|
+
dpm_bc_type_j=('discrete_phase_bc_type', 'dpm/bc-type-j'),
|
|
39314
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
39315
|
+
kc=('loss_coefficient', 'kc'),
|
|
39316
|
+
q=('heat_flux', 'q'),
|
|
39317
39317
|
)
|
|
39318
39318
|
|
|
39319
39319
|
class phase_20_child(Group):
|
|
@@ -39541,7 +39541,7 @@ class temperature_rise(Group):
|
|
|
39541
39541
|
udf=udf,
|
|
39542
39542
|
)
|
|
39543
39543
|
_child_aliases = dict(
|
|
39544
|
-
constant='value',
|
|
39544
|
+
constant=('value', 'constant'),
|
|
39545
39545
|
)
|
|
39546
39546
|
|
|
39547
39547
|
class heat_source(Group):
|
|
@@ -39560,7 +39560,7 @@ class heat_source(Group):
|
|
|
39560
39560
|
udf=udf,
|
|
39561
39561
|
)
|
|
39562
39562
|
_child_aliases = dict(
|
|
39563
|
-
constant='value',
|
|
39563
|
+
constant=('value', 'constant'),
|
|
39564
39564
|
)
|
|
39565
39565
|
|
|
39566
39566
|
class freestream_temperature(Real):
|
|
@@ -39605,7 +39605,7 @@ class species_mass_fractions_child(Group):
|
|
|
39605
39605
|
udf=udf,
|
|
39606
39606
|
)
|
|
39607
39607
|
_child_aliases = dict(
|
|
39608
|
-
constant='value',
|
|
39608
|
+
constant=('value', 'constant'),
|
|
39609
39609
|
)
|
|
39610
39610
|
|
|
39611
39611
|
class species_mass_fractions(NamedObject[species_mass_fractions_child], _NonCreatableNamedObjectMixin[species_mass_fractions_child]):
|
|
@@ -39672,38 +39672,38 @@ class recirculation_inlet_1(Group):
|
|
|
39672
39672
|
solar_transmissivity_factor=solar_transmissivity_factor,
|
|
39673
39673
|
)
|
|
39674
39674
|
_child_aliases = dict(
|
|
39675
|
-
direction_spec='direction_specification',
|
|
39676
|
-
direction_vector_components='direction_vector',
|
|
39677
|
-
e='turbulent_dissipation_rate',
|
|
39678
|
-
flow_direction_component='flow_direction',
|
|
39679
|
-
hc='transfer_coefficient',
|
|
39680
|
-
intermit='intermittency',
|
|
39681
|
-
k='turbulent_kinetic_energy',
|
|
39682
|
-
kl='laminar_kinetic_energy',
|
|
39683
|
-
ksgs='subgrid_kinetic_energy',
|
|
39684
|
-
ksgs_spec='subgrid_kinetic_energy_specification',
|
|
39685
|
-
mass_flow_multiplier='species_mass_fractions',
|
|
39686
|
-
nut='modified_turbulent_viscosity',
|
|
39687
|
-
o='specific_dissipation_rate',
|
|
39688
|
-
pid='outlet_zone',
|
|
39689
|
-
rst_spec='reynolds_stress_specification',
|
|
39690
|
-
sgs_turb_intensity='subgrid_turbulent_intensity',
|
|
39691
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
39692
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
39693
|
-
temperature_spec='temperature_rise_specification',
|
|
39694
|
-
tinf='freestream_temperature',
|
|
39695
|
-
turb_hydraulic_diam='hydraulic_diameter',
|
|
39696
|
-
turb_intensity='turbulent_intensity',
|
|
39697
|
-
turb_length_scale='turbulent_length_scale',
|
|
39698
|
-
turb_viscosity_ratio='turbulent_viscosity_ratio',
|
|
39699
|
-
turb_viscosity_ratio_profile='turbulent_viscosity_ratio_profile',
|
|
39700
|
-
uu='uu_reynolds_stresses',
|
|
39701
|
-
uv='uv_reynolds_stresses',
|
|
39702
|
-
uw='uw_reynolds_stresses',
|
|
39703
|
-
v2='velocity_variance_scale',
|
|
39704
|
-
vv='vv_reynolds_stresses',
|
|
39705
|
-
vw='vw_reynolds_stresses',
|
|
39706
|
-
ww='ww_reynolds_stresses',
|
|
39675
|
+
direction_spec=('direction_specification', 'direction-spec'),
|
|
39676
|
+
direction_vector_components=('direction_vector', 'direction-vector-components'),
|
|
39677
|
+
e=('turbulent_dissipation_rate', 'e'),
|
|
39678
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
39679
|
+
hc=('transfer_coefficient', 'hc'),
|
|
39680
|
+
intermit=('intermittency', 'intermit'),
|
|
39681
|
+
k=('turbulent_kinetic_energy', 'k'),
|
|
39682
|
+
kl=('laminar_kinetic_energy', 'kl'),
|
|
39683
|
+
ksgs=('subgrid_kinetic_energy', 'ksgs'),
|
|
39684
|
+
ksgs_spec=('subgrid_kinetic_energy_specification', 'ksgs-spec'),
|
|
39685
|
+
mass_flow_multiplier=('species_mass_fractions', 'mass-flow-multiplier'),
|
|
39686
|
+
nut=('modified_turbulent_viscosity', 'nut'),
|
|
39687
|
+
o=('specific_dissipation_rate', 'o'),
|
|
39688
|
+
pid=('outlet_zone', 'pid'),
|
|
39689
|
+
rst_spec=('reynolds_stress_specification', 'rst-spec'),
|
|
39690
|
+
sgs_turb_intensity=('subgrid_turbulent_intensity', 'sgs-turb-intensity'),
|
|
39691
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
39692
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
39693
|
+
temperature_spec=('temperature_rise_specification', 'temperature-spec'),
|
|
39694
|
+
tinf=('freestream_temperature', 'tinf'),
|
|
39695
|
+
turb_hydraulic_diam=('hydraulic_diameter', 'turb-hydraulic-diam'),
|
|
39696
|
+
turb_intensity=('turbulent_intensity', 'turb-intensity'),
|
|
39697
|
+
turb_length_scale=('turbulent_length_scale', 'turb-length-scale'),
|
|
39698
|
+
turb_viscosity_ratio=('turbulent_viscosity_ratio', 'turb-viscosity-ratio'),
|
|
39699
|
+
turb_viscosity_ratio_profile=('turbulent_viscosity_ratio_profile', 'turb-viscosity-ratio-profile'),
|
|
39700
|
+
uu=('uu_reynolds_stresses', 'uu'),
|
|
39701
|
+
uv=('uv_reynolds_stresses', 'uv'),
|
|
39702
|
+
uw=('uw_reynolds_stresses', 'uw'),
|
|
39703
|
+
v2=('velocity_variance_scale', 'v2'),
|
|
39704
|
+
vv=('vv_reynolds_stresses', 'vv'),
|
|
39705
|
+
vw=('vw_reynolds_stresses', 'vw'),
|
|
39706
|
+
ww=('ww_reynolds_stresses', 'ww'),
|
|
39707
39707
|
)
|
|
39708
39708
|
|
|
39709
39709
|
class phase_22_child(Group):
|
|
@@ -39790,10 +39790,10 @@ class recirculation_outlet_1(Group):
|
|
|
39790
39790
|
solar_transmissivity_factor=solar_transmissivity_factor,
|
|
39791
39791
|
)
|
|
39792
39792
|
_child_aliases = dict(
|
|
39793
|
-
flow_spec='mass_flow_specification',
|
|
39794
|
-
mass_flow='mass_flow_rate',
|
|
39795
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
39796
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
39793
|
+
flow_spec=('mass_flow_specification', 'flow-spec'),
|
|
39794
|
+
mass_flow=('mass_flow_rate', 'mass-flow'),
|
|
39795
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
39796
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
39797
39797
|
)
|
|
39798
39798
|
|
|
39799
39799
|
class phase_23_child(Group):
|
|
@@ -39964,7 +39964,7 @@ class velocity_1(Group):
|
|
|
39964
39964
|
udf=udf,
|
|
39965
39965
|
)
|
|
39966
39966
|
_child_aliases = dict(
|
|
39967
|
-
constant='value',
|
|
39967
|
+
constant=('value', 'constant'),
|
|
39968
39968
|
)
|
|
39969
39969
|
|
|
39970
39970
|
class initial_gauge_pressure(Group):
|
|
@@ -39983,7 +39983,7 @@ class initial_gauge_pressure(Group):
|
|
|
39983
39983
|
udf=udf,
|
|
39984
39984
|
)
|
|
39985
39985
|
_child_aliases = dict(
|
|
39986
|
-
constant='value',
|
|
39986
|
+
constant=('value', 'constant'),
|
|
39987
39987
|
)
|
|
39988
39988
|
|
|
39989
39989
|
class velocity_components_child(Group):
|
|
@@ -40002,7 +40002,7 @@ class velocity_components_child(Group):
|
|
|
40002
40002
|
udf=udf,
|
|
40003
40003
|
)
|
|
40004
40004
|
_child_aliases = dict(
|
|
40005
|
-
constant='value',
|
|
40005
|
+
constant=('value', 'constant'),
|
|
40006
40006
|
)
|
|
40007
40007
|
|
|
40008
40008
|
class velocity_components(ListObject[velocity_components_child]):
|
|
@@ -40055,21 +40055,21 @@ class momentum_10(Group):
|
|
|
40055
40055
|
incoming_wave=incoming_wave,
|
|
40056
40056
|
)
|
|
40057
40057
|
_child_aliases = dict(
|
|
40058
|
-
ac_options='acoustic_wave_model',
|
|
40059
|
-
ac_wave='incoming_wave',
|
|
40060
|
-
axis_direction_component='axis_direction',
|
|
40061
|
-
axis_origin_component='axis_origin',
|
|
40062
|
-
flow_direction_component='flow_direction',
|
|
40063
|
-
frame_of_reference='reference_frame',
|
|
40064
|
-
impedance_0='impedance_zero_order_term',
|
|
40065
|
-
impedance_1='real_pole_series',
|
|
40066
|
-
impedance_2='complex_pole_series',
|
|
40067
|
-
omega_swirl='swirl_angular_velocity',
|
|
40068
|
-
p='gauge_pressure',
|
|
40069
|
-
p_sup='initial_gauge_pressure',
|
|
40070
|
-
velocity_component='velocity_components',
|
|
40071
|
-
velocity_spec='velocity_specification_method',
|
|
40072
|
-
vmag='velocity',
|
|
40058
|
+
ac_options=('acoustic_wave_model', 'ac-options'),
|
|
40059
|
+
ac_wave=('incoming_wave', 'ac-wave'),
|
|
40060
|
+
axis_direction_component=('axis_direction', 'axis-direction-component'),
|
|
40061
|
+
axis_origin_component=('axis_origin', 'axis-origin-component'),
|
|
40062
|
+
flow_direction_component=('flow_direction', 'flow-direction-component'),
|
|
40063
|
+
frame_of_reference=('reference_frame', 'frame-of-reference'),
|
|
40064
|
+
impedance_0=('impedance_zero_order_term', 'impedance-0'),
|
|
40065
|
+
impedance_1=('real_pole_series', 'impedance-1'),
|
|
40066
|
+
impedance_2=('complex_pole_series', 'impedance-2'),
|
|
40067
|
+
omega_swirl=('swirl_angular_velocity', 'omega-swirl'),
|
|
40068
|
+
p=('gauge_pressure', 'p'),
|
|
40069
|
+
p_sup=('initial_gauge_pressure', 'p_sup'),
|
|
40070
|
+
velocity_component=('velocity_components', 'velocity-component'),
|
|
40071
|
+
velocity_spec=('velocity_specification_method', 'velocity-spec'),
|
|
40072
|
+
vmag=('velocity', 'vmag'),
|
|
40073
40073
|
)
|
|
40074
40074
|
|
|
40075
40075
|
class turbulence_5(Group):
|
|
@@ -40119,40 +40119,40 @@ class turbulence_5(Group):
|
|
|
40119
40119
|
subgrid_turbulent_intensity=subgrid_turbulent_intensity,
|
|
40120
40120
|
)
|
|
40121
40121
|
_child_aliases = dict(
|
|
40122
|
-
e='turbulent_dissipation_rate',
|
|
40123
|
-
intermit='intermittency',
|
|
40124
|
-
k='turbulent_kinetic_energy',
|
|
40125
|
-
kl='laminar_kinetic_energy',
|
|
40126
|
-
ksgs='subgrid_kinetic_energy',
|
|
40127
|
-
ksgs_spec='subgrid_kinetic_energy_specification',
|
|
40128
|
-
nut='modified_turbulent_viscosity',
|
|
40129
|
-
o='specific_dissipation_rate',
|
|
40130
|
-
rfg_number_of_modes='number_of_fourier_modes',
|
|
40131
|
-
rst_spec='reynolds_stress_specification',
|
|
40132
|
-
sgs_turb_intensity='subgrid_turbulent_intensity',
|
|
40133
|
-
stg_dw_limiter='wall_distance',
|
|
40134
|
-
stg_scale_limiter_type='scale_search_limiter',
|
|
40135
|
-
stg_ti_limiter='stg_turbulent_intensity',
|
|
40136
|
-
stg_tvr_limiter='stg_turbulent_viscosity_ratio',
|
|
40137
|
-
turb_hydraulic_diam='hydraulic_diameter',
|
|
40138
|
-
turb_intensity='turbulent_intensity',
|
|
40139
|
-
turb_length_scale='turbulent_length_scale',
|
|
40140
|
-
turb_viscosity_ratio='turbulent_viscosity_ratio',
|
|
40141
|
-
turb_viscosity_ratio_profile='turbulent_viscosity_ratio_profile',
|
|
40142
|
-
turbulent_specification='turbulence_specification',
|
|
40143
|
-
uu='uu_reynolds_stresses',
|
|
40144
|
-
uv='uv_reynolds_stresses',
|
|
40145
|
-
uw='uw_reynolds_stresses',
|
|
40146
|
-
v2='velocity_variance_scale',
|
|
40147
|
-
vm_mass_conservation='satisfy_mass_conservation',
|
|
40148
|
-
vm_number_of_vortices='number_of_vortices',
|
|
40149
|
-
vm_streamwise_fluct='streamwise_fluctuations',
|
|
40150
|
-
volumetric_synthetic_turbulence_generator_option='forcing_zone_thickness',
|
|
40151
|
-
volumetric_synthetic_turbulence_generator_option_thickness='volumetric_thickness',
|
|
40152
|
-
volumetric_synthetic_turbulence_generator='volumetric_forcing',
|
|
40153
|
-
vv='vv_reynolds_stresses',
|
|
40154
|
-
vw='vw_reynolds_stresses',
|
|
40155
|
-
ww='ww_reynolds_stresses',
|
|
40122
|
+
e=('turbulent_dissipation_rate', 'e'),
|
|
40123
|
+
intermit=('intermittency', 'intermit'),
|
|
40124
|
+
k=('turbulent_kinetic_energy', 'k'),
|
|
40125
|
+
kl=('laminar_kinetic_energy', 'kl'),
|
|
40126
|
+
ksgs=('subgrid_kinetic_energy', 'ksgs'),
|
|
40127
|
+
ksgs_spec=('subgrid_kinetic_energy_specification', 'ksgs-spec'),
|
|
40128
|
+
nut=('modified_turbulent_viscosity', 'nut'),
|
|
40129
|
+
o=('specific_dissipation_rate', 'o'),
|
|
40130
|
+
rfg_number_of_modes=('number_of_fourier_modes', 'rfg-number-of-modes'),
|
|
40131
|
+
rst_spec=('reynolds_stress_specification', 'rst-spec'),
|
|
40132
|
+
sgs_turb_intensity=('subgrid_turbulent_intensity', 'sgs-turb-intensity'),
|
|
40133
|
+
stg_dw_limiter=('wall_distance', 'stg-dw-limiter'),
|
|
40134
|
+
stg_scale_limiter_type=('scale_search_limiter', 'stg-scale-limiter-type'),
|
|
40135
|
+
stg_ti_limiter=('stg_turbulent_intensity', 'stg-ti-limiter'),
|
|
40136
|
+
stg_tvr_limiter=('stg_turbulent_viscosity_ratio', 'stg-tvr-limiter'),
|
|
40137
|
+
turb_hydraulic_diam=('hydraulic_diameter', 'turb-hydraulic-diam'),
|
|
40138
|
+
turb_intensity=('turbulent_intensity', 'turb-intensity'),
|
|
40139
|
+
turb_length_scale=('turbulent_length_scale', 'turb-length-scale'),
|
|
40140
|
+
turb_viscosity_ratio=('turbulent_viscosity_ratio', 'turb-viscosity-ratio'),
|
|
40141
|
+
turb_viscosity_ratio_profile=('turbulent_viscosity_ratio_profile', 'turb-viscosity-ratio-profile'),
|
|
40142
|
+
turbulent_specification=('turbulence_specification', 'turbulent-specification'),
|
|
40143
|
+
uu=('uu_reynolds_stresses', 'uu'),
|
|
40144
|
+
uv=('uv_reynolds_stresses', 'uv'),
|
|
40145
|
+
uw=('uw_reynolds_stresses', 'uw'),
|
|
40146
|
+
v2=('velocity_variance_scale', 'v2'),
|
|
40147
|
+
vm_mass_conservation=('satisfy_mass_conservation', 'vm-mass-conservation?'),
|
|
40148
|
+
vm_number_of_vortices=('number_of_vortices', 'vm-number-of-vortices'),
|
|
40149
|
+
vm_streamwise_fluct=('streamwise_fluctuations', 'vm-streamwise-fluct?'),
|
|
40150
|
+
volumetric_synthetic_turbulence_generator_option=('forcing_zone_thickness', 'volumetric-synthetic-turbulence-generator-option'),
|
|
40151
|
+
volumetric_synthetic_turbulence_generator_option_thickness=('volumetric_thickness', 'volumetric-synthetic-turbulence-generator-option-thickness'),
|
|
40152
|
+
volumetric_synthetic_turbulence_generator=('volumetric_forcing', 'volumetric-synthetic-turbulence-generator?'),
|
|
40153
|
+
vv=('vv_reynolds_stresses', 'vv'),
|
|
40154
|
+
vw=('vw_reynolds_stresses', 'vw'),
|
|
40155
|
+
ww=('ww_reynolds_stresses', 'ww'),
|
|
40156
40156
|
)
|
|
40157
40157
|
|
|
40158
40158
|
class thermodynamic_non_equilibrium_boundary(Boolean):
|
|
@@ -40179,7 +40179,7 @@ class vibrational_electronic_temperature_1(Group):
|
|
|
40179
40179
|
udf=udf,
|
|
40180
40180
|
)
|
|
40181
40181
|
_child_aliases = dict(
|
|
40182
|
-
constant='value',
|
|
40182
|
+
constant=('value', 'constant'),
|
|
40183
40183
|
)
|
|
40184
40184
|
|
|
40185
40185
|
class thermal_5(Group):
|
|
@@ -40196,9 +40196,9 @@ class thermal_5(Group):
|
|
|
40196
40196
|
vibrational_electronic_temperature=vibrational_electronic_temperature_1,
|
|
40197
40197
|
)
|
|
40198
40198
|
_child_aliases = dict(
|
|
40199
|
-
non_equil_boundary='thermodynamic_non_equilibrium_boundary',
|
|
40200
|
-
t='temperature',
|
|
40201
|
-
tve='vibrational_electronic_temperature',
|
|
40199
|
+
non_equil_boundary=('thermodynamic_non_equilibrium_boundary', 'non-equil-boundary?'),
|
|
40200
|
+
t=('temperature', 't'),
|
|
40201
|
+
tve=('vibrational_electronic_temperature', 'tve'),
|
|
40202
40202
|
)
|
|
40203
40203
|
|
|
40204
40204
|
class participates_in_view_factor_calculation_1(Boolean):
|
|
@@ -40235,19 +40235,19 @@ class radiation_5(Group):
|
|
|
40235
40235
|
participates_in_view_factor_calculation=participates_in_view_factor_calculation_1,
|
|
40236
40236
|
)
|
|
40237
40237
|
_child_aliases = dict(
|
|
40238
|
-
band_q_irrad='direct_irradiation',
|
|
40239
|
-
band_q_irrad_diffuse='diffuse_irradiation',
|
|
40240
|
-
coll_dphi='phi_width_of_beam',
|
|
40241
|
-
coll_dtheta='theta_width_of_beam',
|
|
40242
|
-
in_emiss='internal_emissivity',
|
|
40243
|
-
radial_direction_component='radial_direction',
|
|
40244
|
-
radiating_s2s_surface='participates_in_view_factor_calculation',
|
|
40245
|
-
solar_direction='use_beeam_direction_from_solar_load_model_settings',
|
|
40246
|
-
solar_fluxes='participates_in_solar_ray_tracing',
|
|
40247
|
-
solar_irradiation='use_irradiation_from_solar_soad_model_settings',
|
|
40248
|
-
solar_shining_factor='solar_transmissivity_factor',
|
|
40249
|
-
t_b_b='black_body_temperature',
|
|
40250
|
-
t_b_b_spec='external_black_body_temperature_method',
|
|
40238
|
+
band_q_irrad=('direct_irradiation', 'band-q-irrad'),
|
|
40239
|
+
band_q_irrad_diffuse=('diffuse_irradiation', 'band-q-irrad-diffuse'),
|
|
40240
|
+
coll_dphi=('phi_width_of_beam', 'coll-dphi'),
|
|
40241
|
+
coll_dtheta=('theta_width_of_beam', 'coll-dtheta'),
|
|
40242
|
+
in_emiss=('internal_emissivity', 'in-emiss'),
|
|
40243
|
+
radial_direction_component=('radial_direction', 'radial-direction-component'),
|
|
40244
|
+
radiating_s2s_surface=('participates_in_view_factor_calculation', 'radiating-s2s-surface?'),
|
|
40245
|
+
solar_direction=('use_beeam_direction_from_solar_load_model_settings', 'solar-direction?'),
|
|
40246
|
+
solar_fluxes=('participates_in_solar_ray_tracing', 'solar-fluxes?'),
|
|
40247
|
+
solar_irradiation=('use_irradiation_from_solar_soad_model_settings', 'solar-irradiation?'),
|
|
40248
|
+
solar_shining_factor=('solar_transmissivity_factor', 'solar-shining-factor'),
|
|
40249
|
+
t_b_b=('black_body_temperature', 't-b-b'),
|
|
40250
|
+
t_b_b_spec=('external_black_body_temperature_method', 't-b-b-spec'),
|
|
40251
40251
|
)
|
|
40252
40252
|
|
|
40253
40253
|
class open_channel_wave_bc(Boolean):
|
|
@@ -40290,7 +40290,7 @@ class avg_flow_velocity(Group):
|
|
|
40290
40290
|
udf=udf,
|
|
40291
40291
|
)
|
|
40292
40292
|
_child_aliases = dict(
|
|
40293
|
-
constant='value',
|
|
40293
|
+
constant=('value', 'constant'),
|
|
40294
40294
|
)
|
|
40295
40295
|
|
|
40296
40296
|
class flow_velocity_child(Group):
|
|
@@ -40309,7 +40309,7 @@ class flow_velocity_child(Group):
|
|
|
40309
40309
|
udf=udf,
|
|
40310
40310
|
)
|
|
40311
40311
|
_child_aliases = dict(
|
|
40312
|
-
constant='value',
|
|
40312
|
+
constant=('value', 'constant'),
|
|
40313
40313
|
)
|
|
40314
40314
|
|
|
40315
40315
|
class flow_velocity(ListObject[flow_velocity_child]):
|
|
@@ -40350,7 +40350,7 @@ class moving_object_velocity(Group):
|
|
|
40350
40350
|
udf=udf,
|
|
40351
40351
|
)
|
|
40352
40352
|
_child_aliases = dict(
|
|
40353
|
-
constant='value',
|
|
40353
|
+
constant=('value', 'constant'),
|
|
40354
40354
|
)
|
|
40355
40355
|
|
|
40356
40356
|
class moving_object_direction_child(Group):
|
|
@@ -40369,7 +40369,7 @@ class moving_object_direction_child(Group):
|
|
|
40369
40369
|
udf=udf,
|
|
40370
40370
|
)
|
|
40371
40371
|
_child_aliases = dict(
|
|
40372
|
-
constant='value',
|
|
40372
|
+
constant=('value', 'constant'),
|
|
40373
40373
|
)
|
|
40374
40374
|
|
|
40375
40375
|
class moving_object_direction(ListObject[moving_object_direction_child]):
|
|
@@ -40410,7 +40410,7 @@ class secondary_phase_velocity(Group):
|
|
|
40410
40410
|
udf=udf,
|
|
40411
40411
|
)
|
|
40412
40412
|
_child_aliases = dict(
|
|
40413
|
-
constant='value',
|
|
40413
|
+
constant=('value', 'constant'),
|
|
40414
40414
|
)
|
|
40415
40415
|
|
|
40416
40416
|
class secondary_phase_direction_child(Group):
|
|
@@ -40429,7 +40429,7 @@ class secondary_phase_direction_child(Group):
|
|
|
40429
40429
|
udf=udf,
|
|
40430
40430
|
)
|
|
40431
40431
|
_child_aliases = dict(
|
|
40432
|
-
constant='value',
|
|
40432
|
+
constant=('value', 'constant'),
|
|
40433
40433
|
)
|
|
40434
40434
|
|
|
40435
40435
|
class secondary_phase_direction(ListObject[secondary_phase_direction_child]):
|
|
@@ -40486,7 +40486,7 @@ class primary_phase_velocity(Group):
|
|
|
40486
40486
|
udf=udf,
|
|
40487
40487
|
)
|
|
40488
40488
|
_child_aliases = dict(
|
|
40489
|
-
constant='value',
|
|
40489
|
+
constant=('value', 'constant'),
|
|
40490
40490
|
)
|
|
40491
40491
|
|
|
40492
40492
|
class primary_phase_reference_velocity(Group):
|
|
@@ -40505,7 +40505,7 @@ class primary_phase_reference_velocity(Group):
|
|
|
40505
40505
|
udf=udf,
|
|
40506
40506
|
)
|
|
40507
40507
|
_child_aliases = dict(
|
|
40508
|
-
constant='value',
|
|
40508
|
+
constant=('value', 'constant'),
|
|
40509
40509
|
)
|
|
40510
40510
|
|
|
40511
40511
|
class primary_phase_direction_child(Group):
|
|
@@ -40524,7 +40524,7 @@ class primary_phase_direction_child(Group):
|
|
|
40524
40524
|
udf=udf,
|
|
40525
40525
|
)
|
|
40526
40526
|
_child_aliases = dict(
|
|
40527
|
-
constant='value',
|
|
40527
|
+
constant=('value', 'constant'),
|
|
40528
40528
|
)
|
|
40529
40529
|
|
|
40530
40530
|
class primary_phase_direction(ListObject[primary_phase_direction_child]):
|
|
@@ -40573,7 +40573,7 @@ class reference_direction_child(Group):
|
|
|
40573
40573
|
udf=udf,
|
|
40574
40574
|
)
|
|
40575
40575
|
_child_aliases = dict(
|
|
40576
|
-
constant='value',
|
|
40576
|
+
constant=('value', 'constant'),
|
|
40577
40577
|
)
|
|
40578
40578
|
|
|
40579
40579
|
class reference_direction(ListObject[reference_direction_child]):
|
|
@@ -40622,7 +40622,7 @@ class wave_ht(Group):
|
|
|
40622
40622
|
udf=udf,
|
|
40623
40623
|
)
|
|
40624
40624
|
_child_aliases = dict(
|
|
40625
|
-
constant='value',
|
|
40625
|
+
constant=('value', 'constant'),
|
|
40626
40626
|
)
|
|
40627
40627
|
|
|
40628
40628
|
class wave_len(Group):
|
|
@@ -40641,7 +40641,7 @@ class wave_len(Group):
|
|
|
40641
40641
|
udf=udf,
|
|
40642
40642
|
)
|
|
40643
40643
|
_child_aliases = dict(
|
|
40644
|
-
constant='value',
|
|
40644
|
+
constant=('value', 'constant'),
|
|
40645
40645
|
)
|
|
40646
40646
|
|
|
40647
40647
|
class phase_diff(Group):
|
|
@@ -40660,7 +40660,7 @@ class phase_diff(Group):
|
|
|
40660
40660
|
udf=udf,
|
|
40661
40661
|
)
|
|
40662
40662
|
_child_aliases = dict(
|
|
40663
|
-
constant='value',
|
|
40663
|
+
constant=('value', 'constant'),
|
|
40664
40664
|
)
|
|
40665
40665
|
|
|
40666
40666
|
class heading_angle(Group):
|
|
@@ -40679,7 +40679,7 @@ class heading_angle(Group):
|
|
|
40679
40679
|
udf=udf,
|
|
40680
40680
|
)
|
|
40681
40681
|
_child_aliases = dict(
|
|
40682
|
-
constant='value',
|
|
40682
|
+
constant=('value', 'constant'),
|
|
40683
40683
|
)
|
|
40684
40684
|
|
|
40685
40685
|
class wave_group_inputs_child(Group):
|
|
@@ -40728,7 +40728,7 @@ class offset_2(Group):
|
|
|
40728
40728
|
udf=udf,
|
|
40729
40729
|
)
|
|
40730
40730
|
_child_aliases = dict(
|
|
40731
|
-
constant='value',
|
|
40731
|
+
constant=('value', 'constant'),
|
|
40732
40732
|
)
|
|
40733
40733
|
|
|
40734
40734
|
class shallow_wave_inputs_child(Group):
|
|
@@ -40793,7 +40793,7 @@ class significant_wave_height(Group):
|
|
|
40793
40793
|
udf=udf,
|
|
40794
40794
|
)
|
|
40795
40795
|
_child_aliases = dict(
|
|
40796
|
-
constant='value',
|
|
40796
|
+
constant=('value', 'constant'),
|
|
40797
40797
|
)
|
|
40798
40798
|
|
|
40799
40799
|
class peak_frequency(Group):
|
|
@@ -40812,7 +40812,7 @@ class peak_frequency(Group):
|
|
|
40812
40812
|
udf=udf,
|
|
40813
40813
|
)
|
|
40814
40814
|
_child_aliases = dict(
|
|
40815
|
-
constant='value',
|
|
40815
|
+
constant=('value', 'constant'),
|
|
40816
40816
|
)
|
|
40817
40817
|
|
|
40818
40818
|
class minimum_frequency(Group):
|
|
@@ -40831,7 +40831,7 @@ class minimum_frequency(Group):
|
|
|
40831
40831
|
udf=udf,
|
|
40832
40832
|
)
|
|
40833
40833
|
_child_aliases = dict(
|
|
40834
|
-
constant='value',
|
|
40834
|
+
constant=('value', 'constant'),
|
|
40835
40835
|
)
|
|
40836
40836
|
|
|
40837
40837
|
class maximum_frequency(Group):
|
|
@@ -40850,7 +40850,7 @@ class maximum_frequency(Group):
|
|
|
40850
40850
|
udf=udf,
|
|
40851
40851
|
)
|
|
40852
40852
|
_child_aliases = dict(
|
|
40853
|
-
constant='value',
|
|
40853
|
+
constant=('value', 'constant'),
|
|
40854
40854
|
)
|
|
40855
40855
|
|
|
40856
40856
|
class number_of_frequency_components(Integer):
|
|
@@ -40893,7 +40893,7 @@ class mean_wave_heading_angle(Group):
|
|
|
40893
40893
|
udf=udf,
|
|
40894
40894
|
)
|
|
40895
40895
|
_child_aliases = dict(
|
|
40896
|
-
constant='value',
|
|
40896
|
+
constant=('value', 'constant'),
|
|
40897
40897
|
)
|
|
40898
40898
|
|
|
40899
40899
|
class angular_deviation(Group):
|
|
@@ -40912,7 +40912,7 @@ class angular_deviation(Group):
|
|
|
40912
40912
|
udf=udf,
|
|
40913
40913
|
)
|
|
40914
40914
|
_child_aliases = dict(
|
|
40915
|
-
constant='value',
|
|
40915
|
+
constant=('value', 'constant'),
|
|
40916
40916
|
)
|
|
40917
40917
|
|
|
40918
40918
|
class angular_components_count(Integer):
|
|
@@ -40947,7 +40947,7 @@ class pb_disc_components_child(Group):
|
|
|
40947
40947
|
udf=udf,
|
|
40948
40948
|
)
|
|
40949
40949
|
_child_aliases = dict(
|
|
40950
|
-
constant='value',
|
|
40950
|
+
constant=('value', 'constant'),
|
|
40951
40951
|
)
|
|
40952
40952
|
|
|
40953
40953
|
class pb_disc_components(ListObject[pb_disc_components_child]):
|
|
@@ -41040,54 +41040,54 @@ class multiphase_6(Group):
|
|
|
41040
41040
|
dqmom_boundary_value=dqmom_boundary_value,
|
|
41041
41041
|
)
|
|
41042
41042
|
_child_aliases = dict(
|
|
41043
|
-
ht_bottom='bottom_level',
|
|
41044
|
-
ht_local='free_surface_level',
|
|
41045
|
-
iac='interfacial_area_concentration',
|
|
41046
|
-
lsfun='level_set_function_flux',
|
|
41047
|
-
moving_object_direction_components='moving_object_direction',
|
|
41048
|
-
ocw_pp_power_coeff='primary_phase_power_law_coefficient',
|
|
41049
|
-
ocw_pp_ref_ht='primary_phase_reference_height_above_free_surface',
|
|
41050
|
-
ocw_pp_vel_spec='primary_phase_velocity_specification_method',
|
|
41051
|
-
ocw_pp_vmag='primary_phase_velocity',
|
|
41052
|
-
ocw_pp_vmag_ref='primary_phase_reference_velocity',
|
|
41053
|
-
ocw_ship_vel_spec='moving_object_velocity_specification_method',
|
|
41054
|
-
ocw_ship_vmag='moving_object_velocity',
|
|
41055
|
-
ocw_sp_vel_spec='secondary_phase_velocity_specification_method',
|
|
41056
|
-
ocw_sp_vmag='secondary_phase_velocity',
|
|
41057
|
-
ocw_vel_segregated='segregated_velocity_inputs',
|
|
41058
|
-
open_channel_wave_bc='open_channel_wave_bc',
|
|
41059
|
-
pb_disc_bc='discrete_boundary_condition',
|
|
41060
|
-
pb_dqmom='dqmom_boundary_value',
|
|
41061
|
-
pb_dqmom_bc='dqmom_boundary_condition',
|
|
41062
|
-
pb_qbmm='qbmm_boundary_value',
|
|
41063
|
-
pb_qbmm_bc='qbmm_boundary_condition',
|
|
41064
|
-
pb_qmom='quadrature_moment_boundary_value',
|
|
41065
|
-
pb_qmom_bc='quadrature_moment_boundary_condition',
|
|
41066
|
-
pb_smm='std_moment_boundary_value',
|
|
41067
|
-
pb_smm_bc='std_moment_boundary_condition',
|
|
41068
|
-
phase_spec='secondary_phase_for_inlet',
|
|
41069
|
-
primary_phase_direction_components='primary_phase_direction',
|
|
41070
|
-
secondary_phase_direction_components='secondary_phase_direction',
|
|
41071
|
-
wave_bc_type='wave_option',
|
|
41072
|
-
wave_components='flow_velocity',
|
|
41073
|
-
wave_dir_spec='reference_wave_direction',
|
|
41074
|
-
wave_list='wave_group_inputs',
|
|
41075
|
-
wave_list_shallow='shallow_wave_inputs',
|
|
41076
|
-
wave_modeling_type='wave_modeling_option',
|
|
41077
|
-
wave_spect_deviation='angular_deviation',
|
|
41078
|
-
wave_spect_dir_components='angular_components_count',
|
|
41079
|
-
wave_spect_factor='peak_shape_parameter',
|
|
41080
|
-
wave_spect_freq_components='number_of_frequency_components',
|
|
41081
|
-
wave_spect_max_freq='maximum_frequency',
|
|
41082
|
-
wave_spect_mean_angle='mean_wave_heading_angle',
|
|
41083
|
-
wave_spect_method_dir='directional_spreading_method',
|
|
41084
|
-
wave_spect_method_freq='frequency_spectrum_method',
|
|
41085
|
-
wave_spect_min_freq='minimum_frequency',
|
|
41086
|
-
wave_spect_peak_freq='peak_frequency',
|
|
41087
|
-
wave_spect_s='frequency_independent_cosine_exponent',
|
|
41088
|
-
wave_spect_sig_wave_ht='significant_wave_height',
|
|
41089
|
-
wave_velocity_spec='averaged_flow_specification_method',
|
|
41090
|
-
wave_vmag='avg_flow_velocity',
|
|
41043
|
+
ht_bottom=('bottom_level', 'ht-bottom'),
|
|
41044
|
+
ht_local=('free_surface_level', 'ht-local'),
|
|
41045
|
+
iac=('interfacial_area_concentration', 'iac'),
|
|
41046
|
+
lsfun=('level_set_function_flux', 'lsfun'),
|
|
41047
|
+
moving_object_direction_components=('moving_object_direction', 'moving-object-direction-components'),
|
|
41048
|
+
ocw_pp_power_coeff=('primary_phase_power_law_coefficient', 'ocw-pp-power-coeff'),
|
|
41049
|
+
ocw_pp_ref_ht=('primary_phase_reference_height_above_free_surface', 'ocw-pp-ref-ht'),
|
|
41050
|
+
ocw_pp_vel_spec=('primary_phase_velocity_specification_method', 'ocw-pp-vel-spec'),
|
|
41051
|
+
ocw_pp_vmag=('primary_phase_velocity', 'ocw-pp-vmag'),
|
|
41052
|
+
ocw_pp_vmag_ref=('primary_phase_reference_velocity', 'ocw-pp-vmag-ref'),
|
|
41053
|
+
ocw_ship_vel_spec=('moving_object_velocity_specification_method', 'ocw-ship-vel-spec'),
|
|
41054
|
+
ocw_ship_vmag=('moving_object_velocity', 'ocw-ship-vmag'),
|
|
41055
|
+
ocw_sp_vel_spec=('secondary_phase_velocity_specification_method', 'ocw-sp-vel-spec'),
|
|
41056
|
+
ocw_sp_vmag=('secondary_phase_velocity', 'ocw-sp-vmag'),
|
|
41057
|
+
ocw_vel_segregated=('segregated_velocity_inputs', 'ocw-vel-segregated?'),
|
|
41058
|
+
open_channel_wave_bc=('open_channel_wave_bc', 'open-channel-wave-bc?'),
|
|
41059
|
+
pb_disc_bc=('discrete_boundary_condition', 'pb-disc-bc'),
|
|
41060
|
+
pb_dqmom=('dqmom_boundary_value', 'pb-dqmom'),
|
|
41061
|
+
pb_dqmom_bc=('dqmom_boundary_condition', 'pb-dqmom-bc'),
|
|
41062
|
+
pb_qbmm=('qbmm_boundary_value', 'pb-qbmm'),
|
|
41063
|
+
pb_qbmm_bc=('qbmm_boundary_condition', 'pb-qbmm-bc'),
|
|
41064
|
+
pb_qmom=('quadrature_moment_boundary_value', 'pb-qmom'),
|
|
41065
|
+
pb_qmom_bc=('quadrature_moment_boundary_condition', 'pb-qmom-bc'),
|
|
41066
|
+
pb_smm=('std_moment_boundary_value', 'pb-smm'),
|
|
41067
|
+
pb_smm_bc=('std_moment_boundary_condition', 'pb-smm-bc'),
|
|
41068
|
+
phase_spec=('secondary_phase_for_inlet', 'phase-spec'),
|
|
41069
|
+
primary_phase_direction_components=('primary_phase_direction', 'primary-phase-direction-components'),
|
|
41070
|
+
secondary_phase_direction_components=('secondary_phase_direction', 'secondary-phase-direction-components'),
|
|
41071
|
+
wave_bc_type=('wave_option', 'wave-bc-type'),
|
|
41072
|
+
wave_components=('flow_velocity', 'wave-components'),
|
|
41073
|
+
wave_dir_spec=('reference_wave_direction', 'wave-dir-spec'),
|
|
41074
|
+
wave_list=('wave_group_inputs', 'wave-list'),
|
|
41075
|
+
wave_list_shallow=('shallow_wave_inputs', 'wave-list-shallow'),
|
|
41076
|
+
wave_modeling_type=('wave_modeling_option', 'wave-modeling-type'),
|
|
41077
|
+
wave_spect_deviation=('angular_deviation', 'wave-spect-deviation'),
|
|
41078
|
+
wave_spect_dir_components=('angular_components_count', 'wave-spect-dir-components'),
|
|
41079
|
+
wave_spect_factor=('peak_shape_parameter', 'wave-spect-factor'),
|
|
41080
|
+
wave_spect_freq_components=('number_of_frequency_components', 'wave-spect-freq-components'),
|
|
41081
|
+
wave_spect_max_freq=('maximum_frequency', 'wave-spect-max-freq'),
|
|
41082
|
+
wave_spect_mean_angle=('mean_wave_heading_angle', 'wave-spect-mean-angle'),
|
|
41083
|
+
wave_spect_method_dir=('directional_spreading_method', 'wave-spect-method-dir'),
|
|
41084
|
+
wave_spect_method_freq=('frequency_spectrum_method', 'wave-spect-method-freq'),
|
|
41085
|
+
wave_spect_min_freq=('minimum_frequency', 'wave-spect-min-freq'),
|
|
41086
|
+
wave_spect_peak_freq=('peak_frequency', 'wave-spect-peak-freq'),
|
|
41087
|
+
wave_spect_s=('frequency_independent_cosine_exponent', 'wave-spect-s'),
|
|
41088
|
+
wave_spect_sig_wave_ht=('significant_wave_height', 'wave-spect-sig-wave-ht'),
|
|
41089
|
+
wave_velocity_spec=('averaged_flow_specification_method', 'wave-velocity-spec'),
|
|
41090
|
+
wave_vmag=('avg_flow_velocity', 'wave-vmag'),
|
|
41091
41091
|
)
|
|
41092
41092
|
|
|
41093
41093
|
class phase_24_child(Group):
|
|
@@ -41234,7 +41234,7 @@ class speed(Group):
|
|
|
41234
41234
|
udf=udf,
|
|
41235
41235
|
)
|
|
41236
41236
|
_child_aliases = dict(
|
|
41237
|
-
constant='value',
|
|
41237
|
+
constant=('value', 'constant'),
|
|
41238
41238
|
)
|
|
41239
41239
|
|
|
41240
41240
|
class rotation_speed(Group):
|
|
@@ -41253,7 +41253,7 @@ class rotation_speed(Group):
|
|
|
41253
41253
|
udf=udf,
|
|
41254
41254
|
)
|
|
41255
41255
|
_child_aliases = dict(
|
|
41256
|
-
constant='value',
|
|
41256
|
+
constant=('value', 'constant'),
|
|
41257
41257
|
)
|
|
41258
41258
|
|
|
41259
41259
|
class rotation_axis_origin_child(Real):
|
|
@@ -41354,7 +41354,7 @@ class periodic_displacement_child(Group):
|
|
|
41354
41354
|
udf=udf,
|
|
41355
41355
|
)
|
|
41356
41356
|
_child_aliases = dict(
|
|
41357
|
-
constant='value',
|
|
41357
|
+
constant=('value', 'constant'),
|
|
41358
41358
|
)
|
|
41359
41359
|
|
|
41360
41360
|
class periodic_displacement(ListObject[periodic_displacement_child]):
|
|
@@ -41387,7 +41387,7 @@ class periodic_imaginary_displacement_child(Group):
|
|
|
41387
41387
|
udf=udf,
|
|
41388
41388
|
)
|
|
41389
41389
|
_child_aliases = dict(
|
|
41390
|
-
constant='value',
|
|
41390
|
+
constant=('value', 'constant'),
|
|
41391
41391
|
)
|
|
41392
41392
|
|
|
41393
41393
|
class periodic_imaginary_displacement(ListObject[periodic_imaginary_displacement_child]):
|
|
@@ -41420,7 +41420,7 @@ class frequency(Group):
|
|
|
41420
41420
|
udf=udf,
|
|
41421
41421
|
)
|
|
41422
41422
|
_child_aliases = dict(
|
|
41423
|
-
constant='value',
|
|
41423
|
+
constant=('value', 'constant'),
|
|
41424
41424
|
)
|
|
41425
41425
|
|
|
41426
41426
|
class amplitude_1(Group):
|
|
@@ -41439,7 +41439,7 @@ class amplitude_1(Group):
|
|
|
41439
41439
|
udf=udf,
|
|
41440
41440
|
)
|
|
41441
41441
|
_child_aliases = dict(
|
|
41442
|
-
constant='value',
|
|
41442
|
+
constant=('value', 'constant'),
|
|
41443
41443
|
)
|
|
41444
41444
|
|
|
41445
41445
|
class nodal_diam(Integer):
|
|
@@ -41466,7 +41466,7 @@ class passage_number(Group):
|
|
|
41466
41466
|
udf=udf,
|
|
41467
41467
|
)
|
|
41468
41468
|
_child_aliases = dict(
|
|
41469
|
-
constant='value',
|
|
41469
|
+
constant=('value', 'constant'),
|
|
41470
41470
|
)
|
|
41471
41471
|
|
|
41472
41472
|
class fwd(Boolean):
|
|
@@ -41525,7 +41525,7 @@ class shear_stress_child(Group):
|
|
|
41525
41525
|
udf=udf,
|
|
41526
41526
|
)
|
|
41527
41527
|
_child_aliases = dict(
|
|
41528
|
-
constant='value',
|
|
41528
|
+
constant=('value', 'constant'),
|
|
41529
41529
|
)
|
|
41530
41530
|
|
|
41531
41531
|
class shear_stress(ListObject[shear_stress_child]):
|
|
@@ -41632,22 +41632,22 @@ class momentum_11(Group):
|
|
|
41632
41632
|
mom_accommodation_coeff=mom_accommodation_coeff,
|
|
41633
41633
|
)
|
|
41634
41634
|
_child_aliases = dict(
|
|
41635
|
-
amp='amplitude',
|
|
41636
|
-
direction_component_of_rotation_axis='rotation_axis_direction',
|
|
41637
|
-
freq='frequency',
|
|
41638
|
-
mom_accom_coef='mom_accommodation_coeff',
|
|
41639
|
-
motion_bc='wall_motion',
|
|
41640
|
-
omega='rotation_speed',
|
|
41641
|
-
pass_number='passage_number',
|
|
41642
|
-
periodic_displacement_components='periodic_displacement',
|
|
41643
|
-
periodic_imaginary_displacement_components='periodic_imaginary_displacement',
|
|
41644
|
-
position_of_rotation_axis='rotation_axis_origin',
|
|
41645
|
-
shear_bc='shear_condition',
|
|
41646
|
-
shear_stress_components='shear_stress',
|
|
41647
|
-
specular_coeff='specularity_coeff',
|
|
41648
|
-
surf_tens_grad='surface_tension_gradient',
|
|
41649
|
-
vmag='speed',
|
|
41650
|
-
wall_translation_vector='direction',
|
|
41635
|
+
amp=('amplitude', 'amp'),
|
|
41636
|
+
direction_component_of_rotation_axis=('rotation_axis_direction', 'direction-component-of-rotation-axis'),
|
|
41637
|
+
freq=('frequency', 'freq'),
|
|
41638
|
+
mom_accom_coef=('mom_accommodation_coeff', 'mom-accom-coef'),
|
|
41639
|
+
motion_bc=('wall_motion', 'motion-bc'),
|
|
41640
|
+
omega=('rotation_speed', 'omega'),
|
|
41641
|
+
pass_number=('passage_number', 'pass-number'),
|
|
41642
|
+
periodic_displacement_components=('periodic_displacement', 'periodic-displacement-components'),
|
|
41643
|
+
periodic_imaginary_displacement_components=('periodic_imaginary_displacement', 'periodic-imaginary-displacement-components'),
|
|
41644
|
+
position_of_rotation_axis=('rotation_axis_origin', 'position-of-rotation-axis'),
|
|
41645
|
+
shear_bc=('shear_condition', 'shear-bc'),
|
|
41646
|
+
shear_stress_components=('shear_stress', 'shear-stress-components'),
|
|
41647
|
+
specular_coeff=('specularity_coeff', 'specular-coeff'),
|
|
41648
|
+
surf_tens_grad=('surface_tension_gradient', 'surf-tens-grad'),
|
|
41649
|
+
vmag=('speed', 'vmag'),
|
|
41650
|
+
wall_translation_vector=('direction', 'wall-translation-vector'),
|
|
41651
41651
|
)
|
|
41652
41652
|
|
|
41653
41653
|
class roughness_model(String, AllowedValuesMixin):
|
|
@@ -41706,7 +41706,7 @@ class roughness_height(Group):
|
|
|
41706
41706
|
udf=udf,
|
|
41707
41707
|
)
|
|
41708
41708
|
_child_aliases = dict(
|
|
41709
|
-
constant='value',
|
|
41709
|
+
constant=('value', 'constant'),
|
|
41710
41710
|
)
|
|
41711
41711
|
|
|
41712
41712
|
class roughness_const(Group):
|
|
@@ -41725,7 +41725,7 @@ class roughness_const(Group):
|
|
|
41725
41725
|
udf=udf,
|
|
41726
41726
|
)
|
|
41727
41727
|
_child_aliases = dict(
|
|
41728
|
-
constant='value',
|
|
41728
|
+
constant=('value', 'constant'),
|
|
41729
41729
|
)
|
|
41730
41730
|
|
|
41731
41731
|
class roughness_height_cp(Group):
|
|
@@ -41744,7 +41744,7 @@ class roughness_height_cp(Group):
|
|
|
41744
41744
|
udf=udf,
|
|
41745
41745
|
)
|
|
41746
41746
|
_child_aliases = dict(
|
|
41747
|
-
constant='value',
|
|
41747
|
+
constant=('value', 'constant'),
|
|
41748
41748
|
)
|
|
41749
41749
|
|
|
41750
41750
|
class roughness_const_cp(Group):
|
|
@@ -41763,7 +41763,7 @@ class roughness_const_cp(Group):
|
|
|
41763
41763
|
udf=udf,
|
|
41764
41764
|
)
|
|
41765
41765
|
_child_aliases = dict(
|
|
41766
|
-
constant='value',
|
|
41766
|
+
constant=('value', 'constant'),
|
|
41767
41767
|
)
|
|
41768
41768
|
|
|
41769
41769
|
class roughness_const_nasa(Group):
|
|
@@ -41782,7 +41782,7 @@ class roughness_const_nasa(Group):
|
|
|
41782
41782
|
udf=udf,
|
|
41783
41783
|
)
|
|
41784
41784
|
_child_aliases = dict(
|
|
41785
|
-
constant='value',
|
|
41785
|
+
constant=('value', 'constant'),
|
|
41786
41786
|
)
|
|
41787
41787
|
|
|
41788
41788
|
class roughness_const_shin(Group):
|
|
@@ -41801,7 +41801,7 @@ class roughness_const_shin(Group):
|
|
|
41801
41801
|
udf=udf,
|
|
41802
41802
|
)
|
|
41803
41803
|
_child_aliases = dict(
|
|
41804
|
-
constant='value',
|
|
41804
|
+
constant=('value', 'constant'),
|
|
41805
41805
|
)
|
|
41806
41806
|
|
|
41807
41807
|
class roughness_const_data(Group):
|
|
@@ -41820,7 +41820,7 @@ class roughness_const_data(Group):
|
|
|
41820
41820
|
udf=udf,
|
|
41821
41821
|
)
|
|
41822
41822
|
_child_aliases = dict(
|
|
41823
|
-
constant='value',
|
|
41823
|
+
constant=('value', 'constant'),
|
|
41824
41824
|
)
|
|
41825
41825
|
|
|
41826
41826
|
class variable_roughness(Group):
|
|
@@ -41839,7 +41839,7 @@ class variable_roughness(Group):
|
|
|
41839
41839
|
udf=udf,
|
|
41840
41840
|
)
|
|
41841
41841
|
_child_aliases = dict(
|
|
41842
|
-
constant='value',
|
|
41842
|
+
constant=('value', 'constant'),
|
|
41843
41843
|
)
|
|
41844
41844
|
|
|
41845
41845
|
class free_stream_velocity(Real):
|
|
@@ -41898,7 +41898,7 @@ class liquid_content(Group):
|
|
|
41898
41898
|
udf=udf,
|
|
41899
41899
|
)
|
|
41900
41900
|
_child_aliases = dict(
|
|
41901
|
-
constant='value',
|
|
41901
|
+
constant=('value', 'constant'),
|
|
41902
41902
|
)
|
|
41903
41903
|
|
|
41904
41904
|
class liquid_content_cp(Group):
|
|
@@ -41917,7 +41917,7 @@ class liquid_content_cp(Group):
|
|
|
41917
41917
|
udf=udf,
|
|
41918
41918
|
)
|
|
41919
41919
|
_child_aliases = dict(
|
|
41920
|
-
constant='value',
|
|
41920
|
+
constant=('value', 'constant'),
|
|
41921
41921
|
)
|
|
41922
41922
|
|
|
41923
41923
|
class droplet_diameter(Group):
|
|
@@ -41936,7 +41936,7 @@ class droplet_diameter(Group):
|
|
|
41936
41936
|
udf=udf,
|
|
41937
41937
|
)
|
|
41938
41938
|
_child_aliases = dict(
|
|
41939
|
-
constant='value',
|
|
41939
|
+
constant=('value', 'constant'),
|
|
41940
41940
|
)
|
|
41941
41941
|
|
|
41942
41942
|
class turbulence_6(Group):
|
|
@@ -41971,7 +41971,7 @@ class turbulence_6(Group):
|
|
|
41971
41971
|
droplet_diameter=droplet_diameter,
|
|
41972
41972
|
)
|
|
41973
41973
|
_child_aliases = dict(
|
|
41974
|
-
rough_bc='roughness_model',
|
|
41974
|
+
rough_bc=('roughness_model', 'rough-bc'),
|
|
41975
41975
|
)
|
|
41976
41976
|
|
|
41977
41977
|
class thermal_condition(String, AllowedValuesMixin):
|
|
@@ -41998,7 +41998,7 @@ class heat_flux_1(Group):
|
|
|
41998
41998
|
udf=udf,
|
|
41999
41999
|
)
|
|
42000
42000
|
_child_aliases = dict(
|
|
42001
|
-
constant='value',
|
|
42001
|
+
constant=('value', 'constant'),
|
|
42002
42002
|
)
|
|
42003
42003
|
|
|
42004
42004
|
class heat_transfer_coeff_1(Group):
|
|
@@ -42017,7 +42017,7 @@ class heat_transfer_coeff_1(Group):
|
|
|
42017
42017
|
udf=udf,
|
|
42018
42018
|
)
|
|
42019
42019
|
_child_aliases = dict(
|
|
42020
|
-
constant='value',
|
|
42020
|
+
constant=('value', 'constant'),
|
|
42021
42021
|
)
|
|
42022
42022
|
|
|
42023
42023
|
class free_stream_temp_1(Group):
|
|
@@ -42036,7 +42036,7 @@ class free_stream_temp_1(Group):
|
|
|
42036
42036
|
udf=udf,
|
|
42037
42037
|
)
|
|
42038
42038
|
_child_aliases = dict(
|
|
42039
|
-
constant='value',
|
|
42039
|
+
constant=('value', 'constant'),
|
|
42040
42040
|
)
|
|
42041
42041
|
|
|
42042
42042
|
class external_emissivity(Group):
|
|
@@ -42055,7 +42055,7 @@ class external_emissivity(Group):
|
|
|
42055
42055
|
udf=udf,
|
|
42056
42056
|
)
|
|
42057
42057
|
_child_aliases = dict(
|
|
42058
|
-
constant='value',
|
|
42058
|
+
constant=('value', 'constant'),
|
|
42059
42059
|
)
|
|
42060
42060
|
|
|
42061
42061
|
class ext_rad_temperature(Group):
|
|
@@ -42074,7 +42074,7 @@ class ext_rad_temperature(Group):
|
|
|
42074
42074
|
udf=udf,
|
|
42075
42075
|
)
|
|
42076
42076
|
_child_aliases = dict(
|
|
42077
|
-
constant='value',
|
|
42077
|
+
constant=('value', 'constant'),
|
|
42078
42078
|
)
|
|
42079
42079
|
|
|
42080
42080
|
class wall_thickness_old(Real):
|
|
@@ -42101,7 +42101,7 @@ class wall_thickness(Group):
|
|
|
42101
42101
|
udf=udf,
|
|
42102
42102
|
)
|
|
42103
42103
|
_child_aliases = dict(
|
|
42104
|
-
constant='value',
|
|
42104
|
+
constant=('value', 'constant'),
|
|
42105
42105
|
)
|
|
42106
42106
|
|
|
42107
42107
|
class heat_generation_rate(Group):
|
|
@@ -42120,7 +42120,7 @@ class heat_generation_rate(Group):
|
|
|
42120
42120
|
udf=udf,
|
|
42121
42121
|
)
|
|
42122
42122
|
_child_aliases = dict(
|
|
42123
|
-
constant='value',
|
|
42123
|
+
constant=('value', 'constant'),
|
|
42124
42124
|
)
|
|
42125
42125
|
|
|
42126
42126
|
class enable_shell_conduction(Boolean):
|
|
@@ -42163,7 +42163,7 @@ class qdot(Group):
|
|
|
42163
42163
|
udf=udf,
|
|
42164
42164
|
)
|
|
42165
42165
|
_child_aliases = dict(
|
|
42166
|
-
constant='value',
|
|
42166
|
+
constant=('value', 'constant'),
|
|
42167
42167
|
)
|
|
42168
42168
|
|
|
42169
42169
|
class conduction_layers_child(Group):
|
|
@@ -42210,7 +42210,7 @@ class thickness_1(Group):
|
|
|
42210
42210
|
udf=udf,
|
|
42211
42211
|
)
|
|
42212
42212
|
_child_aliases = dict(
|
|
42213
|
-
constant='value',
|
|
42213
|
+
constant=('value', 'constant'),
|
|
42214
42214
|
)
|
|
42215
42215
|
|
|
42216
42216
|
class thin_wall_child(Group):
|
|
@@ -42273,7 +42273,7 @@ class area_enhancement_factor(Group):
|
|
|
42273
42273
|
udf=udf,
|
|
42274
42274
|
)
|
|
42275
42275
|
_child_aliases = dict(
|
|
42276
|
-
constant='value',
|
|
42276
|
+
constant=('value', 'constant'),
|
|
42277
42277
|
)
|
|
42278
42278
|
|
|
42279
42279
|
class contact_resistance_1(Group):
|
|
@@ -42292,7 +42292,7 @@ class contact_resistance_1(Group):
|
|
|
42292
42292
|
udf=udf,
|
|
42293
42293
|
)
|
|
42294
42294
|
_child_aliases = dict(
|
|
42295
|
-
constant='value',
|
|
42295
|
+
constant=('value', 'constant'),
|
|
42296
42296
|
)
|
|
42297
42297
|
|
|
42298
42298
|
class therm_accom_coef(Real):
|
|
@@ -42327,7 +42327,7 @@ class caf(Group):
|
|
|
42327
42327
|
udf=udf,
|
|
42328
42328
|
)
|
|
42329
42329
|
_child_aliases = dict(
|
|
42330
|
-
constant='value',
|
|
42330
|
+
constant=('value', 'constant'),
|
|
42331
42331
|
)
|
|
42332
42332
|
|
|
42333
42333
|
class thermal_stabilization(Boolean):
|
|
@@ -42398,21 +42398,21 @@ class thermal_6(Group):
|
|
|
42398
42398
|
boundary_advection=boundary_advection,
|
|
42399
42399
|
)
|
|
42400
42400
|
_child_aliases = dict(
|
|
42401
|
-
boundary_advection='boundary_advection',
|
|
42402
|
-
d='wall_thickness',
|
|
42403
|
-
d_constant='wall_thickness_old',
|
|
42404
|
-
ex_emiss='external_emissivity',
|
|
42405
|
-
h='heat_transfer_coeff',
|
|
42406
|
-
int_rad='radiating_to_fixed_temp',
|
|
42407
|
-
planar_conduction='enable_shell_conduction',
|
|
42408
|
-
q='heat_flux',
|
|
42409
|
-
q_dot='heat_generation_rate',
|
|
42410
|
-
shell_conduction='conduction_layers',
|
|
42411
|
-
t='temperature',
|
|
42412
|
-
thermal_bc='thermal_condition',
|
|
42413
|
-
tinf='free_stream_temp',
|
|
42414
|
-
trad='ext_rad_temperature',
|
|
42415
|
-
trad_internal='internal_radiation_temp',
|
|
42401
|
+
boundary_advection=('boundary_advection', 'boundary-advection?'),
|
|
42402
|
+
d=('wall_thickness', 'd'),
|
|
42403
|
+
d_constant=('wall_thickness_old', 'd-constant'),
|
|
42404
|
+
ex_emiss=('external_emissivity', 'ex-emiss'),
|
|
42405
|
+
h=('heat_transfer_coeff', 'h'),
|
|
42406
|
+
int_rad=('radiating_to_fixed_temp', 'int-rad?'),
|
|
42407
|
+
planar_conduction=('enable_shell_conduction', 'planar-conduction?'),
|
|
42408
|
+
q=('heat_flux', 'q'),
|
|
42409
|
+
q_dot=('heat_generation_rate', 'q-dot'),
|
|
42410
|
+
shell_conduction=('conduction_layers', 'shell-conduction'),
|
|
42411
|
+
t=('temperature', 't'),
|
|
42412
|
+
thermal_bc=('thermal_condition', 'thermal-bc'),
|
|
42413
|
+
tinf=('free_stream_temp', 'tinf'),
|
|
42414
|
+
trad=('ext_rad_temperature', 'trad'),
|
|
42415
|
+
trad_internal=('internal_radiation_temp', 'trad-internal'),
|
|
42416
42416
|
)
|
|
42417
42417
|
|
|
42418
42418
|
class bc_type_1(String, AllowedValuesMixin):
|
|
@@ -42527,7 +42527,7 @@ class beam_width(Group):
|
|
|
42527
42527
|
coll_dphi=coll_dphi,
|
|
42528
42528
|
)
|
|
42529
42529
|
_child_aliases = dict(
|
|
42530
|
-
coll_dtheta='theta',
|
|
42530
|
+
coll_dtheta=('theta', 'coll-dtheta'),
|
|
42531
42531
|
)
|
|
42532
42532
|
|
|
42533
42533
|
class reference_direction_1_child(Group):
|
|
@@ -42546,7 +42546,7 @@ class reference_direction_1_child(Group):
|
|
|
42546
42546
|
udf=udf,
|
|
42547
42547
|
)
|
|
42548
42548
|
_child_aliases = dict(
|
|
42549
|
-
constant='value',
|
|
42549
|
+
constant=('value', 'constant'),
|
|
42550
42550
|
)
|
|
42551
42551
|
|
|
42552
42552
|
class reference_direction_1(ListObject[reference_direction_1_child]):
|
|
@@ -42579,7 +42579,7 @@ class internal_emissivity_band_child(Group):
|
|
|
42579
42579
|
udf=udf,
|
|
42580
42580
|
)
|
|
42581
42581
|
_child_aliases = dict(
|
|
42582
|
-
constant='value',
|
|
42582
|
+
constant=('value', 'constant'),
|
|
42583
42583
|
)
|
|
42584
42584
|
|
|
42585
42585
|
class internal_emissivity_band(NamedObject[internal_emissivity_band_child], _NonCreatableNamedObjectMixin[internal_emissivity_band_child]):
|
|
@@ -42615,7 +42615,7 @@ class diffuse_irradiation_band_child(Group):
|
|
|
42615
42615
|
udf=udf,
|
|
42616
42616
|
)
|
|
42617
42617
|
_child_aliases = dict(
|
|
42618
|
-
constant='value',
|
|
42618
|
+
constant=('value', 'constant'),
|
|
42619
42619
|
)
|
|
42620
42620
|
|
|
42621
42621
|
class diffuse_irradiation_band(NamedObject[diffuse_irradiation_band_child], _NonCreatableNamedObjectMixin[diffuse_irradiation_band_child]):
|
|
@@ -42708,7 +42708,7 @@ class v_transmissivity(Group):
|
|
|
42708
42708
|
udf=udf,
|
|
42709
42709
|
)
|
|
42710
42710
|
_child_aliases = dict(
|
|
42711
|
-
constant='value',
|
|
42711
|
+
constant=('value', 'constant'),
|
|
42712
42712
|
)
|
|
42713
42713
|
|
|
42714
42714
|
class ir_transmissivity(Group):
|
|
@@ -42727,7 +42727,7 @@ class ir_transmissivity(Group):
|
|
|
42727
42727
|
udf=udf,
|
|
42728
42728
|
)
|
|
42729
42729
|
_child_aliases = dict(
|
|
42730
|
-
constant='value',
|
|
42730
|
+
constant=('value', 'constant'),
|
|
42731
42731
|
)
|
|
42732
42732
|
|
|
42733
42733
|
class d_transmissivity(Group):
|
|
@@ -42746,7 +42746,7 @@ class d_transmissivity(Group):
|
|
|
42746
42746
|
udf=udf,
|
|
42747
42747
|
)
|
|
42748
42748
|
_child_aliases = dict(
|
|
42749
|
-
constant='value',
|
|
42749
|
+
constant=('value', 'constant'),
|
|
42750
42750
|
)
|
|
42751
42751
|
|
|
42752
42752
|
class transmissivity(Group):
|
|
@@ -42779,7 +42779,7 @@ class v_opq_absorbtivity(Group):
|
|
|
42779
42779
|
udf=udf,
|
|
42780
42780
|
)
|
|
42781
42781
|
_child_aliases = dict(
|
|
42782
|
-
constant='value',
|
|
42782
|
+
constant=('value', 'constant'),
|
|
42783
42783
|
)
|
|
42784
42784
|
|
|
42785
42785
|
class v_st_absorbtivity(Group):
|
|
@@ -42798,7 +42798,7 @@ class v_st_absorbtivity(Group):
|
|
|
42798
42798
|
udf=udf,
|
|
42799
42799
|
)
|
|
42800
42800
|
_child_aliases = dict(
|
|
42801
|
-
constant='value',
|
|
42801
|
+
constant=('value', 'constant'),
|
|
42802
42802
|
)
|
|
42803
42803
|
|
|
42804
42804
|
class ir_opq_absorbtivity(Group):
|
|
@@ -42817,7 +42817,7 @@ class ir_opq_absorbtivity(Group):
|
|
|
42817
42817
|
udf=udf,
|
|
42818
42818
|
)
|
|
42819
42819
|
_child_aliases = dict(
|
|
42820
|
-
constant='value',
|
|
42820
|
+
constant=('value', 'constant'),
|
|
42821
42821
|
)
|
|
42822
42822
|
|
|
42823
42823
|
class ir_st_absorbtivity(Group):
|
|
@@ -42836,7 +42836,7 @@ class ir_st_absorbtivity(Group):
|
|
|
42836
42836
|
udf=udf,
|
|
42837
42837
|
)
|
|
42838
42838
|
_child_aliases = dict(
|
|
42839
|
-
constant='value',
|
|
42839
|
+
constant=('value', 'constant'),
|
|
42840
42840
|
)
|
|
42841
42841
|
|
|
42842
42842
|
class d_st_absorbtivity(Group):
|
|
@@ -42855,7 +42855,7 @@ class d_st_absorbtivity(Group):
|
|
|
42855
42855
|
udf=udf,
|
|
42856
42856
|
)
|
|
42857
42857
|
_child_aliases = dict(
|
|
42858
|
-
constant='value',
|
|
42858
|
+
constant=('value', 'constant'),
|
|
42859
42859
|
)
|
|
42860
42860
|
|
|
42861
42861
|
class absorptivity(Group):
|
|
@@ -42880,7 +42880,7 @@ class file_name_1_10(Filename, _InputFile):
|
|
|
42880
42880
|
"""
|
|
42881
42881
|
version = '242'
|
|
42882
42882
|
fluent_name = 'file-name'
|
|
42883
|
-
_python_name = '
|
|
42883
|
+
_python_name = 'file_name'
|
|
42884
42884
|
|
|
42885
42885
|
class read_polar_dist_func_from_file(Command):
|
|
42886
42886
|
"""
|
|
@@ -42960,18 +42960,18 @@ class radiation_6(Group):
|
|
|
42960
42960
|
write_polar_dist_func_to_file=write_polar_dist_func_to_file,
|
|
42961
42961
|
)
|
|
42962
42962
|
_child_aliases = dict(
|
|
42963
|
-
band_diffuse_frac='diffuse_fraction_band',
|
|
42964
|
-
band_in_emiss='internal_emissivity_band',
|
|
42965
|
-
band_q_irrad='direct_irradiation',
|
|
42966
|
-
band_q_irrad_diffuse='diffuse_irradiation_band',
|
|
42967
|
-
component_of_radiation_direction='reference_direction',
|
|
42968
|
-
fpsc='faces_per_surface_cluster',
|
|
42969
|
-
in_emiss='internal_emissivity',
|
|
42970
|
-
mc_bsource_p='boundary_source',
|
|
42971
|
-
mc_polar_expr='polar_expression',
|
|
42972
|
-
mc_poldfun_p='polar_distribution_function',
|
|
42973
|
-
polar_pair_list='polar_data_pairs',
|
|
42974
|
-
radiation_bc='bc_type',
|
|
42963
|
+
band_diffuse_frac=('diffuse_fraction_band', 'band-diffuse-frac'),
|
|
42964
|
+
band_in_emiss=('internal_emissivity_band', 'band-in-emiss'),
|
|
42965
|
+
band_q_irrad=('direct_irradiation', 'band-q-irrad'),
|
|
42966
|
+
band_q_irrad_diffuse=('diffuse_irradiation_band', 'band-q-irrad-diffuse'),
|
|
42967
|
+
component_of_radiation_direction=('reference_direction', 'component-of-radiation-direction'),
|
|
42968
|
+
fpsc=('faces_per_surface_cluster', 'fpsc'),
|
|
42969
|
+
in_emiss=('internal_emissivity', 'in-emiss'),
|
|
42970
|
+
mc_bsource_p=('boundary_source', 'mc-bsource-p?'),
|
|
42971
|
+
mc_polar_expr=('polar_expression', 'mc-polar-expr'),
|
|
42972
|
+
mc_poldfun_p=('polar_distribution_function', 'mc-poldfun-p?'),
|
|
42973
|
+
polar_pair_list=('polar_data_pairs', 'polar-pair-list'),
|
|
42974
|
+
radiation_bc=('bc_type', 'radiation-bc'),
|
|
42975
42975
|
)
|
|
42976
42976
|
|
|
42977
42977
|
class react_1(Boolean):
|
|
@@ -43014,7 +43014,7 @@ class partially_catalytic_recombination_coefficient_o(Group):
|
|
|
43014
43014
|
udf=udf,
|
|
43015
43015
|
)
|
|
43016
43016
|
_child_aliases = dict(
|
|
43017
|
-
constant='value',
|
|
43017
|
+
constant=('value', 'constant'),
|
|
43018
43018
|
)
|
|
43019
43019
|
|
|
43020
43020
|
class partially_catalytic_recombination_coefficient_n(Group):
|
|
@@ -43033,7 +43033,7 @@ class partially_catalytic_recombination_coefficient_n(Group):
|
|
|
43033
43033
|
udf=udf,
|
|
43034
43034
|
)
|
|
43035
43035
|
_child_aliases = dict(
|
|
43036
|
-
constant='value',
|
|
43036
|
+
constant=('value', 'constant'),
|
|
43037
43037
|
)
|
|
43038
43038
|
|
|
43039
43039
|
class partially_catalytic_recombination_model(String, AllowedValuesMixin):
|
|
@@ -43085,7 +43085,7 @@ class species_mass_fraction_or_flux_child(Group):
|
|
|
43085
43085
|
udf=udf,
|
|
43086
43086
|
)
|
|
43087
43087
|
_child_aliases = dict(
|
|
43088
|
-
constant='value',
|
|
43088
|
+
constant=('value', 'constant'),
|
|
43089
43089
|
)
|
|
43090
43090
|
|
|
43091
43091
|
class species_mass_fraction_or_flux(NamedObject[species_mass_fraction_or_flux_child], _NonCreatableNamedObjectMixin[species_mass_fraction_or_flux_child]):
|
|
@@ -43152,8 +43152,8 @@ class species_10(Group):
|
|
|
43152
43152
|
solid_species_density=solid_species_density,
|
|
43153
43153
|
)
|
|
43154
43154
|
_child_aliases = dict(
|
|
43155
|
-
mf='species_mass_fraction_or_flux',
|
|
43156
|
-
species_spec='species_boundary_conditions',
|
|
43155
|
+
mf=('species_mass_fraction_or_flux', 'mf'),
|
|
43156
|
+
species_spec=('species_boundary_conditions', 'species-spec'),
|
|
43157
43157
|
)
|
|
43158
43158
|
|
|
43159
43159
|
class normal_coefficient(Group):
|
|
@@ -43933,17 +43933,17 @@ class dpm_3(Group):
|
|
|
43933
43933
|
initialize_lwf_now=initialize_lwf_now,
|
|
43934
43934
|
)
|
|
43935
43935
|
_child_aliases = dict(
|
|
43936
|
-
dpm_bc_norm_coeff='normal_coefficient',
|
|
43937
|
-
dpm_bc_tang_coeff='tangential_coefficient',
|
|
43938
|
-
dpm_do_initialize_lwf_now='initialize_lwf_now',
|
|
43939
|
-
dpm_bc_collision_partner='dem_collision_partner',
|
|
43940
|
-
dpm_bc_erosion='generic_impact_angle_function',
|
|
43941
|
-
dpm_bc_erosion_c='generic_diameter_function',
|
|
43942
|
-
dpm_bc_erosion_finnie='enable_finnie_erosion_model',
|
|
43943
|
-
dpm_bc_erosion_generic='enable_generic_erosion_model',
|
|
43944
|
-
dpm_bc_erosion_n='generic_velocity_exponent_function',
|
|
43945
|
-
dpm_bc_type='discrete_phase_bc_type',
|
|
43946
|
-
dpm_bc_udf='discrete_phase_bc_function',
|
|
43936
|
+
dpm_bc_norm_coeff=('normal_coefficient', 'dpm-bc-norm-coeff'),
|
|
43937
|
+
dpm_bc_tang_coeff=('tangential_coefficient', 'dpm-bc-tang-coeff'),
|
|
43938
|
+
dpm_do_initialize_lwf_now=('initialize_lwf_now', 'dpm-do-initialize-lwf-now'),
|
|
43939
|
+
dpm_bc_collision_partner=('dem_collision_partner', 'dpm/bc-collision-partner'),
|
|
43940
|
+
dpm_bc_erosion=('generic_impact_angle_function', 'dpm/bc-erosion'),
|
|
43941
|
+
dpm_bc_erosion_c=('generic_diameter_function', 'dpm/bc-erosion-c'),
|
|
43942
|
+
dpm_bc_erosion_finnie=('enable_finnie_erosion_model', 'dpm/bc-erosion-finnie?'),
|
|
43943
|
+
dpm_bc_erosion_generic=('enable_generic_erosion_model', 'dpm/bc-erosion-generic?'),
|
|
43944
|
+
dpm_bc_erosion_n=('generic_velocity_exponent_function', 'dpm/bc-erosion-n'),
|
|
43945
|
+
dpm_bc_type=('discrete_phase_bc_type', 'dpm/bc-type'),
|
|
43946
|
+
dpm_bc_udf=('discrete_phase_bc_function', 'dpm/bc-udf'),
|
|
43947
43947
|
)
|
|
43948
43948
|
|
|
43949
43949
|
class eulerian_film_wall(Boolean):
|
|
@@ -43978,7 +43978,7 @@ class film_height(Group):
|
|
|
43978
43978
|
udf=udf,
|
|
43979
43979
|
)
|
|
43980
43980
|
_child_aliases = dict(
|
|
43981
|
-
constant='value',
|
|
43981
|
+
constant=('value', 'constant'),
|
|
43982
43982
|
)
|
|
43983
43983
|
|
|
43984
43984
|
class flux_momentum_child(Group):
|
|
@@ -43997,7 +43997,7 @@ class flux_momentum_child(Group):
|
|
|
43997
43997
|
udf=udf,
|
|
43998
43998
|
)
|
|
43999
43999
|
_child_aliases = dict(
|
|
44000
|
-
constant='value',
|
|
44000
|
+
constant=('value', 'constant'),
|
|
44001
44001
|
)
|
|
44002
44002
|
|
|
44003
44003
|
class flux_momentum(ListObject[flux_momentum_child]):
|
|
@@ -44046,7 +44046,7 @@ class film_temperature(Group):
|
|
|
44046
44046
|
udf=udf,
|
|
44047
44047
|
)
|
|
44048
44048
|
_child_aliases = dict(
|
|
44049
|
-
constant='value',
|
|
44049
|
+
constant=('value', 'constant'),
|
|
44050
44050
|
)
|
|
44051
44051
|
|
|
44052
44052
|
class film_passive_scalar(Group):
|
|
@@ -44065,7 +44065,7 @@ class film_passive_scalar(Group):
|
|
|
44065
44065
|
udf=udf,
|
|
44066
44066
|
)
|
|
44067
44067
|
_child_aliases = dict(
|
|
44068
|
-
constant='value',
|
|
44068
|
+
constant=('value', 'constant'),
|
|
44069
44069
|
)
|
|
44070
44070
|
|
|
44071
44071
|
class enable_film_source_terms(Boolean):
|
|
@@ -44092,7 +44092,7 @@ class film_mass_source(Group):
|
|
|
44092
44092
|
udf=udf,
|
|
44093
44093
|
)
|
|
44094
44094
|
_child_aliases = dict(
|
|
44095
|
-
constant='value',
|
|
44095
|
+
constant=('value', 'constant'),
|
|
44096
44096
|
)
|
|
44097
44097
|
|
|
44098
44098
|
class momentum_source_child(Group):
|
|
@@ -44111,7 +44111,7 @@ class momentum_source_child(Group):
|
|
|
44111
44111
|
udf=udf,
|
|
44112
44112
|
)
|
|
44113
44113
|
_child_aliases = dict(
|
|
44114
|
-
constant='value',
|
|
44114
|
+
constant=('value', 'constant'),
|
|
44115
44115
|
)
|
|
44116
44116
|
|
|
44117
44117
|
class momentum_source(ListObject[momentum_source_child]):
|
|
@@ -44144,7 +44144,7 @@ class film_heat_source(Group):
|
|
|
44144
44144
|
udf=udf,
|
|
44145
44145
|
)
|
|
44146
44146
|
_child_aliases = dict(
|
|
44147
|
-
constant='value',
|
|
44147
|
+
constant=('value', 'constant'),
|
|
44148
44148
|
)
|
|
44149
44149
|
|
|
44150
44150
|
class film_passive_scalar_source(Group):
|
|
@@ -44163,7 +44163,7 @@ class film_passive_scalar_source(Group):
|
|
|
44163
44163
|
udf=udf,
|
|
44164
44164
|
)
|
|
44165
44165
|
_child_aliases = dict(
|
|
44166
|
-
constant='value',
|
|
44166
|
+
constant=('value', 'constant'),
|
|
44167
44167
|
)
|
|
44168
44168
|
|
|
44169
44169
|
class enable_film_phase_change(Boolean):
|
|
@@ -44214,7 +44214,7 @@ class film_condensation_rate(Group):
|
|
|
44214
44214
|
udf=udf,
|
|
44215
44215
|
)
|
|
44216
44216
|
_child_aliases = dict(
|
|
44217
|
-
constant='value',
|
|
44217
|
+
constant=('value', 'constant'),
|
|
44218
44218
|
)
|
|
44219
44219
|
|
|
44220
44220
|
class film_vaporization_rate(Group):
|
|
@@ -44233,7 +44233,7 @@ class film_vaporization_rate(Group):
|
|
|
44233
44233
|
udf=udf,
|
|
44234
44234
|
)
|
|
44235
44235
|
_child_aliases = dict(
|
|
44236
|
-
constant='value',
|
|
44236
|
+
constant=('value', 'constant'),
|
|
44237
44237
|
)
|
|
44238
44238
|
|
|
44239
44239
|
class enable_flow_momentum_coupling(Boolean):
|
|
@@ -44356,7 +44356,7 @@ class film_contact_angle_mean(Group):
|
|
|
44356
44356
|
udf=udf,
|
|
44357
44357
|
)
|
|
44358
44358
|
_child_aliases = dict(
|
|
44359
|
-
constant='value',
|
|
44359
|
+
constant=('value', 'constant'),
|
|
44360
44360
|
)
|
|
44361
44361
|
|
|
44362
44362
|
class film_contact_angle_rstd(Real):
|
|
@@ -44475,36 +44475,36 @@ class wall_film_1(Group):
|
|
|
44475
44475
|
film_vof_trans_low_relax=film_vof_trans_low_relax,
|
|
44476
44476
|
)
|
|
44477
44477
|
_child_aliases = dict(
|
|
44478
|
-
film_a_wet='laplace_number_constant',
|
|
44479
|
-
film_bc_imp_press='include_film_momentum_pressure',
|
|
44480
|
-
film_boundary_separation='allow_film_boundary_separation',
|
|
44481
|
-
film_cond_const='film_condensation_constant',
|
|
44482
|
-
film_cond_rate='film_condensation_rate',
|
|
44483
|
-
film_contact_angle='enable_film_contact_angle_force',
|
|
44484
|
-
film_crit_temp_factor='critical_temperature_factor',
|
|
44485
|
-
film_h_src='film_mass_source',
|
|
44486
|
-
film_impinge_model='impingement_model',
|
|
44487
|
-
film_momentum_coupling='enable_flow_momentum_coupling',
|
|
44488
|
-
film_partial_evap_ratio='partial_evaporation_ratio',
|
|
44489
|
-
film_phase_change_model='phase_change_model',
|
|
44490
|
-
film_phase_change='enable_film_phase_change',
|
|
44491
|
-
film_relative_vel='relative_initial_film_velocity',
|
|
44492
|
-
film_roughness_ra='wall_roughness_length_ra',
|
|
44493
|
-
film_roughness_rz='wall_roughness_length_rz',
|
|
44494
|
-
film_s_src='film_passive_scalar_source',
|
|
44495
|
-
film_scalar='film_passive_scalar',
|
|
44496
|
-
film_source='enable_film_source_terms',
|
|
44497
|
-
film_splash_nparc='number_of_splashed_particles',
|
|
44498
|
-
film_splash_wall='enable_dpm_wall_splash',
|
|
44499
|
-
film_t_delta='deposition_delta_t',
|
|
44500
|
-
film_t_deposition_offset='upper_deposition_limit_offset',
|
|
44501
|
-
film_t_src='film_heat_source',
|
|
44502
|
-
film_vapo_const='film_vaporization_constant',
|
|
44503
|
-
film_vapo_rate='film_vaporization_rate',
|
|
44504
|
-
film_wall_bc='film_condition_type',
|
|
44505
|
-
film_wall='eulerian_film_wall',
|
|
44506
|
-
flux_momentum_components='flux_momentum',
|
|
44507
|
-
momentum_source_components='momentum_source',
|
|
44478
|
+
film_a_wet=('laplace_number_constant', 'film-a-wet'),
|
|
44479
|
+
film_bc_imp_press=('include_film_momentum_pressure', 'film-bc-imp-press?'),
|
|
44480
|
+
film_boundary_separation=('allow_film_boundary_separation', 'film-boundary-separation?'),
|
|
44481
|
+
film_cond_const=('film_condensation_constant', 'film-cond-const'),
|
|
44482
|
+
film_cond_rate=('film_condensation_rate', 'film-cond-rate'),
|
|
44483
|
+
film_contact_angle=('enable_film_contact_angle_force', 'film-contact-angle?'),
|
|
44484
|
+
film_crit_temp_factor=('critical_temperature_factor', 'film-crit-temp-factor'),
|
|
44485
|
+
film_h_src=('film_mass_source', 'film-h-src'),
|
|
44486
|
+
film_impinge_model=('impingement_model', 'film-impinge-model'),
|
|
44487
|
+
film_momentum_coupling=('enable_flow_momentum_coupling', 'film-momentum-coupling?'),
|
|
44488
|
+
film_partial_evap_ratio=('partial_evaporation_ratio', 'film-partial-evap-ratio'),
|
|
44489
|
+
film_phase_change_model=('phase_change_model', 'film-phase-change-model'),
|
|
44490
|
+
film_phase_change=('enable_film_phase_change', 'film-phase-change?'),
|
|
44491
|
+
film_relative_vel=('relative_initial_film_velocity', 'film-relative-vel?'),
|
|
44492
|
+
film_roughness_ra=('wall_roughness_length_ra', 'film-roughness-ra'),
|
|
44493
|
+
film_roughness_rz=('wall_roughness_length_rz', 'film-roughness-rz'),
|
|
44494
|
+
film_s_src=('film_passive_scalar_source', 'film-s-src'),
|
|
44495
|
+
film_scalar=('film_passive_scalar', 'film-scalar'),
|
|
44496
|
+
film_source=('enable_film_source_terms', 'film-source?'),
|
|
44497
|
+
film_splash_nparc=('number_of_splashed_particles', 'film-splash-nparc'),
|
|
44498
|
+
film_splash_wall=('enable_dpm_wall_splash', 'film-splash-wall?'),
|
|
44499
|
+
film_t_delta=('deposition_delta_t', 'film-t-delta'),
|
|
44500
|
+
film_t_deposition_offset=('upper_deposition_limit_offset', 'film-t-deposition-offset'),
|
|
44501
|
+
film_t_src=('film_heat_source', 'film-t-src'),
|
|
44502
|
+
film_vapo_const=('film_vaporization_constant', 'film-vapo-const'),
|
|
44503
|
+
film_vapo_rate=('film_vaporization_rate', 'film-vapo-rate'),
|
|
44504
|
+
film_wall_bc=('film_condition_type', 'film-wall-bc'),
|
|
44505
|
+
film_wall=('eulerian_film_wall', 'film-wall?'),
|
|
44506
|
+
flux_momentum_components=('flux_momentum', 'flux-momentum-components'),
|
|
44507
|
+
momentum_source_components=('momentum_source', 'momentum-source-components'),
|
|
44508
44508
|
)
|
|
44509
44509
|
|
|
44510
44510
|
class gtemp_bc(String, AllowedValuesMixin):
|
|
@@ -44531,7 +44531,7 @@ class g_temperature(Group):
|
|
|
44531
44531
|
udf=udf,
|
|
44532
44532
|
)
|
|
44533
44533
|
_child_aliases = dict(
|
|
44534
|
-
constant='value',
|
|
44534
|
+
constant=('value', 'constant'),
|
|
44535
44535
|
)
|
|
44536
44536
|
|
|
44537
44537
|
class g_qflux(Group):
|
|
@@ -44550,7 +44550,7 @@ class g_qflux(Group):
|
|
|
44550
44550
|
udf=udf,
|
|
44551
44551
|
)
|
|
44552
44552
|
_child_aliases = dict(
|
|
44553
|
-
constant='value',
|
|
44553
|
+
constant=('value', 'constant'),
|
|
44554
44554
|
)
|
|
44555
44555
|
|
|
44556
44556
|
class wall_restitution_coeff(Real):
|
|
@@ -44577,7 +44577,7 @@ class multiphase_7(Group):
|
|
|
44577
44577
|
contact_angles=contact_angles,
|
|
44578
44578
|
)
|
|
44579
44579
|
_child_aliases = dict(
|
|
44580
|
-
adhesion_angle='contact_angles',
|
|
44580
|
+
adhesion_angle=('contact_angles', 'adhesion-angle'),
|
|
44581
44581
|
)
|
|
44582
44582
|
|
|
44583
44583
|
class elec_potential_jump(Group):
|
|
@@ -44596,7 +44596,7 @@ class elec_potential_jump(Group):
|
|
|
44596
44596
|
udf=udf,
|
|
44597
44597
|
)
|
|
44598
44598
|
_child_aliases = dict(
|
|
44599
|
-
constant='value',
|
|
44599
|
+
constant=('value', 'constant'),
|
|
44600
44600
|
)
|
|
44601
44601
|
|
|
44602
44602
|
class elec_potential_resistance(Group):
|
|
@@ -44615,7 +44615,7 @@ class elec_potential_resistance(Group):
|
|
|
44615
44615
|
udf=udf,
|
|
44616
44616
|
)
|
|
44617
44617
|
_child_aliases = dict(
|
|
44618
|
-
constant='value',
|
|
44618
|
+
constant=('value', 'constant'),
|
|
44619
44619
|
)
|
|
44620
44620
|
|
|
44621
44621
|
class echem_reaction(Boolean):
|
|
@@ -44666,7 +44666,7 @@ class lithium_boundary_value(Group):
|
|
|
44666
44666
|
udf=udf,
|
|
44667
44667
|
)
|
|
44668
44668
|
_child_aliases = dict(
|
|
44669
|
-
constant='value',
|
|
44669
|
+
constant=('value', 'constant'),
|
|
44670
44670
|
)
|
|
44671
44671
|
|
|
44672
44672
|
class potential_3(Group):
|
|
@@ -44691,12 +44691,12 @@ class potential_3(Group):
|
|
|
44691
44691
|
lithium_boundary_value=lithium_boundary_value,
|
|
44692
44692
|
)
|
|
44693
44693
|
_child_aliases = dict(
|
|
44694
|
-
dual_potential_type='electrolyte_potential_boundary_condition',
|
|
44695
|
-
dual_potential_value='current_density_boundary_value',
|
|
44696
|
-
elec_potential_type='potential_boundary_condition',
|
|
44697
|
-
elec_potential_value='potential_boundary_value',
|
|
44698
|
-
li_ion_type='lithium_conc_cond',
|
|
44699
|
-
li_ion_value='lithium_boundary_value',
|
|
44694
|
+
dual_potential_type=('electrolyte_potential_boundary_condition', 'dual-potential-type'),
|
|
44695
|
+
dual_potential_value=('current_density_boundary_value', 'dual-potential-value'),
|
|
44696
|
+
elec_potential_type=('potential_boundary_condition', 'elec-potential-type'),
|
|
44697
|
+
elec_potential_value=('potential_boundary_value', 'elec-potential-value'),
|
|
44698
|
+
li_ion_type=('lithium_conc_cond', 'li-ion-type'),
|
|
44699
|
+
li_ion_value=('lithium_boundary_value', 'li-ion-value'),
|
|
44700
44700
|
)
|
|
44701
44701
|
|
|
44702
44702
|
class fensapice_ice_icing_mode(Integer):
|
|
@@ -44721,7 +44721,7 @@ class fensapice_ice_hflux_1(Real):
|
|
|
44721
44721
|
"""
|
|
44722
44722
|
version = '242'
|
|
44723
44723
|
fluent_name = 'fensapice-ice-hflux'
|
|
44724
|
-
_python_name = '
|
|
44724
|
+
_python_name = 'fensapice_ice_hflux'
|
|
44725
44725
|
|
|
44726
44726
|
class fensapice_drop_vwet(Boolean):
|
|
44727
44727
|
"""
|
|
@@ -44848,7 +44848,7 @@ class species_mass_fraction_1_child(Group):
|
|
|
44848
44848
|
udf=udf,
|
|
44849
44849
|
)
|
|
44850
44850
|
_child_aliases = dict(
|
|
44851
|
-
constant='value',
|
|
44851
|
+
constant=('value', 'constant'),
|
|
44852
44852
|
)
|
|
44853
44853
|
|
|
44854
44854
|
class species_mass_fraction_1(NamedObject[species_mass_fraction_1_child], _NonCreatableNamedObjectMixin[species_mass_fraction_1_child]):
|
|
@@ -44885,7 +44885,7 @@ class ablation_1(Group):
|
|
|
44885
44885
|
species_mass_fraction=species_mass_fraction_1,
|
|
44886
44886
|
)
|
|
44887
44887
|
_child_aliases = dict(
|
|
44888
|
-
ablation_species_mf='species_mass_fraction',
|
|
44888
|
+
ablation_species_mf=('species_mass_fraction', 'ablation/species-mf'),
|
|
44889
44889
|
)
|
|
44890
44890
|
|
|
44891
44891
|
class phase_25_child(Group):
|
|
@@ -48240,7 +48240,7 @@ class filename_2_1(Filename, _OutputFile):
|
|
|
48240
48240
|
"""
|
|
48241
48241
|
version = '242'
|
|
48242
48242
|
fluent_name = 'filename'
|
|
48243
|
-
_python_name = '
|
|
48243
|
+
_python_name = 'filename'
|
|
48244
48244
|
|
|
48245
48245
|
class boundary_list_1(StringList, AllowedValuesMixin):
|
|
48246
48246
|
"""
|
|
@@ -52506,7 +52506,7 @@ class additional_stabilization_controls(Group):
|
|
|
52506
52506
|
pseudo_time_stabilization=pseudo_time_stabilization,
|
|
52507
52507
|
)
|
|
52508
52508
|
_child_aliases = dict(
|
|
52509
|
-
pseudo_transient_stabilization='pseudo_time_stabilization',
|
|
52509
|
+
pseudo_transient_stabilization=('pseudo_time_stabilization', 'pseudo-transient-stabilization?'),
|
|
52510
52510
|
)
|
|
52511
52511
|
|
|
52512
52512
|
class execute_additional_stability_controls(Integer):
|
|
@@ -53197,9 +53197,9 @@ class p_v_controls(Group):
|
|
|
53197
53197
|
explicit_volume_fraction_under_relaxation=explicit_volume_fraction_under_relaxation,
|
|
53198
53198
|
)
|
|
53199
53199
|
_child_aliases = dict(
|
|
53200
|
-
neighbor_correction_itr_count='solution/methods/p_v_coupling/neighbor_correction_itr_count',
|
|
53201
|
-
skewness_correction_itr_count='solution/methods/p_v_coupling/skewness_correction_itr_count',
|
|
53202
|
-
skewness_neighbor_coupling='solution/methods/p_v_coupling/skewness_neighbor_coupling',
|
|
53200
|
+
neighbor_correction_itr_count=('solution/methods/p_v_coupling/neighbor_correction_itr_count', 'neighbor-correction-itr-count'),
|
|
53201
|
+
skewness_correction_itr_count=('solution/methods/p_v_coupling/skewness_correction_itr_count', 'skewness-correction-itr-count'),
|
|
53202
|
+
skewness_neighbor_coupling=('solution/methods/p_v_coupling/skewness_neighbor_coupling', 'skewness-neighbor-coupling'),
|
|
53203
53203
|
)
|
|
53204
53204
|
|
|
53205
53205
|
class relaxation_factor_1_child(Real):
|
|
@@ -56320,7 +56320,7 @@ class residual_values(Group):
|
|
|
56320
56320
|
reporting_option=reporting_option,
|
|
56321
56321
|
)
|
|
56322
56322
|
_child_aliases = dict(
|
|
56323
|
-
scale_type='reporting_option',
|
|
56323
|
+
scale_type=('reporting_option', 'scale-type'),
|
|
56324
56324
|
)
|
|
56325
56325
|
|
|
56326
56326
|
class print_2(Boolean):
|
|
@@ -56740,7 +56740,7 @@ class file_name_2_1(Filename, _InOutFile):
|
|
|
56740
56740
|
"""
|
|
56741
56741
|
version = '242'
|
|
56742
56742
|
fluent_name = 'file-name'
|
|
56743
|
-
_python_name = '
|
|
56743
|
+
_python_name = 'file_name'
|
|
56744
56744
|
|
|
56745
56745
|
class frequency_of(String, AllowedValuesMixin):
|
|
56746
56746
|
"""
|
|
@@ -57109,7 +57109,7 @@ class python_name_1(String, AllowedValuesMixin):
|
|
|
57109
57109
|
"""
|
|
57110
57110
|
version = '242'
|
|
57111
57111
|
fluent_name = 'python-name'
|
|
57112
|
-
_python_name = '
|
|
57112
|
+
_python_name = 'python_name'
|
|
57113
57113
|
|
|
57114
57114
|
class min_point(RealList):
|
|
57115
57115
|
"""
|
|
@@ -58761,7 +58761,7 @@ class tsv_file_name_1(Filename, _InputFile):
|
|
|
58761
58761
|
"""
|
|
58762
58762
|
version = '242'
|
|
58763
58763
|
fluent_name = 'tsv-file-name'
|
|
58764
|
-
_python_name = '
|
|
58764
|
+
_python_name = 'tsv_file_name'
|
|
58765
58765
|
|
|
58766
58766
|
class import__1(Command):
|
|
58767
58767
|
"""
|
|
@@ -59468,7 +59468,7 @@ class filename_2_2(Filename, _OutputFile):
|
|
|
59468
59468
|
"""
|
|
59469
59469
|
version = '242'
|
|
59470
59470
|
fluent_name = 'filename'
|
|
59471
|
-
_python_name = '
|
|
59471
|
+
_python_name = 'filename'
|
|
59472
59472
|
|
|
59473
59473
|
class export_modifications(Command):
|
|
59474
59474
|
"""
|
|
@@ -61498,8 +61498,8 @@ class plane_surface_child(Group):
|
|
|
61498
61498
|
display=display_4,
|
|
61499
61499
|
)
|
|
61500
61500
|
_child_aliases = dict(
|
|
61501
|
-
point_normal='normal',
|
|
61502
|
-
point_vector='point',
|
|
61501
|
+
point_normal=('normal', 'point-normal'),
|
|
61502
|
+
point_vector=('point', 'point-vector'),
|
|
61503
61503
|
)
|
|
61504
61504
|
|
|
61505
61505
|
class plane_surface(NamedObject[plane_surface_child], CreatableNamedObjectMixinOld[plane_surface_child]):
|
|
@@ -68241,7 +68241,7 @@ class filename_2_3(Filename, _OutputFile):
|
|
|
68241
68241
|
"""
|
|
68242
68242
|
version = '242'
|
|
68243
68243
|
fluent_name = 'filename'
|
|
68244
|
-
_python_name = '
|
|
68244
|
+
_python_name = 'filename'
|
|
68245
68245
|
|
|
68246
68246
|
class write_to_file(Command):
|
|
68247
68247
|
"""
|
|
@@ -78206,7 +78206,7 @@ class create_1_1(CommandWithPositionalArgs):
|
|
|
78206
78206
|
"""
|
|
78207
78207
|
version = '242'
|
|
78208
78208
|
fluent_name = 'create'
|
|
78209
|
-
_python_name = '
|
|
78209
|
+
_python_name = 'create'
|
|
78210
78210
|
argument_names = ['write_data', 'capture_simulation_report_data']
|
|
78211
78211
|
_child_classes = dict(
|
|
78212
78212
|
write_data=write_data_1,
|
|
@@ -80109,7 +80109,7 @@ class host_file_1(Filename, _OutputFile):
|
|
|
80109
80109
|
"""
|
|
80110
80110
|
version = '242'
|
|
80111
80111
|
fluent_name = 'host-file'
|
|
80112
|
-
_python_name = '
|
|
80112
|
+
_python_name = 'host_file'
|
|
80113
80113
|
|
|
80114
80114
|
class save_hosts(Command):
|
|
80115
80115
|
"""
|