ansys-fluent-core 0.29.dev3__py3-none-any.whl → 0.30.dev1__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.

Files changed (147) hide show
  1. ansys/fluent/core/__init__.py +31 -6
  2. ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py +22 -0
  3. ansys/fluent/core/_version.py +23 -1
  4. ansys/fluent/core/codegen/__init__.py +22 -0
  5. ansys/fluent/core/codegen/allapigen.py +38 -5
  6. ansys/fluent/core/codegen/builtin_settingsgen.py +22 -0
  7. ansys/fluent/core/codegen/data/__init__.py +21 -0
  8. ansys/fluent/core/codegen/data/fluent_gui_help_patch.py +22 -0
  9. ansys/fluent/core/codegen/data/meshing_utilities_examples.py +22 -0
  10. ansys/fluent/core/codegen/datamodelgen.py +40 -4
  11. ansys/fluent/core/codegen/print_fluent_version.py +22 -0
  12. ansys/fluent/core/codegen/settingsgen.py +67 -4
  13. ansys/fluent/core/codegen/tuigen.py +43 -5
  14. ansys/fluent/core/codegen/walk_api.py +22 -0
  15. ansys/fluent/core/codegen/write_settings_yaml.py +22 -0
  16. ansys/fluent/core/data_model_cache.py +22 -0
  17. ansys/fluent/core/examples/__init__.py +22 -0
  18. ansys/fluent/core/examples/downloads.py +22 -0
  19. ansys/fluent/core/exceptions.py +22 -0
  20. ansys/fluent/core/file_session.py +22 -0
  21. ansys/fluent/core/filereader/__init__.py +21 -0
  22. ansys/fluent/core/filereader/case_file.py +50 -6
  23. ansys/fluent/core/filereader/casereader.py +23 -1
  24. ansys/fluent/core/filereader/data_file.py +22 -0
  25. ansys/fluent/core/filereader/lispy.py +22 -0
  26. ansys/fluent/core/fluent_connection.py +24 -2
  27. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  28. ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +16 -0
  29. ansys/fluent/core/generated/datamodel_252/meshing.py +41 -0
  30. ansys/fluent/core/generated/fluent_version_252.py +3 -3
  31. ansys/fluent/core/generated/meshing/tui_252.py +33 -5
  32. ansys/fluent/core/generated/solver/settings_222.py +0 -72
  33. ansys/fluent/core/generated/solver/settings_222.pyi +0 -307
  34. ansys/fluent/core/generated/solver/settings_231.py +0 -574
  35. ansys/fluent/core/generated/solver/settings_231.pyi +0 -561
  36. ansys/fluent/core/generated/solver/settings_232.py +0 -527
  37. ansys/fluent/core/generated/solver/settings_232.pyi +0 -2803
  38. ansys/fluent/core/generated/solver/settings_241.py +0 -478
  39. ansys/fluent/core/generated/solver/settings_241.pyi +0 -522
  40. ansys/fluent/core/generated/solver/settings_242.py +0 -361
  41. ansys/fluent/core/generated/solver/settings_242.pyi +0 -591
  42. ansys/fluent/core/generated/solver/settings_251.py +0 -399
  43. ansys/fluent/core/generated/solver/settings_251.pyi +0 -629
  44. ansys/fluent/core/generated/solver/settings_252.py +11896 -7129
  45. ansys/fluent/core/generated/solver/settings_252.pyi +9127 -4847
  46. ansys/fluent/core/generated/solver/tui_252.py +549 -179
  47. ansys/fluent/core/get_build_details.py +22 -0
  48. ansys/fluent/core/journaling.py +38 -0
  49. ansys/fluent/core/launcher/__init__.py +22 -0
  50. ansys/fluent/core/launcher/container_launcher.py +63 -55
  51. ansys/fluent/core/launcher/error_handler.py +22 -0
  52. ansys/fluent/core/launcher/fluent_container.py +23 -1
  53. ansys/fluent/core/launcher/launcher.py +52 -4
  54. ansys/fluent/core/launcher/launcher_utils.py +24 -2
  55. ansys/fluent/core/launcher/pim_launcher.py +120 -86
  56. ansys/fluent/core/launcher/process_launch_string.py +22 -0
  57. ansys/fluent/core/launcher/pyfluent_enums.py +22 -0
  58. ansys/fluent/core/launcher/server_info.py +22 -0
  59. ansys/fluent/core/launcher/slurm_launcher.py +23 -1
  60. ansys/fluent/core/launcher/standalone_launcher.py +68 -63
  61. ansys/fluent/core/launcher/watchdog.py +22 -0
  62. ansys/fluent/core/logging.py +22 -0
  63. ansys/fluent/core/meshing/meshing_workflow.py +22 -0
  64. ansys/fluent/core/parametric.py +22 -0
  65. ansys/fluent/core/post_objects/__init__.py +21 -0
  66. ansys/fluent/core/post_objects/check_in_notebook.py +22 -0
  67. ansys/fluent/core/post_objects/meta.py +28 -6
  68. ansys/fluent/core/post_objects/post_helper.py +22 -0
  69. ansys/fluent/core/post_objects/post_object_definitions.py +22 -0
  70. ansys/fluent/core/post_objects/post_objects_container.py +22 -0
  71. ansys/fluent/core/post_objects/singleton_meta.py +22 -0
  72. ansys/fluent/core/post_objects/timing_decorator.py +22 -0
  73. ansys/fluent/core/pyfluent_warnings.py +55 -0
  74. ansys/fluent/core/report.py +77 -0
  75. ansys/fluent/core/rpvars.py +22 -0
  76. ansys/fluent/core/scheduler/__init__.py +22 -0
  77. ansys/fluent/core/scheduler/load_machines.py +22 -0
  78. ansys/fluent/core/scheduler/machine_list.py +22 -0
  79. ansys/fluent/core/search.py +22 -0
  80. ansys/fluent/core/services/__init__.py +22 -0
  81. ansys/fluent/core/services/api_upgrade.py +22 -0
  82. ansys/fluent/core/services/app_utilities.py +38 -0
  83. ansys/fluent/core/services/batch_ops.py +22 -0
  84. ansys/fluent/core/services/datamodel_se.py +22 -2
  85. ansys/fluent/core/services/datamodel_tui.py +22 -0
  86. ansys/fluent/core/services/deprecated_field_data.py +24 -2
  87. ansys/fluent/core/services/events.py +22 -0
  88. ansys/fluent/core/services/field_data.py +46 -15
  89. ansys/fluent/core/services/health_check.py +22 -0
  90. ansys/fluent/core/services/interceptors.py +22 -0
  91. ansys/fluent/core/services/monitor.py +22 -0
  92. ansys/fluent/core/services/reduction.py +22 -0
  93. ansys/fluent/core/services/scheme_eval.py +22 -0
  94. ansys/fluent/core/services/settings.py +22 -0
  95. ansys/fluent/core/services/solution_variables.py +23 -1
  96. ansys/fluent/core/services/streaming.py +22 -0
  97. ansys/fluent/core/services/transcript.py +22 -0
  98. ansys/fluent/core/session.py +36 -1
  99. ansys/fluent/core/session_base_meshing.py +22 -0
  100. ansys/fluent/core/session_meshing.py +22 -0
  101. ansys/fluent/core/session_meshing.pyi +22 -0
  102. ansys/fluent/core/session_pure_meshing.py +22 -0
  103. ansys/fluent/core/session_pure_meshing.pyi +22 -0
  104. ansys/fluent/core/session_shared.py +22 -0
  105. ansys/fluent/core/session_solver.py +23 -1
  106. ansys/fluent/core/session_solver.pyi +22 -0
  107. ansys/fluent/core/session_solver_aero.py +22 -0
  108. ansys/fluent/core/session_solver_icing.py +22 -0
  109. ansys/fluent/core/session_solver_lite.py +22 -0
  110. ansys/fluent/core/solver/__init__.py +22 -0
  111. ansys/fluent/core/solver/error_message.py +22 -0
  112. ansys/fluent/core/solver/flobject.py +26 -1
  113. ansys/fluent/core/solver/flunits.py +22 -0
  114. ansys/fluent/core/solver/function/__init__.py +22 -0
  115. ansys/fluent/core/solver/function/reduction.py +22 -0
  116. ansys/fluent/core/solver/settings_builtin_bases.py +22 -0
  117. ansys/fluent/core/solver/settings_builtin_data.py +22 -0
  118. ansys/fluent/core/solver/settings_external.py +22 -0
  119. ansys/fluent/core/streaming_services/__init__.py +21 -0
  120. ansys/fluent/core/streaming_services/datamodel_event_streaming.py +22 -0
  121. ansys/fluent/core/streaming_services/datamodel_streaming.py +22 -0
  122. ansys/fluent/core/streaming_services/events_streaming.py +23 -1
  123. ansys/fluent/core/streaming_services/field_data_streaming.py +22 -0
  124. ansys/fluent/core/streaming_services/monitor_streaming.py +23 -1
  125. ansys/fluent/core/streaming_services/streaming.py +22 -0
  126. ansys/fluent/core/streaming_services/transcript_streaming.py +22 -0
  127. ansys/fluent/core/systemcoupling.py +22 -0
  128. ansys/fluent/core/utils/__init__.py +22 -0
  129. ansys/fluent/core/utils/data_transfer.py +22 -0
  130. ansys/fluent/core/utils/deprecate.py +25 -2
  131. ansys/fluent/core/utils/dictionary_operations.py +22 -0
  132. ansys/fluent/core/utils/dump_session_data.py +22 -0
  133. ansys/fluent/core/utils/event_loop.py +22 -0
  134. ansys/fluent/core/utils/execution.py +22 -0
  135. ansys/fluent/core/utils/file_transfer_service.py +26 -4
  136. ansys/fluent/core/utils/fix_doc.py +22 -0
  137. ansys/fluent/core/utils/fldoc.py +22 -0
  138. ansys/fluent/core/utils/fluent_version.py +22 -0
  139. ansys/fluent/core/utils/networking.py +22 -0
  140. ansys/fluent/core/utils/setup_for_fluent.py +22 -0
  141. ansys/fluent/core/workflow.py +26 -1
  142. {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/LICENSE +8 -8
  143. {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/METADATA +10 -8
  144. ansys_fluent_core-0.30.dev1.dist-info/RECORD +219 -0
  145. ansys/fluent/core/warnings.py +0 -33
  146. ansys_fluent_core-0.29.dev3.dist-info/RECORD +0 -218
  147. {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/WHEEL +0 -0
@@ -1773,17 +1773,6 @@ class lightweight_setup(Boolean):
1773
1773
  class read(Command):
1774
1774
  """
1775
1775
  'read' command.
1776
-
1777
- Parameters
1778
- ----------
1779
- file_type : str
1780
- 'file_type' child.
1781
- file_name_1 : str
1782
- 'file_name' child.
1783
- pdf_file_name : str
1784
- 'pdf_file_name' child.
1785
- lightweight_setup : bool
1786
- 'lightweight_setup' child.
1787
1776
  """
1788
1777
  version = '242'
1789
1778
  fluent_name = 'read'
@@ -1799,13 +1788,6 @@ class read(Command):
1799
1788
  class read_case(Command):
1800
1789
  """
1801
1790
  'read_case' command.
1802
-
1803
- Parameters
1804
- ----------
1805
- file_name_1 : str
1806
- 'file_name' child.
1807
- pdf_file_name : str
1808
- 'pdf_file_name' child.
1809
1791
  """
1810
1792
  version = '242'
1811
1793
  fluent_name = 'read-case'
@@ -1819,13 +1801,6 @@ class read_case(Command):
1819
1801
  class read_case_data(Command):
1820
1802
  """
1821
1803
  'read_case_data' command.
1822
-
1823
- Parameters
1824
- ----------
1825
- file_name_1 : str
1826
- 'file_name' child.
1827
- pdf_file_name : str
1828
- 'pdf_file_name' child.
1829
1804
  """
1830
1805
  version = '242'
1831
1806
  fluent_name = 'read-case-data'
@@ -1839,13 +1814,6 @@ class read_case_data(Command):
1839
1814
  class read_case_setting(Command):
1840
1815
  """
1841
1816
  'read_case_setting' command.
1842
-
1843
- Parameters
1844
- ----------
1845
- file_name_1 : str
1846
- 'file_name' child.
1847
- pdf_file_name : str
1848
- 'pdf_file_name' child.
1849
1817
  """
1850
1818
  version = '242'
1851
1819
  fluent_name = 'read-case-setting'
@@ -1859,11 +1827,6 @@ class read_case_setting(Command):
1859
1827
  class read_data(Command):
1860
1828
  """
1861
1829
  'read_data' command.
1862
-
1863
- Parameters
1864
- ----------
1865
- file_name_1 : str
1866
- 'file_name' child.
1867
1830
  """
1868
1831
  version = '242'
1869
1832
  fluent_name = 'read-data'
@@ -1876,11 +1839,6 @@ class read_data(Command):
1876
1839
  class read_mesh(Command):
1877
1840
  """
1878
1841
  'read_mesh' command.
1879
-
1880
- Parameters
1881
- ----------
1882
- file_name_1 : str
1883
- 'file_name' child.
1884
1842
  """
1885
1843
  version = '242'
1886
1844
  fluent_name = 'read-mesh'
@@ -2004,11 +1962,6 @@ class stop_journal(Command):
2004
1962
  class replace_mesh(Command):
2005
1963
  """
2006
1964
  'replace_mesh' command.
2007
-
2008
- Parameters
2009
- ----------
2010
- file_name_1 : str
2011
- 'file_name' child.
2012
1965
  """
2013
1966
  version = '242'
2014
1967
  fluent_name = 'replace-mesh'
@@ -2021,13 +1974,6 @@ class replace_mesh(Command):
2021
1974
  class write(Command):
2022
1975
  """
2023
1976
  'write' command.
2024
-
2025
- Parameters
2026
- ----------
2027
- file_type : str
2028
- 'file_type' child.
2029
- file_name : str
2030
- 'file_name' child.
2031
1977
  """
2032
1978
  version = '242'
2033
1979
  fluent_name = 'write'
@@ -2041,11 +1987,6 @@ class write(Command):
2041
1987
  class write_case(Command):
2042
1988
  """
2043
1989
  'write_case' command.
2044
-
2045
- Parameters
2046
- ----------
2047
- file_name : str
2048
- 'file_name' child.
2049
1990
  """
2050
1991
  version = '242'
2051
1992
  fluent_name = 'write-case'
@@ -2058,11 +1999,6 @@ class write_case(Command):
2058
1999
  class write_data(Command):
2059
2000
  """
2060
2001
  'write_data' command.
2061
-
2062
- Parameters
2063
- ----------
2064
- file_name : str
2065
- 'file_name' child.
2066
2002
  """
2067
2003
  version = '242'
2068
2004
  fluent_name = 'write-data'
@@ -2075,11 +2011,6 @@ class write_data(Command):
2075
2011
  class write_case_data(Command):
2076
2012
  """
2077
2013
  'write_case_data' command.
2078
-
2079
- Parameters
2080
- ----------
2081
- file_name : str
2082
- 'file_name' child.
2083
2014
  """
2084
2015
  version = '242'
2085
2016
  fluent_name = 'write-case-data'
@@ -4476,15 +4407,6 @@ class convert_skewed_cells_1(Boolean):
4476
4407
  class convert_skewed_cells(Command):
4477
4408
  """
4478
4409
  'convert_skewed_cells' command.
4479
-
4480
- Parameters
4481
- ----------
4482
- cell_thread_list : List
4483
- Set zones where cells should be converted.
4484
- max_cell_skewness : real
4485
- Set target maximum cell skewness.
4486
- convert_skewed_cells : bool
4487
- 'convert_skewed_cells' child.
4488
4410
  """
4489
4411
  version = '242'
4490
4412
  fluent_name = 'convert-skewed-cells'
@@ -4636,15 +4558,6 @@ class z_scale(Real):
4636
4558
  class scale(Command):
4637
4559
  """
4638
4560
  'scale' command.
4639
-
4640
- Parameters
4641
- ----------
4642
- x_scale : real
4643
- 'x_scale' child.
4644
- y_scale : real
4645
- 'y_scale' child.
4646
- z_scale : real
4647
- 'z_scale' child.
4648
4561
  """
4649
4562
  version = '242'
4650
4563
  fluent_name = 'scale'
@@ -11907,12 +11820,10 @@ class root_radius(Real):
11907
11820
  class basic_info(Group):
11908
11821
  """
11909
11822
  Menu to define the rotor basic informations:
11910
-
11911
11823
  - Number of Blades
11912
11824
  - Rotor Speed ,
11913
11825
  - Tip Radius
11914
11826
  - Root Radius ,
11915
-
11916
11827
  For more details please consult the help option of the corresponding menu or TUI command.
11917
11828
  """
11918
11829
  version = '242'
@@ -11968,10 +11879,8 @@ class disk_origin(Group):
11968
11879
  class terminology(Integer):
11969
11880
  """
11970
11881
  Select Rotor Disk Orientation Terminology:
11971
-
11972
11882
  - Enter 0 if using Rotor Disk Angles
11973
11883
  - Enter 1 if using Rotor Disk Normal
11974
-
11975
11884
  For more details please consult the help option of the corresponding menu or TUI command.
11976
11885
  """
11977
11886
  version = '242'
@@ -12021,12 +11930,10 @@ class disk_bank_angle(Real):
12021
11930
  class disk_orientation(Group):
12022
11931
  """
12023
11932
  Menu to define the rotor disk orientation.
12024
-
12025
11933
  - terminology : the terminology to specify the rotor disk orientation: rotor-disk-angles / rotor-disk-normal,
12026
11934
  - disk-normal-x/yz : rotor-disk-normal components,
12027
11935
  - disk-pitch-angle : ,
12028
11936
  - disk-bank-angle : ,
12029
-
12030
11937
  For more details please consult the help option of the corresponding menu or TUI command.
12031
11938
  """
12032
11939
  version = '242'
@@ -12069,11 +11976,9 @@ class create_floating_disk(Command):
12069
11976
  class disk_id(Group):
12070
11977
  """
12071
11978
  Menu to define the disk face/surface name:
12072
-
12073
11979
  - embedded-face-zone : select embedded-face-zone name,
12074
11980
  - floating-surface-name : select floating-surface-name,
12075
11981
  - create-floating-disk : create a floating-disk for the current rotor,
12076
-
12077
11982
  For more details please consult the help option of the corresponding menu or TUI command.
12078
11983
  """
12079
11984
  version = '242'
@@ -12114,11 +12019,9 @@ class blade_pitch_cyclic_cos(Real):
12114
12019
  class blade_pitch_angles(Group):
12115
12020
  """
12116
12021
  Menu to define the rotor pitch and flapping angles.
12117
-
12118
12022
  - blade-pitch-collective : ,
12119
12023
  - blade-pitch-cyclic-sin : ,
12120
12024
  - blade-pitch-cyclic-cos : ,
12121
-
12122
12025
  For more details please consult the help option of the corresponding menu or TUI command.
12123
12026
  """
12124
12027
  version = '242'
@@ -12158,11 +12061,9 @@ class blade_flapping_cyclic_cos(Real):
12158
12061
  class blade_flap_angles(Group):
12159
12062
  """
12160
12063
  Menu to define the rotor pitch angles.
12161
-
12162
12064
  - blade-flapping-cone : ,
12163
12065
  - blade-flapping-cyclic-sin : ,
12164
12066
  - blade-flapping-cyclic-cos : ,
12165
-
12166
12067
  For more details please consult the help option of the corresponding menu or TUI command.
12167
12068
  """
12168
12069
  version = '242'
@@ -12178,10 +12079,8 @@ class blade_flap_angles(Group):
12178
12079
  class model_tip_loss(Integer):
12179
12080
  """
12180
12081
  Select Tip Loss Model:
12181
-
12182
12082
  - Enter 1 if using Quadratic model
12183
12083
  - Enter 2 if using modified Prandtl model
12184
-
12185
12084
  For more details please consult the help option of the corresponding menu or TUI command.
12186
12085
  """
12187
12086
  version = '242'
@@ -12207,11 +12106,9 @@ class prandtl_tuning_coefficient(Real):
12207
12106
  class tip_loss(Group):
12208
12107
  """
12209
12108
  Menu to define the rotor tip loss model.
12210
-
12211
12109
  - method : define the method to model rotor tip loss, quadratic-tip-loss, prandtl-tip-loss
12212
12110
  - tip-loss-limit : tip-loss-limit,
12213
12111
  - prandtl-tuning-coefficient: prandtl-tuning-coefficient,
12214
-
12215
12112
  For more details please consult the help option of the corresponding menu or TUI command.
12216
12113
  """
12217
12114
  version = '242'
@@ -12315,12 +12212,10 @@ class geometry_2(NamedObject[geometry_2_child], CreatableNamedObjectMixinOld[geo
12315
12212
  class trim_option(Integer):
12316
12213
  """
12317
12214
  Select Trimming Option:
12318
-
12319
12215
  - Enter 0 if no trimming is required
12320
12216
  - Enter 1 if trimming of collective pitch is required
12321
12217
  - Enter 2 if trimming of cyclic pitch angles are required
12322
12218
  - Enter 3 if trimming of both collective and cyclic pitch angles are required
12323
-
12324
12219
  For more details please consult the help option of the corresponding menu or TUI command.
12325
12220
  """
12326
12221
  version = '242'
@@ -12370,14 +12265,12 @@ class roll_moment_coef(Real):
12370
12265
  class trimming(Group):
12371
12266
  """
12372
12267
  Menu to define rotor trimming set-up.
12373
-
12374
12268
  - trim-option : to define collective and cyclic pitches to trim,
12375
12269
  - update-frequency : the number of solver iterations that pitch angle will be updated each time,
12376
12270
  - damping-factor : relaxation factor for pitch angles,
12377
12271
  - thrust-coef : desired thrust coefficient to set pitch for
12378
12272
  - pitch-moment-coef : desired pitch-moment coefficient to set pitch for,
12379
12273
  - roll-moment-coef : desired roll-moment coefficient to set pitch for,
12380
-
12381
12274
  For more details please consult the help option of the corresponding menu or TUI command.
12382
12275
  """
12383
12276
  version = '242'
@@ -14870,11 +14763,6 @@ class file_name_8(Filename, _OutputFile):
14870
14763
  class write_table(Command):
14871
14764
  """
14872
14765
  2D table writting command.
14873
-
14874
- Parameters
14875
- ----------
14876
- file_name : str
14877
- File name in 2D table writting.
14878
14766
  """
14879
14767
  version = '242'
14880
14768
  fluent_name = 'write-table'
@@ -14895,11 +14783,6 @@ class file_name_1_5(Filename, _InputFile):
14895
14783
  class read_table(Command):
14896
14784
  """
14897
14785
  2D table reading command.
14898
-
14899
- Parameters
14900
- ----------
14901
- file_name_1 : str
14902
- File name in 2D table reading.
14903
14786
  """
14904
14787
  version = '242'
14905
14788
  fluent_name = 'read-table'
@@ -14980,11 +14863,6 @@ class file_name_9(Filename, _OutputFile):
14980
14863
  class write_table_1(Command):
14981
14864
  """
14982
14865
  Writing 3D table command.
14983
-
14984
- Parameters
14985
- ----------
14986
- file_name : str
14987
- Set file name in the 3D table-writing command.
14988
14866
  """
14989
14867
  version = '242'
14990
14868
  fluent_name = 'write-table'
@@ -15005,11 +14883,6 @@ class file_name_1_6(Filename, _InputFile):
15005
14883
  class read_table_1(Command):
15006
14884
  """
15007
14885
  3D Reading table command.
15008
-
15009
- Parameters
15010
- ----------
15011
- file_name_1 : str
15012
- Set file name in the 3D table-reading command.
15013
14886
  """
15014
14887
  version = '242'
15015
14888
  fluent_name = 'read-table'
@@ -19652,21 +19525,6 @@ class value_list(RealList):
19652
19525
  class add_rom_parameter(Command):
19653
19526
  """
19654
19527
  Add parameter command.
19655
-
19656
- Parameters
19657
- ----------
19658
- parameter_type : str
19659
- Set parameter type.
19660
- entity_list : List
19661
- Entity list name.
19662
- group_value : real
19663
- Set group value.
19664
- individual_or_group : bool
19665
- Set as-group option.
19666
- individual_value : bool
19667
- Set individual value for different entities in the group.
19668
- value_list : List
19669
- Set values for the different entities in the group.
19670
19528
  """
19671
19529
  version = '242'
19672
19530
  fluent_name = 'add-rom-parameter'
@@ -45526,11 +45384,6 @@ class file_name_13(String):
45526
45384
  class read_input_file(Command):
45527
45385
  """
45528
45386
  'read_input_file' command.
45529
-
45530
- Parameters
45531
- ----------
45532
- file_name : str
45533
- 'file_name' child.
45534
45387
  """
45535
45388
  version = '242'
45536
45389
  fluent_name = 'read-input-file'
@@ -47377,15 +47230,6 @@ class phase_26(String, AllowedValuesMixin):
47377
47230
  class compute(Command):
47378
47231
  """
47379
47232
  'compute' command.
47380
-
47381
- Parameters
47382
- ----------
47383
- from_zone_type : str
47384
- 'from_zone_type' child.
47385
- from_zone_name : str
47386
- 'from_zone_name' child.
47387
- phase : str
47388
- 'phase' child.
47389
47233
  """
47390
47234
  version = '242'
47391
47235
  fluent_name = 'compute'
@@ -47814,11 +47658,6 @@ class names(StringList, AllowedValuesMixin):
47814
47658
  class compute_1(Command):
47815
47659
  """
47816
47660
  'compute' command.
47817
-
47818
- Parameters
47819
- ----------
47820
- names : List
47821
- 'names' child.
47822
47661
  """
47823
47662
  version = '242'
47824
47663
  fluent_name = 'compute'
@@ -48307,11 +48146,6 @@ class face_name_2(String, AllowedValuesMixin):
48307
48146
  class list_face(Command):
48308
48147
  """
48309
48148
  'list_face' command.
48310
-
48311
- Parameters
48312
- ----------
48313
- face_name : str
48314
- 'face_name' child.
48315
48149
  """
48316
48150
  version = '242'
48317
48151
  fluent_name = 'list-face'
@@ -50651,15 +50485,6 @@ class display_profile_point_cloud_data(Command):
50651
50485
  class display_profile_surface(Command):
50652
50486
  """
50653
50487
  Display Profile Surface/field rendering command.
50654
-
50655
- Parameters
50656
- ----------
50657
- profile_name : str
50658
- Profile name.
50659
- field_contour : bool
50660
- Field contour?.
50661
- field_variable : str
50662
- Field variable.
50663
50488
  """
50664
50489
  version = '242'
50665
50490
  fluent_name = 'display-profile-surface'
@@ -50698,15 +50523,6 @@ class profile_point_marker_color(String, AllowedValuesMixin):
50698
50523
  class set_preference_profile_point_cloud_data(Command):
50699
50524
  """
50700
50525
  Profile Point attributes command.
50701
-
50702
- Parameters
50703
- ----------
50704
- profile_point_marker : str
50705
- Profile point marker.
50706
- profile_point_marker_size : real
50707
- Profile point marker size.
50708
- profile_point_marker_color : str
50709
- Profile point marker color.
50710
50526
  """
50711
50527
  version = '242'
50712
50528
  fluent_name = 'set-preference-profile-point-cloud-data'
@@ -50813,11 +50629,6 @@ class list_profiles(Command):
50813
50629
  class list_profile_parameters(Command):
50814
50630
  """
50815
50631
  List-profile-parameters-command.
50816
-
50817
- Parameters
50818
- ----------
50819
- profile_name : str
50820
- Profile name.
50821
50632
  """
50822
50633
  version = '242'
50823
50634
  fluent_name = 'list-profile-parameters'
@@ -50830,11 +50641,6 @@ class list_profile_parameters(Command):
50830
50641
  class list_profile_parameters_with_value(Command):
50831
50642
  """
50832
50643
  List-profile-parameters-with-value-command.
50833
-
50834
- Parameters
50835
- ----------
50836
- profile_name : str
50837
- Profile name.
50838
50644
  """
50839
50645
  version = '242'
50840
50646
  fluent_name = 'list-profile-parameters-with-value'
@@ -50847,11 +50653,6 @@ class list_profile_parameters_with_value(Command):
50847
50653
  class list_profile_fields(Command):
50848
50654
  """
50849
50655
  List-profile-fields-command.
50850
-
50851
- Parameters
50852
- ----------
50853
- profile_name : str
50854
- Profile name.
50855
50656
  """
50856
50657
  version = '242'
50857
50658
  fluent_name = 'list-profile-fields'
@@ -50864,11 +50665,6 @@ class list_profile_fields(Command):
50864
50665
  class delete_4(CommandWithPositionalArgs):
50865
50666
  """
50866
50667
  Delete-profile-command.
50867
-
50868
- Parameters
50869
- ----------
50870
- profile_name : str
50871
- Profile name.
50872
50668
  """
50873
50669
  version = '242'
50874
50670
  fluent_name = 'delete'
@@ -58654,11 +58450,6 @@ class command_name(String):
58654
58450
  class enable_20(Command):
58655
58451
  """
58656
58452
  Enable an execute-command.
58657
-
58658
- Parameters
58659
- ----------
58660
- command_name : str
58661
- 'command_name' child.
58662
58453
  """
58663
58454
  version = '242'
58664
58455
  fluent_name = 'enable'
@@ -58671,11 +58462,6 @@ class enable_20(Command):
58671
58462
  class disable_1(Command):
58672
58463
  """
58673
58464
  Disable an execute-command.
58674
-
58675
- Parameters
58676
- ----------
58677
- command_name : str
58678
- 'command_name' child.
58679
58465
  """
58680
58466
  version = '242'
58681
58467
  fluent_name = 'disable'
@@ -58688,11 +58474,6 @@ class disable_1(Command):
58688
58474
  class copy_3(Command):
58689
58475
  """
58690
58476
  Copy an execute-command.
58691
-
58692
- Parameters
58693
- ----------
58694
- command_name : str
58695
- 'command_name' child.
58696
58477
  """
58697
58478
  version = '242'
58698
58479
  fluent_name = 'copy'
@@ -58705,11 +58486,6 @@ class copy_3(Command):
58705
58486
  class delete_5(CommandWithPositionalArgs):
58706
58487
  """
58707
58488
  Delete an execute-command.
58708
-
58709
- Parameters
58710
- ----------
58711
- command_name : str
58712
- 'command_name' child.
58713
58489
  """
58714
58490
  version = '242'
58715
58491
  fluent_name = 'delete'
@@ -58738,13 +58514,6 @@ class tsv_file_name(Filename, _OutputFile):
58738
58514
  class export_1(Command):
58739
58515
  """
58740
58516
  Export execute-commands to a TSV file.
58741
-
58742
- Parameters
58743
- ----------
58744
- command_name : List
58745
- 'command_name' child.
58746
- tsv_file_name : str
58747
- 'tsv_file_name' child.
58748
58517
  """
58749
58518
  version = '242'
58750
58519
  fluent_name = 'export'
@@ -58766,11 +58535,6 @@ class tsv_file_name_1(Filename, _InputFile):
58766
58535
  class import__1(Command):
58767
58536
  """
58768
58537
  Import execute-commands from a TSV file.
58769
-
58770
- Parameters
58771
- ----------
58772
- tsv_file_name_1 : str
58773
- 'tsv_file_name' child.
58774
58538
  """
58775
58539
  version = '242'
58776
58540
  fluent_name = 'import_'
@@ -59473,13 +59237,6 @@ class filename_2_2(Filename, _OutputFile):
59473
59237
  class export_modifications(Command):
59474
59238
  """
59475
59239
  Export all case modifications to a tsv file.
59476
-
59477
- Parameters
59478
- ----------
59479
- command_list : List
59480
- 'command_list' child.
59481
- filename_2 : str
59482
- 'filename' child.
59483
59240
  """
59484
59241
  version = '242'
59485
59242
  fluent_name = 'export-modifications'
@@ -65984,11 +65741,6 @@ class preview(Command):
65984
65741
  class save_picture(Command):
65985
65742
  """
65986
65743
  'save_picture' command.
65987
-
65988
- Parameters
65989
- ----------
65990
- file_name : str
65991
- 'file_name' child.
65992
65744
  """
65993
65745
  version = '242'
65994
65746
  fluent_name = 'save-picture'
@@ -66321,11 +66073,6 @@ class state_name(String, AllowedValuesMixin):
66321
66073
  class use_active(Command):
66322
66074
  """
66323
66075
  'use_active' command.
66324
-
66325
- Parameters
66326
- ----------
66327
- state_name : str
66328
- 'state_name' child.
66329
66076
  """
66330
66077
  version = '242'
66331
66078
  fluent_name = 'use-active'
@@ -67917,15 +67664,6 @@ class write_format(String, AllowedValuesMixin):
67917
67664
  class write_2(Command):
67918
67665
  """
67919
67666
  'write' command.
67920
-
67921
- Parameters
67922
- ----------
67923
- object_name : str
67924
- 'object_name' child.
67925
- write_format : str
67926
- 'write_format' child.
67927
- file_name : str
67928
- 'file_name' child.
67929
67667
  """
67930
67668
  version = '242'
67931
67669
  fluent_name = 'write'
@@ -69367,11 +69105,6 @@ class set_custom_frames_1(Group):
69367
69105
  class read_animation(Command):
69368
69106
  """
69369
69107
  'read_animation' command.
69370
-
69371
- Parameters
69372
- ----------
69373
- file_name_1 : str
69374
- 'file_name' child.
69375
69108
  """
69376
69109
  version = '242'
69377
69110
  fluent_name = 'read-animation'
@@ -69962,19 +69695,6 @@ class correlation_variable(String, AllowedValuesMixin):
69962
69695
  class plot_sample(Command):
69963
69696
  """
69964
69697
  'plot_sample' command.
69965
-
69966
- Parameters
69967
- ----------
69968
- sample : str
69969
- 'sample' child.
69970
- variable_to_sample : str
69971
- 'variable_to_sample' child.
69972
- weighting_variable : str
69973
- 'weighting_variable' child.
69974
- correlation_variable : str
69975
- 'correlation_variable' child.
69976
- file_name : str
69977
- 'file_name' child.
69978
69698
  """
69979
69699
  version = '242'
69980
69700
  fluent_name = 'plot-sample'
@@ -69991,19 +69711,6 @@ class plot_sample(Command):
69991
69711
  class write_sample(Command):
69992
69712
  """
69993
69713
  'write_sample' command.
69994
-
69995
- Parameters
69996
- ----------
69997
- sample : str
69998
- 'sample' child.
69999
- variable_to_sample : str
70000
- 'variable_to_sample' child.
70001
- weighting_variable : str
70002
- 'weighting_variable' child.
70003
- correlation_variable : str
70004
- 'correlation_variable' child.
70005
- file_name : str
70006
- 'file_name' child.
70007
69714
  """
70008
69715
  version = '242'
70009
69716
  fluent_name = 'write-sample'
@@ -70149,13 +69856,6 @@ class max_val(Real):
70149
69856
  class set_maximum(Command):
70150
69857
  """
70151
69858
  'set_maximum' command.
70152
-
70153
- Parameters
70154
- ----------
70155
- sample_var : str
70156
- 'sample_var' child.
70157
- max_val : real
70158
- 'max_val' child.
70159
69859
  """
70160
69860
  version = '242'
70161
69861
  fluent_name = 'set-maximum'
@@ -70371,11 +70071,6 @@ class compute_sample(Command):
70371
70071
  class delete_sample(Command):
70372
70072
  """
70373
70073
  'delete_sample' command.
70374
-
70375
- Parameters
70376
- ----------
70377
- sample : str
70378
- 'sample' child.
70379
70074
  """
70380
70075
  version = '242'
70381
70076
  fluent_name = 'delete-sample'
@@ -70542,23 +70237,6 @@ class accumulate_rates(Boolean):
70542
70237
  class compute_3(Command):
70543
70238
  """
70544
70239
  'compute' command.
70545
-
70546
- Parameters
70547
- ----------
70548
- injections : List
70549
- 'injections' child.
70550
- boundaries : List
70551
- 'boundaries' child.
70552
- lines : List
70553
- Select surface.
70554
- planes : List
70555
- Select surface.
70556
- op_udf : str
70557
- 'op_udf' child.
70558
- append_sample : bool
70559
- 'append_sample' child.
70560
- accumulate_rates : bool
70561
- 'accumulate_rates' child.
70562
70240
  """
70563
70241
  version = '242'
70564
70242
  fluent_name = 'compute'
@@ -70577,23 +70255,6 @@ class compute_3(Command):
70577
70255
  class start_file_write(Command):
70578
70256
  """
70579
70257
  'start_file_write' command.
70580
-
70581
- Parameters
70582
- ----------
70583
- injections : List
70584
- 'injections' child.
70585
- boundaries : List
70586
- 'boundaries' child.
70587
- lines : List
70588
- Select surface.
70589
- planes : List
70590
- Select surface.
70591
- op_udf : str
70592
- 'op_udf' child.
70593
- append_sample : bool
70594
- 'append_sample' child.
70595
- accumulate_rates : bool
70596
- 'accumulate_rates' child.
70597
70258
  """
70598
70259
  version = '242'
70599
70260
  fluent_name = 'start-file-write'
@@ -73148,21 +72809,6 @@ class append_1(Boolean):
73148
72809
  class vbm_1(Command):
73149
72810
  """
73150
72811
  'vbm' command.
73151
-
73152
- Parameters
73153
- ----------
73154
- output_quantity : str
73155
- 'output_quantity' child.
73156
- rotor_name : str
73157
- 'rotor_name' child.
73158
- scale_output : bool
73159
- 'scale_output' child.
73160
- write_to_file : bool
73161
- 'write_to_file' child.
73162
- file_name : str
73163
- 'file_name' child.
73164
- append : bool
73165
- 'append' child.
73166
72812
  """
73167
72813
  version = '242'
73168
72814
  fluent_name = 'vbm'
@@ -80025,13 +79671,6 @@ class invalidate_case(Boolean):
80025
79671
  class kill_node(Command):
80026
79672
  """
80027
79673
  'kill_node' command.
80028
-
80029
- Parameters
80030
- ----------
80031
- compute_node : int
80032
- 'compute_node' child.
80033
- invalidate_case : bool
80034
- 'invalidate_case' child.
80035
79674
  """
80036
79675
  version = '242'
80037
79676
  fluent_name = 'kill-node'