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
@@ -1930,17 +1930,6 @@ class lightweight_setup(Boolean):
1930
1930
  class read(Command):
1931
1931
  """
1932
1932
  'read' command.
1933
-
1934
- Parameters
1935
- ----------
1936
- file_type : str
1937
- 'file_type' child.
1938
- file_name_1 : str
1939
- 'file_name' child.
1940
- pdf_file_name : str
1941
- 'pdf_file_name' child.
1942
- lightweight_setup : bool
1943
- 'lightweight_setup' child.
1944
1933
  """
1945
1934
  version = '251'
1946
1935
  fluent_name = 'read'
@@ -1956,13 +1945,6 @@ class read(Command):
1956
1945
  class read_case(Command):
1957
1946
  """
1958
1947
  'read_case' command.
1959
-
1960
- Parameters
1961
- ----------
1962
- file_name_1 : str
1963
- 'file_name' child.
1964
- pdf_file_name : str
1965
- 'pdf_file_name' child.
1966
1948
  """
1967
1949
  version = '251'
1968
1950
  fluent_name = 'read-case'
@@ -1976,13 +1958,6 @@ class read_case(Command):
1976
1958
  class read_case_data(Command):
1977
1959
  """
1978
1960
  'read_case_data' command.
1979
-
1980
- Parameters
1981
- ----------
1982
- file_name_1 : str
1983
- 'file_name' child.
1984
- pdf_file_name : str
1985
- 'pdf_file_name' child.
1986
1961
  """
1987
1962
  version = '251'
1988
1963
  fluent_name = 'read-case-data'
@@ -1996,13 +1971,6 @@ class read_case_data(Command):
1996
1971
  class read_case_setting(Command):
1997
1972
  """
1998
1973
  'read_case_setting' command.
1999
-
2000
- Parameters
2001
- ----------
2002
- file_name_1 : str
2003
- 'file_name' child.
2004
- pdf_file_name : str
2005
- 'pdf_file_name' child.
2006
1974
  """
2007
1975
  version = '251'
2008
1976
  fluent_name = 'read-case-setting'
@@ -2016,11 +1984,6 @@ class read_case_setting(Command):
2016
1984
  class read_data(Command):
2017
1985
  """
2018
1986
  'read_data' command.
2019
-
2020
- Parameters
2021
- ----------
2022
- file_name_1 : str
2023
- 'file_name' child.
2024
1987
  """
2025
1988
  version = '251'
2026
1989
  fluent_name = 'read-data'
@@ -2033,11 +1996,6 @@ class read_data(Command):
2033
1996
  class read_mesh(Command):
2034
1997
  """
2035
1998
  'read_mesh' command.
2036
-
2037
- Parameters
2038
- ----------
2039
- file_name_1 : str
2040
- 'file_name' child.
2041
1999
  """
2042
2000
  version = '251'
2043
2001
  fluent_name = 'read-mesh'
@@ -2161,11 +2119,6 @@ class stop_journal(Command):
2161
2119
  class replace_mesh(Command):
2162
2120
  """
2163
2121
  'replace_mesh' command.
2164
-
2165
- Parameters
2166
- ----------
2167
- file_name_1 : str
2168
- 'file_name' child.
2169
2122
  """
2170
2123
  version = '251'
2171
2124
  fluent_name = 'replace-mesh'
@@ -2178,13 +2131,6 @@ class replace_mesh(Command):
2178
2131
  class write(Command):
2179
2132
  """
2180
2133
  'write' command.
2181
-
2182
- Parameters
2183
- ----------
2184
- file_type : str
2185
- 'file_type' child.
2186
- file_name : str
2187
- 'file_name' child.
2188
2134
  """
2189
2135
  version = '251'
2190
2136
  fluent_name = 'write'
@@ -2198,11 +2144,6 @@ class write(Command):
2198
2144
  class write_case(Command):
2199
2145
  """
2200
2146
  'write_case' command.
2201
-
2202
- Parameters
2203
- ----------
2204
- file_name : str
2205
- 'file_name' child.
2206
2147
  """
2207
2148
  version = '251'
2208
2149
  fluent_name = 'write-case'
@@ -2215,11 +2156,6 @@ class write_case(Command):
2215
2156
  class write_data(Command):
2216
2157
  """
2217
2158
  'write_data' command.
2218
-
2219
- Parameters
2220
- ----------
2221
- file_name : str
2222
- 'file_name' child.
2223
2159
  """
2224
2160
  version = '251'
2225
2161
  fluent_name = 'write-data'
@@ -2232,11 +2168,6 @@ class write_data(Command):
2232
2168
  class write_case_data(Command):
2233
2169
  """
2234
2170
  'write_case_data' command.
2235
-
2236
- Parameters
2237
- ----------
2238
- file_name : str
2239
- 'file_name' child.
2240
2171
  """
2241
2172
  version = '251'
2242
2173
  fluent_name = 'write-case-data'
@@ -4801,15 +4732,6 @@ class convert_skewed_cells_1(Boolean):
4801
4732
  class convert_skewed_cells(Command):
4802
4733
  """
4803
4734
  'convert_skewed_cells' command.
4804
-
4805
- Parameters
4806
- ----------
4807
- cell_thread_list : List
4808
- Set zones where cells should be converted.
4809
- max_cell_skewness : real
4810
- Set target maximum cell skewness.
4811
- convert_skewed_cells : bool
4812
- 'convert_skewed_cells' child.
4813
4735
  """
4814
4736
  version = '251'
4815
4737
  fluent_name = 'convert-skewed-cells'
@@ -4961,15 +4883,6 @@ class z_scale(Real):
4961
4883
  class scale(Command):
4962
4884
  """
4963
4885
  'scale' command.
4964
-
4965
- Parameters
4966
- ----------
4967
- x_scale : real
4968
- 'x_scale' child.
4969
- y_scale : real
4970
- 'y_scale' child.
4971
- z_scale : real
4972
- 'z_scale' child.
4973
4886
  """
4974
4887
  version = '251'
4975
4888
  fluent_name = 'scale'
@@ -14294,12 +14207,10 @@ class root_radius(Real):
14294
14207
  class basic_info(Group):
14295
14208
  """
14296
14209
  Menu to define the rotor basic informations:
14297
-
14298
14210
  - Number of Blades
14299
14211
  - Rotor Speed ,
14300
14212
  - Tip Radius
14301
14213
  - Root Radius ,
14302
-
14303
14214
  For more details please consult the help option of the corresponding menu or TUI command.
14304
14215
  """
14305
14216
  version = '251'
@@ -14355,10 +14266,8 @@ class disk_origin(Group):
14355
14266
  class terminology(Integer):
14356
14267
  """
14357
14268
  Select Rotor Disk Orientation Terminology:
14358
-
14359
14269
  - Enter 0 if using Rotor Disk Angles
14360
14270
  - Enter 1 if using Rotor Disk Normal
14361
-
14362
14271
  For more details please consult the help option of the corresponding menu or TUI command.
14363
14272
  """
14364
14273
  version = '251'
@@ -14408,12 +14317,10 @@ class disk_normal_z(Real):
14408
14317
  class disk_orientation(Group):
14409
14318
  """
14410
14319
  Menu to define the rotor disk orientation.
14411
-
14412
14320
  - terminology : the terminology to specify the rotor disk orientation: rotor-disk-angles / rotor-disk-normal,
14413
14321
  - disk-normal-x/y/z : rotor-disk-normal components,
14414
14322
  - disk-pitch-angle : ,
14415
14323
  - disk-bank-angle : ,
14416
-
14417
14324
  For more details please consult the help option of the corresponding menu or TUI command.
14418
14325
  """
14419
14326
  version = '251'
@@ -14448,11 +14355,9 @@ class floating_surface_name(String, AllowedValuesMixin):
14448
14355
  class disk_id(Group):
14449
14356
  """
14450
14357
  Menu to define the disk face/surface name:
14451
-
14452
14358
  - embedded-face-zone : select embedded-face-zone name,
14453
14359
  - floating-surface-name : select floating-surface-name,
14454
14360
  - create-floating-disk : create a floating-disk for the current rotor,
14455
-
14456
14361
  For more details please consult the help option of the corresponding menu or TUI command.
14457
14362
  """
14458
14363
  version = '251'
@@ -14491,11 +14396,9 @@ class blade_pitch_cyclic_cos(Real):
14491
14396
  class blade_pitch_angles(Group):
14492
14397
  """
14493
14398
  Menu to define the rotor pitch angles:
14494
-
14495
14399
  - blade-pitch-collective
14496
14400
  - blade-pitch-cyclic-sin
14497
14401
  - blade-pitch-cyclic-cos
14498
-
14499
14402
  For more details please consult the help option of the corresponding menu or TUI command.
14500
14403
  """
14501
14404
  version = '251'
@@ -14535,11 +14438,9 @@ class blade_flapping_cyclic_cos(Real):
14535
14438
  class blade_flap_angles(Group):
14536
14439
  """
14537
14440
  Menu to define the rotor flapping angles:
14538
-
14539
14441
  - blade-flapping-cone
14540
14442
  - blade-flapping-cyclic-sin
14541
14443
  - blade-flapping-cyclic-cos
14542
-
14543
14444
  For more details please consult the help option of the corresponding menu or TUI command.
14544
14445
  """
14545
14446
  version = '251'
@@ -14555,10 +14456,8 @@ class blade_flap_angles(Group):
14555
14456
  class model_tip_loss(Integer):
14556
14457
  """
14557
14458
  Select Tip Loss Model:
14558
-
14559
14459
  - Enter 1 if using Quadratic model
14560
14460
  - Enter 2 if using modified Prandtl model
14561
-
14562
14461
  For more details please consult the help option of the corresponding menu or TUI command.
14563
14462
  """
14564
14463
  version = '251'
@@ -14584,11 +14483,9 @@ class prandtl_tuning_coefficient(Real):
14584
14483
  class tip_loss(Group):
14585
14484
  """
14586
14485
  Menu to define the rotor tip loss model:
14587
-
14588
14486
  - model-tip-loss : define the method to model rotor tip loss, quadratic-tip-loss, prandtl-tip-loss
14589
14487
  - tip-loss-limit : tip-loss-limit
14590
14488
  - prandtl-tuning-coefficient: prandtl-tuning-coefficient,
14591
-
14592
14489
  For more details please consult the help option of the corresponding menu or TUI command.
14593
14490
  """
14594
14491
  version = '251'
@@ -14713,12 +14610,10 @@ class geometry_2_child(Group):
14713
14610
  class geometry_2(NamedObject[geometry_2_child], CreatableNamedObjectMixin[geometry_2_child]):
14714
14611
  """
14715
14612
  Main menu to define a blade section in the current rotor:
14716
-
14717
14613
  - delete : delete a section
14718
14614
  - edit : edit/setup a section
14719
14615
  - add : create a new section
14720
14616
  - rename : rename a section
14721
-
14722
14617
  For more details please consult the help option of the corresponding menu or TUI command.
14723
14618
  """
14724
14619
  version = '251'
@@ -14739,12 +14634,10 @@ class geometry_2(NamedObject[geometry_2_child], CreatableNamedObjectMixin[geomet
14739
14634
  class trim_option(Integer):
14740
14635
  """
14741
14636
  Select Trimming Option:
14742
-
14743
14637
  - Enter 0 if no trimming is required
14744
14638
  - Enter 1 if trimming of collective pitch is required
14745
14639
  - Enter 2 if trimming of cyclic pitch angles are required
14746
14640
  - Enter 3 if trimming of both collective and cyclic pitch angles are required
14747
-
14748
14641
  For more details please consult the help option of the corresponding menu or TUI command.
14749
14642
  """
14750
14643
  version = '251'
@@ -17600,11 +17493,6 @@ class file_name_8(Filename, _OutputFile):
17600
17493
  class write_table(Command):
17601
17494
  """
17602
17495
  2D table writting command.
17603
-
17604
- Parameters
17605
- ----------
17606
- file_name : str
17607
- File name in 2D table writting.
17608
17496
  """
17609
17497
  version = '251'
17610
17498
  fluent_name = 'write-table'
@@ -17625,11 +17513,6 @@ class file_name_1_5(Filename, _InputFile):
17625
17513
  class read_table(Command):
17626
17514
  """
17627
17515
  2D table reading command.
17628
-
17629
- Parameters
17630
- ----------
17631
- file_name_1 : str
17632
- File name in 2D table reading.
17633
17516
  """
17634
17517
  version = '251'
17635
17518
  fluent_name = 'read-table'
@@ -17706,11 +17589,6 @@ class file_name_9(Filename, _OutputFile):
17706
17589
  class write_table_1(Command):
17707
17590
  """
17708
17591
  Writing 3D table command.
17709
-
17710
- Parameters
17711
- ----------
17712
- file_name : str
17713
- Set file name in the 3D table-writing command.
17714
17592
  """
17715
17593
  version = '251'
17716
17594
  fluent_name = 'write-table'
@@ -17731,11 +17609,6 @@ class file_name_1_6(Filename, _InputFile):
17731
17609
  class read_table_1(Command):
17732
17610
  """
17733
17611
  3D Reading table command.
17734
-
17735
- Parameters
17736
- ----------
17737
- file_name_1 : str
17738
- Set file name in the 3D table-reading command.
17739
17612
  """
17740
17613
  version = '251'
17741
17614
  fluent_name = 'read-table'
@@ -22313,21 +22186,6 @@ class value_list(RealList):
22313
22186
  class add_rom_parameter(Command):
22314
22187
  """
22315
22188
  Add parameter command.
22316
-
22317
- Parameters
22318
- ----------
22319
- parameter_type : str
22320
- Set parameter type.
22321
- entity_list : List
22322
- Entity list name.
22323
- group_value : real
22324
- Set group value.
22325
- individual_or_group : bool
22326
- Set as-group option.
22327
- individual_value : bool
22328
- Set individual value for different entities in the group.
22329
- value_list : List
22330
- Set values for the different entities in the group.
22331
22189
  """
22332
22190
  version = '251'
22333
22191
  fluent_name = 'add-rom-parameter'
@@ -49385,11 +49243,6 @@ class file_name_13(String):
49385
49243
  class read_input_file(Command):
49386
49244
  """
49387
49245
  'read_input_file' command.
49388
-
49389
- Parameters
49390
- ----------
49391
- file_name : str
49392
- 'file_name' child.
49393
49246
  """
49394
49247
  version = '251'
49395
49248
  fluent_name = 'read-input-file'
@@ -52048,15 +51901,6 @@ class phase_26(String, AllowedValuesMixin):
52048
51901
  class compute(Command):
52049
51902
  """
52050
51903
  'compute' command.
52051
-
52052
- Parameters
52053
- ----------
52054
- from_zone_type : str
52055
- 'from_zone_type' child.
52056
- from_zone_name : str
52057
- 'from_zone_name' child.
52058
- phase : str
52059
- 'phase' child.
52060
51904
  """
52061
51905
  version = '251'
52062
51906
  fluent_name = 'compute'
@@ -52495,11 +52339,6 @@ class names(StringList, AllowedValuesMixin):
52495
52339
  class compute_1(Command):
52496
52340
  """
52497
52341
  'compute' command.
52498
-
52499
- Parameters
52500
- ----------
52501
- names : List
52502
- 'names' child.
52503
52342
  """
52504
52343
  version = '251'
52505
52344
  fluent_name = 'compute'
@@ -53017,11 +52856,6 @@ class face_name_2(String, AllowedValuesMixin):
53017
52856
  class list_face(Command):
53018
52857
  """
53019
52858
  'list_face' command.
53020
-
53021
- Parameters
53022
- ----------
53023
- face_name : str
53024
- 'face_name' child.
53025
52859
  """
53026
52860
  version = '251'
53027
52861
  fluent_name = 'list-face'
@@ -56225,15 +56059,6 @@ class display_profile_point_cloud_data(Command):
56225
56059
  class display_profile_surface(Command):
56226
56060
  """
56227
56061
  Display Profile Surface/field rendering command.
56228
-
56229
- Parameters
56230
- ----------
56231
- profile_name : str
56232
- Profile name.
56233
- field_contour : bool
56234
- Field contour?.
56235
- field_variable : str
56236
- Field variable.
56237
56062
  """
56238
56063
  version = '251'
56239
56064
  fluent_name = 'display-profile-surface'
@@ -56272,15 +56097,6 @@ class profile_point_marker_color(String, AllowedValuesMixin):
56272
56097
  class set_preference_profile_point_cloud_data(Command):
56273
56098
  """
56274
56099
  Profile Point attributes command.
56275
-
56276
- Parameters
56277
- ----------
56278
- profile_point_marker : str
56279
- Profile point marker.
56280
- profile_point_marker_size : real
56281
- Profile point marker size.
56282
- profile_point_marker_color : str
56283
- Profile point marker color.
56284
56100
  """
56285
56101
  version = '251'
56286
56102
  fluent_name = 'set-preference-profile-point-cloud-data'
@@ -56401,11 +56217,6 @@ class list_profiles(Command):
56401
56217
  class list_profile_parameters(Command):
56402
56218
  """
56403
56219
  List-profile-parameters-command.
56404
-
56405
- Parameters
56406
- ----------
56407
- profile_name : str
56408
- Profile name.
56409
56220
  """
56410
56221
  version = '251'
56411
56222
  fluent_name = 'list-profile-parameters'
@@ -56418,11 +56229,6 @@ class list_profile_parameters(Command):
56418
56229
  class list_profile_parameters_with_value(Command):
56419
56230
  """
56420
56231
  List-profile-parameters-with-value-command.
56421
-
56422
- Parameters
56423
- ----------
56424
- profile_name : str
56425
- Profile name.
56426
56232
  """
56427
56233
  version = '251'
56428
56234
  fluent_name = 'list-profile-parameters-with-value'
@@ -56435,11 +56241,6 @@ class list_profile_parameters_with_value(Command):
56435
56241
  class list_profile_fields(Command):
56436
56242
  """
56437
56243
  List-profile-fields-command.
56438
-
56439
- Parameters
56440
- ----------
56441
- profile_name : str
56442
- Profile name.
56443
56244
  """
56444
56245
  version = '251'
56445
56246
  fluent_name = 'list-profile-fields'
@@ -56452,11 +56253,6 @@ class list_profile_fields(Command):
56452
56253
  class delete_4(CommandWithPositionalArgs):
56453
56254
  """
56454
56255
  Delete-profile-command.
56455
-
56456
- Parameters
56457
- ----------
56458
- profile_name : str
56459
- Profile name.
56460
56256
  """
56461
56257
  version = '251'
56462
56258
  fluent_name = 'delete'
@@ -65124,11 +64920,6 @@ class command_name(String):
65124
64920
  class enable_24(Command):
65125
64921
  """
65126
64922
  Enable an execute-command.
65127
-
65128
- Parameters
65129
- ----------
65130
- command_name : str
65131
- 'command_name' child.
65132
64923
  """
65133
64924
  version = '251'
65134
64925
  fluent_name = 'enable'
@@ -65141,11 +64932,6 @@ class enable_24(Command):
65141
64932
  class disable_1(Command):
65142
64933
  """
65143
64934
  Disable an execute-command.
65144
-
65145
- Parameters
65146
- ----------
65147
- command_name : str
65148
- 'command_name' child.
65149
64935
  """
65150
64936
  version = '251'
65151
64937
  fluent_name = 'disable'
@@ -65158,11 +64944,6 @@ class disable_1(Command):
65158
64944
  class copy_3(Command):
65159
64945
  """
65160
64946
  Copy an execute-command.
65161
-
65162
- Parameters
65163
- ----------
65164
- command_name : str
65165
- 'command_name' child.
65166
64947
  """
65167
64948
  version = '251'
65168
64949
  fluent_name = 'copy'
@@ -65175,11 +64956,6 @@ class copy_3(Command):
65175
64956
  class delete_5(CommandWithPositionalArgs):
65176
64957
  """
65177
64958
  Delete an execute-command.
65178
-
65179
- Parameters
65180
- ----------
65181
- command_name : str
65182
- 'command_name' child.
65183
64959
  """
65184
64960
  version = '251'
65185
64961
  fluent_name = 'delete'
@@ -65208,13 +64984,6 @@ class tsv_file_name(Filename, _OutputFile):
65208
64984
  class export_1(Command):
65209
64985
  """
65210
64986
  Export execute-commands to a TSV file.
65211
-
65212
- Parameters
65213
- ----------
65214
- command_name : List
65215
- 'command_name' child.
65216
- tsv_file_name : str
65217
- 'tsv_file_name' child.
65218
64987
  """
65219
64988
  version = '251'
65220
64989
  fluent_name = 'export'
@@ -65236,11 +65005,6 @@ class tsv_file_name_1(Filename, _InputFile):
65236
65005
  class import__1(Command):
65237
65006
  """
65238
65007
  Import execute-commands from a TSV file.
65239
-
65240
- Parameters
65241
- ----------
65242
- tsv_file_name_1 : str
65243
- 'tsv_file_name' child.
65244
65008
  """
65245
65009
  version = '251'
65246
65010
  fluent_name = 'import_'
@@ -65902,27 +65666,6 @@ class mod_command(String):
65902
65666
  class add_edit_modification(Command):
65903
65667
  """
65904
65668
  Define a single case modification.
65905
-
65906
- Parameters
65907
- ----------
65908
- mod_name : str
65909
- Name of Modification.
65910
- mod_exists : bool
65911
- Modification Exists?.
65912
- mod_active : bool
65913
- Modification is Active?.
65914
- mod_execution_option : str
65915
- Execution Option for Transient.
65916
- mod_iterations : int
65917
- Modification Iterations.
65918
- mod_timesteps : int
65919
- Modification Time Steps.
65920
- mod_flowtime : real
65921
- Modification Flow Time.
65922
- mod_python : bool
65923
- Modification is Python?.
65924
- mod_command : str
65925
- Modification.
65926
65669
  """
65927
65670
  version = '251'
65928
65671
  fluent_name = 'add-edit-modification'
@@ -66052,13 +65795,6 @@ class filename_1_4(Filename, _OutputFile):
66052
65795
  class export_modifications(Command):
66053
65796
  """
66054
65797
  Export all case modifications to a tsv file.
66055
-
66056
- Parameters
66057
- ----------
66058
- command_list : List
66059
- 'command_list' child.
66060
- filename_1 : str
66061
- 'filename' child.
66062
65798
  """
66063
65799
  version = '251'
66064
65800
  fluent_name = 'export-modifications'
@@ -73884,11 +73620,6 @@ class preview(Command):
73884
73620
  class save_picture(Command):
73885
73621
  """
73886
73622
  'save_picture' command.
73887
-
73888
- Parameters
73889
- ----------
73890
- file_name : str
73891
- 'file_name' child.
73892
73623
  """
73893
73624
  version = '251'
73894
73625
  fluent_name = 'save-picture'
@@ -74222,11 +73953,6 @@ class state_name(String, AllowedValuesMixin):
74222
73953
  class use_active(Command):
74223
73954
  """
74224
73955
  'use_active' command.
74225
-
74226
- Parameters
74227
- ----------
74228
- state_name : str
74229
- 'state_name' child.
74230
73956
  """
74231
73957
  version = '251'
74232
73958
  fluent_name = 'use-active'
@@ -75848,15 +75574,6 @@ class write_format(String, AllowedValuesMixin):
75848
75574
  class write_3(Command):
75849
75575
  """
75850
75576
  'write' command.
75851
-
75852
- Parameters
75853
- ----------
75854
- object_name : str
75855
- 'object_name' child.
75856
- write_format : str
75857
- 'write_format' child.
75858
- file_name : str
75859
- 'file_name' child.
75860
75577
  """
75861
75578
  version = '251'
75862
75579
  fluent_name = 'write'
@@ -77567,11 +77284,6 @@ class set_custom_frames_1(Group):
77567
77284
  class read_animation(Command):
77568
77285
  """
77569
77286
  'read_animation' command.
77570
-
77571
- Parameters
77572
- ----------
77573
- file_name_1 : str
77574
- 'file_name' child.
77575
77287
  """
77576
77288
  version = '251'
77577
77289
  fluent_name = 'read-animation'
@@ -78162,19 +77874,6 @@ class correlation_variable(String, AllowedValuesMixin):
78162
77874
  class plot_sample(Command):
78163
77875
  """
78164
77876
  'plot_sample' command.
78165
-
78166
- Parameters
78167
- ----------
78168
- sample : str
78169
- 'sample' child.
78170
- variable_to_sample : str
78171
- 'variable_to_sample' child.
78172
- weighting_variable : str
78173
- 'weighting_variable' child.
78174
- correlation_variable : str
78175
- 'correlation_variable' child.
78176
- file_name : str
78177
- 'file_name' child.
78178
77877
  """
78179
77878
  version = '251'
78180
77879
  fluent_name = 'plot-sample'
@@ -78191,19 +77890,6 @@ class plot_sample(Command):
78191
77890
  class write_sample(Command):
78192
77891
  """
78193
77892
  'write_sample' command.
78194
-
78195
- Parameters
78196
- ----------
78197
- sample : str
78198
- 'sample' child.
78199
- variable_to_sample : str
78200
- 'variable_to_sample' child.
78201
- weighting_variable : str
78202
- 'weighting_variable' child.
78203
- correlation_variable : str
78204
- 'correlation_variable' child.
78205
- file_name : str
78206
- 'file_name' child.
78207
77893
  """
78208
77894
  version = '251'
78209
77895
  fluent_name = 'write-sample'
@@ -78349,13 +78035,6 @@ class max_val(Real):
78349
78035
  class set_maximum(Command):
78350
78036
  """
78351
78037
  'set_maximum' command.
78352
-
78353
- Parameters
78354
- ----------
78355
- sample_var : str
78356
- 'sample_var' child.
78357
- max_val : real
78358
- 'max_val' child.
78359
78038
  """
78360
78039
  version = '251'
78361
78040
  fluent_name = 'set-maximum'
@@ -78571,11 +78250,6 @@ class compute_sample(Command):
78571
78250
  class delete_sample(Command):
78572
78251
  """
78573
78252
  'delete_sample' command.
78574
-
78575
- Parameters
78576
- ----------
78577
- sample : str
78578
- 'sample' child.
78579
78253
  """
78580
78254
  version = '251'
78581
78255
  fluent_name = 'delete-sample'
@@ -78742,23 +78416,6 @@ class accumulate_rates(Boolean):
78742
78416
  class compute_9(Command):
78743
78417
  """
78744
78418
  'compute' command.
78745
-
78746
- Parameters
78747
- ----------
78748
- injections : List
78749
- 'injections' child.
78750
- boundaries : List
78751
- 'boundaries' child.
78752
- lines : List
78753
- Select surface.
78754
- planes : List
78755
- Select surface.
78756
- op_udf : str
78757
- 'op_udf' child.
78758
- append_sample : bool
78759
- 'append_sample' child.
78760
- accumulate_rates : bool
78761
- 'accumulate_rates' child.
78762
78419
  """
78763
78420
  version = '251'
78764
78421
  fluent_name = 'compute'
@@ -78777,23 +78434,6 @@ class compute_9(Command):
78777
78434
  class start_file_write(Command):
78778
78435
  """
78779
78436
  'start_file_write' command.
78780
-
78781
- Parameters
78782
- ----------
78783
- injections : List
78784
- 'injections' child.
78785
- boundaries : List
78786
- 'boundaries' child.
78787
- lines : List
78788
- Select surface.
78789
- planes : List
78790
- Select surface.
78791
- op_udf : str
78792
- 'op_udf' child.
78793
- append_sample : bool
78794
- 'append_sample' child.
78795
- accumulate_rates : bool
78796
- 'accumulate_rates' child.
78797
78437
  """
78798
78438
  version = '251'
78799
78439
  fluent_name = 'start-file-write'
@@ -78983,23 +78623,6 @@ class reset_dpm_summaries(Boolean):
78983
78623
  class set_per_injection_zone_summaries(Command):
78984
78624
  """
78985
78625
  Enable per-injection per-zone DPM summary reports.
78986
-
78987
- Parameters
78988
- ----------
78989
- enable : bool
78990
- Specify whether to enable or disable the per-injection per-zone DPM summary reports.
78991
- Enabling them will mean that more memory will be used to hold the data being collected.
78992
- For unsteady tracking, if some data for DPM summary reports have already been collected,
78993
- they will continue to be shown just specific to the zone, not any injection, while
78994
- data collected in the future will be shown both zone- and injection-specific.
78995
- Disabling requires that both the current DPM summary report data are reset
78996
- and all particle parcels currently in the domain are cleared out(!).
78997
- reset_dpm_summaries : bool
78998
- Disabling the per-injection per-zone DPM summary reports requires that
78999
- both the current DPM summary report data are reset and all particle
79000
- parcels currently in the domain are cleared out(!).
79001
- Set this command argument / check this checkbox to
79002
- confirm that you want to proceed as described.
79003
78626
  """
79004
78627
  version = '251'
79005
78628
  fluent_name = 'set-per-injection-zone-summaries'
@@ -82480,21 +82103,6 @@ class append_1(Boolean):
82480
82103
  class vbm_1(Command):
82481
82104
  """
82482
82105
  'vbm' command.
82483
-
82484
- Parameters
82485
- ----------
82486
- output_quantity : str
82487
- 'output_quantity' child.
82488
- rotor_name : str
82489
- 'rotor_name' child.
82490
- scale_output : bool
82491
- 'scale_output' child.
82492
- write_to_file : bool
82493
- 'write_to_file' child.
82494
- file_name : str
82495
- 'file_name' child.
82496
- append : bool
82497
- 'append' child.
82498
82106
  """
82499
82107
  version = '251'
82500
82108
  fluent_name = 'vbm'
@@ -89839,13 +89447,6 @@ class invalidate_case(Boolean):
89839
89447
  class kill_node(Command):
89840
89448
  """
89841
89449
  'kill_node' command.
89842
-
89843
- Parameters
89844
- ----------
89845
- compute_node : int
89846
- 'compute_node' child.
89847
- invalidate_case : bool
89848
- 'invalidate_case' child.
89849
89450
  """
89850
89451
  version = '251'
89851
89452
  fluent_name = 'kill-node'