ansys-fluent-core 0.29.dev3__py3-none-any.whl → 0.30.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansys-fluent-core might be problematic. Click here for more details.

Files changed (144) hide show
  1. ansys/fluent/core/__init__.py +26 -1
  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 +22 -0
  23. ansys/fluent/core/filereader/casereader.py +22 -0
  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 +23 -1
  27. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  28. ansys/fluent/core/generated/datamodel_252/meshing.py +31 -0
  29. ansys/fluent/core/generated/fluent_version_252.py +3 -3
  30. ansys/fluent/core/generated/solver/settings_222.py +0 -72
  31. ansys/fluent/core/generated/solver/settings_222.pyi +0 -307
  32. ansys/fluent/core/generated/solver/settings_231.py +0 -574
  33. ansys/fluent/core/generated/solver/settings_231.pyi +0 -561
  34. ansys/fluent/core/generated/solver/settings_232.py +0 -527
  35. ansys/fluent/core/generated/solver/settings_232.pyi +0 -2803
  36. ansys/fluent/core/generated/solver/settings_241.py +0 -478
  37. ansys/fluent/core/generated/solver/settings_241.pyi +0 -522
  38. ansys/fluent/core/generated/solver/settings_242.py +0 -361
  39. ansys/fluent/core/generated/solver/settings_242.pyi +0 -591
  40. ansys/fluent/core/generated/solver/settings_251.py +0 -399
  41. ansys/fluent/core/generated/solver/settings_251.pyi +0 -629
  42. ansys/fluent/core/generated/solver/settings_252.py +7626 -4108
  43. ansys/fluent/core/generated/solver/settings_252.pyi +6779 -3098
  44. ansys/fluent/core/generated/solver/tui_252.py +489 -157
  45. ansys/fluent/core/get_build_details.py +22 -0
  46. ansys/fluent/core/journaling.py +38 -0
  47. ansys/fluent/core/launcher/__init__.py +22 -0
  48. ansys/fluent/core/launcher/container_launcher.py +63 -55
  49. ansys/fluent/core/launcher/error_handler.py +22 -0
  50. ansys/fluent/core/launcher/fluent_container.py +23 -1
  51. ansys/fluent/core/launcher/launcher.py +51 -3
  52. ansys/fluent/core/launcher/launcher_utils.py +22 -0
  53. ansys/fluent/core/launcher/pim_launcher.py +120 -86
  54. ansys/fluent/core/launcher/process_launch_string.py +22 -0
  55. ansys/fluent/core/launcher/pyfluent_enums.py +22 -0
  56. ansys/fluent/core/launcher/server_info.py +22 -0
  57. ansys/fluent/core/launcher/slurm_launcher.py +23 -1
  58. ansys/fluent/core/launcher/standalone_launcher.py +68 -63
  59. ansys/fluent/core/launcher/watchdog.py +22 -0
  60. ansys/fluent/core/logging.py +22 -0
  61. ansys/fluent/core/meshing/meshing_workflow.py +22 -0
  62. ansys/fluent/core/parametric.py +22 -0
  63. ansys/fluent/core/post_objects/__init__.py +21 -0
  64. ansys/fluent/core/post_objects/check_in_notebook.py +22 -0
  65. ansys/fluent/core/post_objects/meta.py +22 -0
  66. ansys/fluent/core/post_objects/post_helper.py +22 -0
  67. ansys/fluent/core/post_objects/post_object_definitions.py +22 -0
  68. ansys/fluent/core/post_objects/post_objects_container.py +22 -0
  69. ansys/fluent/core/post_objects/singleton_meta.py +22 -0
  70. ansys/fluent/core/post_objects/timing_decorator.py +22 -0
  71. ansys/fluent/core/report.py +77 -0
  72. ansys/fluent/core/rpvars.py +22 -0
  73. ansys/fluent/core/scheduler/__init__.py +22 -0
  74. ansys/fluent/core/scheduler/load_machines.py +22 -0
  75. ansys/fluent/core/scheduler/machine_list.py +22 -0
  76. ansys/fluent/core/search.py +22 -0
  77. ansys/fluent/core/services/__init__.py +22 -0
  78. ansys/fluent/core/services/api_upgrade.py +22 -0
  79. ansys/fluent/core/services/app_utilities.py +38 -0
  80. ansys/fluent/core/services/batch_ops.py +22 -0
  81. ansys/fluent/core/services/datamodel_se.py +22 -2
  82. ansys/fluent/core/services/datamodel_tui.py +22 -0
  83. ansys/fluent/core/services/deprecated_field_data.py +23 -1
  84. ansys/fluent/core/services/events.py +22 -0
  85. ansys/fluent/core/services/field_data.py +46 -15
  86. ansys/fluent/core/services/health_check.py +22 -0
  87. ansys/fluent/core/services/interceptors.py +22 -0
  88. ansys/fluent/core/services/monitor.py +22 -0
  89. ansys/fluent/core/services/reduction.py +22 -0
  90. ansys/fluent/core/services/scheme_eval.py +22 -0
  91. ansys/fluent/core/services/settings.py +22 -0
  92. ansys/fluent/core/services/solution_variables.py +22 -0
  93. ansys/fluent/core/services/streaming.py +22 -0
  94. ansys/fluent/core/services/transcript.py +22 -0
  95. ansys/fluent/core/session.py +32 -0
  96. ansys/fluent/core/session_base_meshing.py +22 -0
  97. ansys/fluent/core/session_meshing.py +22 -0
  98. ansys/fluent/core/session_meshing.pyi +22 -0
  99. ansys/fluent/core/session_pure_meshing.py +22 -0
  100. ansys/fluent/core/session_pure_meshing.pyi +22 -0
  101. ansys/fluent/core/session_shared.py +22 -0
  102. ansys/fluent/core/session_solver.py +22 -0
  103. ansys/fluent/core/session_solver.pyi +22 -0
  104. ansys/fluent/core/session_solver_aero.py +22 -0
  105. ansys/fluent/core/session_solver_icing.py +22 -0
  106. ansys/fluent/core/session_solver_lite.py +22 -0
  107. ansys/fluent/core/solver/__init__.py +22 -0
  108. ansys/fluent/core/solver/error_message.py +22 -0
  109. ansys/fluent/core/solver/flobject.py +22 -0
  110. ansys/fluent/core/solver/flunits.py +22 -0
  111. ansys/fluent/core/solver/function/__init__.py +22 -0
  112. ansys/fluent/core/solver/function/reduction.py +22 -0
  113. ansys/fluent/core/solver/settings_builtin_bases.py +22 -0
  114. ansys/fluent/core/solver/settings_builtin_data.py +22 -0
  115. ansys/fluent/core/solver/settings_external.py +22 -0
  116. ansys/fluent/core/streaming_services/__init__.py +21 -0
  117. ansys/fluent/core/streaming_services/datamodel_event_streaming.py +22 -0
  118. ansys/fluent/core/streaming_services/datamodel_streaming.py +22 -0
  119. ansys/fluent/core/streaming_services/events_streaming.py +22 -0
  120. ansys/fluent/core/streaming_services/field_data_streaming.py +22 -0
  121. ansys/fluent/core/streaming_services/monitor_streaming.py +23 -1
  122. ansys/fluent/core/streaming_services/streaming.py +22 -0
  123. ansys/fluent/core/streaming_services/transcript_streaming.py +22 -0
  124. ansys/fluent/core/systemcoupling.py +22 -0
  125. ansys/fluent/core/utils/__init__.py +22 -0
  126. ansys/fluent/core/utils/data_transfer.py +22 -0
  127. ansys/fluent/core/utils/deprecate.py +24 -1
  128. ansys/fluent/core/utils/dictionary_operations.py +22 -0
  129. ansys/fluent/core/utils/dump_session_data.py +22 -0
  130. ansys/fluent/core/utils/event_loop.py +22 -0
  131. ansys/fluent/core/utils/execution.py +22 -0
  132. ansys/fluent/core/utils/file_transfer_service.py +22 -0
  133. ansys/fluent/core/utils/fix_doc.py +22 -0
  134. ansys/fluent/core/utils/fldoc.py +22 -0
  135. ansys/fluent/core/utils/fluent_version.py +22 -0
  136. ansys/fluent/core/utils/networking.py +22 -0
  137. ansys/fluent/core/utils/setup_for_fluent.py +22 -0
  138. ansys/fluent/core/warnings.py +22 -0
  139. ansys/fluent/core/workflow.py +22 -0
  140. {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev0.dist-info}/LICENSE +8 -8
  141. {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev0.dist-info}/METADATA +9 -7
  142. ansys_fluent_core-0.30.dev0.dist-info/RECORD +219 -0
  143. ansys_fluent_core-0.29.dev3.dist-info/RECORD +0 -218
  144. {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev0.dist-info}/WHEEL +0 -0
@@ -214,22 +214,10 @@ class import_(Group):
214
214
  def read(self, file_type: str, file_name: str):
215
215
  """
216
216
  'read' command.
217
-
218
- Parameters
219
- ----------
220
- file_type : str
221
- 'file_type' child.
222
- file_name : str
223
- 'file_name' child.
224
217
  """
225
218
  def chemkin_report_each_line(self, report_each_line: bool):
226
219
  """
227
220
  'chemkin_report_each_line' command.
228
-
229
- Parameters
230
- ----------
231
- report_each_line : bool
232
- Enable/disable reporting after reading each line.
233
221
  """
234
222
  def import_fmu(self, file_name: str):
235
223
  """
@@ -331,92 +319,26 @@ class file(Group):
331
319
  def read(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
332
320
  """
333
321
  'read' command.
334
-
335
- Parameters
336
- ----------
337
- file_type : str
338
- 'file_type' child.
339
- file_name : str
340
- 'file_name' child.
341
- pdf_file_name : str
342
- 'pdf_file_name' child.
343
- lightweight_setup : bool
344
- 'lightweight_setup' child.
345
322
  """
346
323
  def read_case(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
347
324
  """
348
325
  'read_case' command.
349
-
350
- Parameters
351
- ----------
352
- file_type : str
353
- 'file_type' child.
354
- file_name : str
355
- 'file_name' child.
356
- pdf_file_name : str
357
- 'pdf_file_name' child.
358
- lightweight_setup : bool
359
- 'lightweight_setup' child.
360
326
  """
361
327
  def read_case_data(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
362
328
  """
363
329
  'read_case_data' command.
364
-
365
- Parameters
366
- ----------
367
- file_type : str
368
- 'file_type' child.
369
- file_name : str
370
- 'file_name' child.
371
- pdf_file_name : str
372
- 'pdf_file_name' child.
373
- lightweight_setup : bool
374
- 'lightweight_setup' child.
375
330
  """
376
331
  def read_case_setting(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
377
332
  """
378
333
  'read_case_setting' command.
379
-
380
- Parameters
381
- ----------
382
- file_type : str
383
- 'file_type' child.
384
- file_name : str
385
- 'file_name' child.
386
- pdf_file_name : str
387
- 'pdf_file_name' child.
388
- lightweight_setup : bool
389
- 'lightweight_setup' child.
390
334
  """
391
335
  def read_data(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
392
336
  """
393
337
  'read_data' command.
394
-
395
- Parameters
396
- ----------
397
- file_type : str
398
- 'file_type' child.
399
- file_name : str
400
- 'file_name' child.
401
- pdf_file_name : str
402
- 'pdf_file_name' child.
403
- lightweight_setup : bool
404
- 'lightweight_setup' child.
405
338
  """
406
339
  def read_mesh(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
407
340
  """
408
341
  'read_mesh' command.
409
-
410
- Parameters
411
- ----------
412
- file_type : str
413
- 'file_type' child.
414
- file_name : str
415
- 'file_name' child.
416
- pdf_file_name : str
417
- 'pdf_file_name' child.
418
- lightweight_setup : bool
419
- 'lightweight_setup' child.
420
342
  """
421
343
  def read_journal(self, file_name_list: list[str]):
422
344
  """
@@ -443,22 +365,10 @@ class file(Group):
443
365
  def replace_mesh(self, file_name: str):
444
366
  """
445
367
  'replace_mesh' command.
446
-
447
- Parameters
448
- ----------
449
- file_name : str
450
- 'file_name' child.
451
368
  """
452
369
  def write(self, file_type: str, file_name: str):
453
370
  """
454
371
  'write' command.
455
-
456
- Parameters
457
- ----------
458
- file_type : str
459
- 'file_type' child.
460
- file_name : str
461
- 'file_name' child.
462
372
  """
463
373
  return_type: str
464
374
  class refinement_criteria(String):
@@ -839,15 +749,6 @@ class polyhedra(Group):
839
749
  def convert_skewed_cells(self, cell_thread_list: list[str], max_cell_skewness: float | str, convert_skewed_cells: bool):
840
750
  """
841
751
  'convert_skewed_cells' command.
842
-
843
- Parameters
844
- ----------
845
- cell_thread_list : List
846
- Set zones where cells should be converted.
847
- max_cell_skewness : real
848
- Set target maximum cell skewness.
849
- convert_skewed_cells : bool
850
- 'convert_skewed_cells' child.
851
752
  """
852
753
  return_type: str
853
754
  class mesh(Group):
@@ -881,11 +782,6 @@ class mesh(Group):
881
782
  def mesh_info(self, print_level: int):
882
783
  """
883
784
  'mesh_info' command.
884
-
885
- Parameters
886
- ----------
887
- print_level : int
888
- Print zone information size.
889
785
  """
890
786
  def quality(self):
891
787
  """
@@ -907,15 +803,6 @@ class mesh(Group):
907
803
  def scale(self, x_scale: float | str, y_scale: float | str, z_scale: float | str):
908
804
  """
909
805
  'scale' command.
910
-
911
- Parameters
912
- ----------
913
- x_scale : real
914
- 'x_scale' child.
915
- y_scale : real
916
- 'y_scale' child.
917
- z_scale : real
918
- 'z_scale' child.
919
806
  """
920
807
  def size_info(self):
921
808
  """
@@ -982,13 +869,6 @@ class web_server(Group):
982
869
  def start(self, address: str, port: int):
983
870
  """
984
871
  'start' command.
985
-
986
- Parameters
987
- ----------
988
- address : str
989
- 'address' child.
990
- port : int
991
- 'port' child.
992
872
  """
993
873
  def stop(self):
994
874
  """
@@ -3503,19 +3383,6 @@ class statistics(Group):
3503
3383
  def statistics_controls(self, method: int, samp_time_period: float | str, samp_time_steps: int, avg_time_period: float | str, avg_time_steps: int):
3504
3384
  """
3505
3385
  'statistics_controls' command.
3506
-
3507
- Parameters
3508
- ----------
3509
- method : int
3510
- 'method' child.
3511
- samp_time_period : real
3512
- 'samp_time_period' child.
3513
- samp_time_steps : int
3514
- 'samp_time_steps' child.
3515
- avg_time_period : real
3516
- 'avg_time_period' child.
3517
- avg_time_steps : int
3518
- 'avg_time_steps' child.
3519
3386
  """
3520
3387
  return_type: str
3521
3388
  class sampling_iterations(Integer):
@@ -8573,22 +8440,10 @@ class cell_zone_conditions(Group):
8573
8440
  def change_type(self, zone_list: list[str], new_type: str):
8574
8441
  """
8575
8442
  'change_type' command.
8576
-
8577
- Parameters
8578
- ----------
8579
- zone_list : List
8580
- 'zone_list' child.
8581
- new_type : str
8582
- 'new_type' child.
8583
8443
  """
8584
8444
  def activate_cell_zone(self, cell_zone_list: list[str]):
8585
8445
  """
8586
8446
  'activate_cell_zone' command.
8587
-
8588
- Parameters
8589
- ----------
8590
- cell_zone_list : List
8591
- 'cell_zone_list' child.
8592
8447
  """
8593
8448
  def mrf_to_sliding_mesh(self, zone_id: int):
8594
8449
  """
@@ -17837,13 +17692,6 @@ class boundary_conditions(Group):
17837
17692
  def change_type(self, zone_list: list[str], new_type: str):
17838
17693
  """
17839
17694
  'change_type' command.
17840
-
17841
- Parameters
17842
- ----------
17843
- zone_list : List
17844
- 'zone_list' child.
17845
- new_type : str
17846
- 'new_type' child.
17847
17695
  """
17848
17696
  def slit_face_zone(self, zone_id: int):
17849
17697
  """
@@ -17955,15 +17803,6 @@ class reference_values(Group):
17955
17803
  def compute(self, from_zone_type: str, from_zone_name: str, phase: str):
17956
17804
  """
17957
17805
  'compute' command.
17958
-
17959
- Parameters
17960
- ----------
17961
- from_zone_type : str
17962
- 'from_zone_type' child.
17963
- from_zone_name : str
17964
- 'from_zone_name' child.
17965
- phase : str
17966
- 'phase' child.
17967
17806
  """
17968
17807
  def list_val(self):
17969
17808
  """
@@ -21070,22 +20909,10 @@ class report_definitions(Group):
21070
20909
  def compute(self, report_defs: list[str]):
21071
20910
  """
21072
20911
  'compute' command.
21073
-
21074
- Parameters
21075
- ----------
21076
- report_defs : List
21077
- 'report_defs' child.
21078
20912
  """
21079
20913
  def copy(self, copy_from: str, copy_to: str):
21080
20914
  """
21081
20915
  'copy' command.
21082
-
21083
- Parameters
21084
- ----------
21085
- copy_from : str
21086
- 'copy_from' child.
21087
- copy_to : str
21088
- 'copy_to' child.
21089
20916
  """
21090
20917
  def list(self):
21091
20918
  """
@@ -22076,15 +21903,6 @@ class fmg_initialization(Group):
22076
21903
  def customize_fmg_initialization(self, multi_level_grid: int, residual_reduction_level: list[float | str], cycle_count: list[float | str]):
22077
21904
  """
22078
21905
  'customize_fmg_initialization' command.
22079
-
22080
- Parameters
22081
- ----------
22082
- multi_level_grid : int
22083
- 'multi_level_grid' child.
22084
- residual_reduction_level : List
22085
- 'residual_reduction_level' child.
22086
- cycle_count : List
22087
- 'cycle_count' child.
22088
21906
  """
22089
21907
  return_type: str
22090
21908
  class initialization_type(String, AllowedValuesMixin):
@@ -22119,11 +21937,6 @@ class initialization(Group):
22119
21937
  def initialize(self, init_type: str):
22120
21938
  """
22121
21939
  'initialize' command.
22122
-
22123
- Parameters
22124
- ----------
22125
- init_type : str
22126
- 'init_type' child.
22127
21940
  """
22128
21941
  def dpm_reset(self):
22129
21942
  """
@@ -22140,13 +21953,6 @@ class initialization(Group):
22140
21953
  def init_acoustics_options(self, set_ramping_length: bool, time_step_count: int):
22141
21954
  """
22142
21955
  'init_acoustics_options' command.
22143
-
22144
- Parameters
22145
- ----------
22146
- set_ramping_length : bool
22147
- Enable/Disable ramping length and initialize acoustics.
22148
- time_step_count : int
22149
- Set number of timesteps for ramping of sources.
22150
21956
  """
22151
21957
  def list_defaults(self):
22152
21958
  """
@@ -22177,58 +21983,26 @@ class execute_commands(Group):
22177
21983
  def enable(self, command_name: str):
22178
21984
  """
22179
21985
  Enable an execute-command.
22180
-
22181
- Parameters
22182
- ----------
22183
- command_name : str
22184
- 'command_name' child.
22185
21986
  """
22186
21987
  def disable(self, command_name: str):
22187
21988
  """
22188
21989
  Disable an execute-command.
22189
-
22190
- Parameters
22191
- ----------
22192
- command_name : str
22193
- 'command_name' child.
22194
21990
  """
22195
21991
  def copy(self, command_name: str):
22196
21992
  """
22197
21993
  Copy an execute-command.
22198
-
22199
- Parameters
22200
- ----------
22201
- command_name : str
22202
- 'command_name' child.
22203
21994
  """
22204
21995
  def delete(self, command_name: str):
22205
21996
  """
22206
21997
  Delete an execute-command.
22207
-
22208
- Parameters
22209
- ----------
22210
- command_name : str
22211
- 'command_name' child.
22212
21998
  """
22213
21999
  def export(self, command_name: list[str], tsv_file_name: str):
22214
22000
  """
22215
22001
  Export execute-commands to a TSV file.
22216
-
22217
- Parameters
22218
- ----------
22219
- command_name : List
22220
- 'command_name' child.
22221
- tsv_file_name : str
22222
- 'tsv_file_name' child.
22223
22002
  """
22224
22003
  def import_(self, tsv_file_name: str):
22225
22004
  """
22226
22005
  Import execute-commands from a TSV file.
22227
-
22228
- Parameters
22229
- ----------
22230
- tsv_file_name : str
22231
- 'tsv_file_name' child.
22232
22006
  """
22233
22007
  return_type: str
22234
22008
  class animate_on(String, AllowedValuesMixin):
@@ -22465,13 +22239,6 @@ class calculation_activity(Group):
22465
22239
  def export_modifications(self, command_list: list[str], filename: str):
22466
22240
  """
22467
22241
  Export all case modifications to a tsv file.
22468
-
22469
- Parameters
22470
- ----------
22471
- command_list : List
22472
- 'command_list' child.
22473
- filename : str
22474
- 'filename' child.
22475
22242
  """
22476
22243
  def continue_strategy_execution(self):
22477
22244
  """
@@ -22655,11 +22422,6 @@ class data_sampling(Group):
22655
22422
  def setup_unsteady_statistics(self, udf_cf_names: list[str]):
22656
22423
  """
22657
22424
  'setup_unsteady_statistics' command.
22658
-
22659
- Parameters
22660
- ----------
22661
- udf_cf_names : List
22662
- 'udf_cf_names' child.
22663
22425
  """
22664
22426
  return_type: str
22665
22427
  class specified_time_step(Boolean):
@@ -25161,30 +24923,10 @@ class lights(Group):
25161
24923
  def set_ambient_color(self, rgb_vector: tuple[float | str, float | str, float | str):
25162
24924
  """
25163
24925
  'set_ambient_color' command.
25164
-
25165
- Parameters
25166
- ----------
25167
- rgb_vector : Tuple
25168
- 'rgb_vector' child.
25169
24926
  """
25170
24927
  def set_light(self, light_number: int, light_on: bool, rgb_vector: tuple[float | str, float | str, float | str, use_view_factor: bool, change_light_direction: bool, direction_vector: tuple[float | str, float | str, float | str):
25171
24928
  """
25172
24929
  'set_light' command.
25173
-
25174
- Parameters
25175
- ----------
25176
- light_number : int
25177
- 'light_number' child.
25178
- light_on : bool
25179
- 'light_on' child.
25180
- rgb_vector : Tuple
25181
- 'rgb_vector' child.
25182
- use_view_factor : bool
25183
- 'use_view_factor' child.
25184
- change_light_direction : bool
25185
- 'change_light_direction' child.
25186
- direction_vector : Tuple
25187
- 'direction_vector' child.
25188
24930
  """
25189
24931
  return_type: str
25190
24932
  class color_mode(String, AllowedValuesMixin):
@@ -25290,11 +25032,6 @@ class picture(Group):
25290
25032
  def save_picture(self, file_name: str):
25291
25033
  """
25292
25034
  'save_picture' command.
25293
-
25294
- Parameters
25295
- ----------
25296
- file_name : str
25297
- 'file_name' child.
25298
25035
  """
25299
25036
  def list_color_mode(self):
25300
25037
  """
@@ -25504,11 +25241,6 @@ class display_states(NamedObject[display_states_child]):
25504
25241
  def use_active(self, state_name: str):
25505
25242
  """
25506
25243
  'use_active' command.
25507
-
25508
- Parameters
25509
- ----------
25510
- state_name : str
25511
- 'state_name' child.
25512
25244
  """
25513
25245
  def restore_state(self, state_name: str):
25514
25246
  """
@@ -26647,11 +26379,6 @@ class simulation_reports(Group):
26647
26379
  def write_simulation_report_template_file(self, file_name_path: str):
26648
26380
  """
26649
26381
  'write_simulation_report_template_file' command.
26650
-
26651
- Parameters
26652
- ----------
26653
- file_name_path : str
26654
- 'file_name_path' child.
26655
26382
  """
26656
26383
  def read_simulation_report_template_file(self, file_name_path: str):
26657
26384
  """
@@ -26755,40 +26482,10 @@ class plot_write_sample(Group):
26755
26482
  def plot_sample(self, loaded_samples: str, variable_to_sampled: str, weighting_var: str, correlation_var: str, read_fn: str, overwrite: bool):
26756
26483
  """
26757
26484
  'plot_sample' command.
26758
-
26759
- Parameters
26760
- ----------
26761
- loaded_samples : str
26762
- 'loaded_samples' child.
26763
- variable_to_sampled : str
26764
- 'variable_to_sampled' child.
26765
- weighting_var : str
26766
- 'weighting_var' child.
26767
- correlation_var : str
26768
- 'correlation_var' child.
26769
- read_fn : str
26770
- 'read_fn' child.
26771
- overwrite : bool
26772
- 'overwrite' child.
26773
26485
  """
26774
26486
  def write_sample(self, loaded_samples: str, variable_to_sampled: str, weighting_var: str, correlation_var: str, read_fn: str, overwrite: bool):
26775
26487
  """
26776
26488
  'write_sample' command.
26777
-
26778
- Parameters
26779
- ----------
26780
- loaded_samples : str
26781
- 'loaded_samples' child.
26782
- variable_to_sampled : str
26783
- 'variable_to_sampled' child.
26784
- weighting_var : str
26785
- 'weighting_var' child.
26786
- correlation_var : str
26787
- 'correlation_var' child.
26788
- read_fn : str
26789
- 'read_fn' child.
26790
- overwrite : bool
26791
- 'overwrite' child.
26792
26489
  """
26793
26490
  return_type: str
26794
26491
  class use_weighting(Boolean):
@@ -26845,13 +26542,6 @@ class setup_reduction(Group):
26845
26542
  def set_maximum(self, sample_var: str, max_val: float | str):
26846
26543
  """
26847
26544
  'set_maximum' command.
26848
-
26849
- Parameters
26850
- ----------
26851
- sample_var : str
26852
- 'sample_var' child.
26853
- max_val : real
26854
- 'max_val' child.
26855
26545
  """
26856
26546
  def use_logarithmic(self, sample_var: str, enable_log: bool):
26857
26547
  """
@@ -26969,11 +26659,6 @@ class histogram(Group):
26969
26659
  def delete_sample(self, sample: str):
26970
26660
  """
26971
26661
  'delete_sample' command.
26972
-
26973
- Parameters
26974
- ----------
26975
- sample : str
26976
- 'sample' child.
26977
26662
  """
26978
26663
  def list_samples(self):
26979
26664
  """
@@ -27010,23 +26695,6 @@ class sample_trajectories(Group):
27010
26695
  def sample(self, injections: list[str], boundaries: list[str], lines: list[str], planes: list[str], op_udf: str, append_sample: bool, accumulate_rates: bool):
27011
26696
  """
27012
26697
  'sample' command.
27013
-
27014
- Parameters
27015
- ----------
27016
- injections : List
27017
- 'injections' child.
27018
- boundaries : List
27019
- 'boundaries' child.
27020
- lines : List
27021
- 'lines' child.
27022
- planes : List
27023
- 'planes' child.
27024
- op_udf : str
27025
- 'op_udf' child.
27026
- append_sample : bool
27027
- 'append_sample' child.
27028
- accumulate_rates : bool
27029
- 'accumulate_rates' child.
27030
26698
  """
27031
26699
  return_type: str
27032
26700
  class discrete_phase_1(Group):
@@ -27252,29 +26920,14 @@ class flow(Group):
27252
26920
  def species_mass_flow(self, domain_val: str):
27253
26921
  """
27254
26922
  'species_mass_flow' command.
27255
-
27256
- Parameters
27257
- ----------
27258
- domain_val : str
27259
- 'domain_val' child.
27260
26923
  """
27261
26924
  def element_mass_flow(self, domain_val: str):
27262
26925
  """
27263
26926
  'element_mass_flow' command.
27264
-
27265
- Parameters
27266
- ----------
27267
- domain_val : str
27268
- 'domain_val' child.
27269
26927
  """
27270
26928
  def uds_flow(self, domain_val: str):
27271
26929
  """
27272
26930
  'uds_flow' command.
27273
-
27274
- Parameters
27275
- ----------
27276
- domain_val : str
27277
- 'domain_val' child.
27278
26931
  """
27279
26932
  return_type: str
27280
26933
  class modified_setting_options(Group):
@@ -27330,29 +26983,6 @@ class population_balance(Group):
27330
26983
  def number_density(self, report_type: str, disc_output_type: str, qmom_output_type: str, smm_output_type: str, surface_list: list[str], volume_list: list[str], num_dens_func: str, dia_upper_limit: float | str, file_name: str, overwrite: bool):
27331
26984
  """
27332
26985
  'number_density' command.
27333
-
27334
- Parameters
27335
- ----------
27336
- report_type : str
27337
- 'report_type' child.
27338
- disc_output_type : str
27339
- 'disc_output_type' child.
27340
- qmom_output_type : str
27341
- 'qmom_output_type' child.
27342
- smm_output_type : str
27343
- 'smm_output_type' child.
27344
- surface_list : List
27345
- 'surface_list' child.
27346
- volume_list : List
27347
- 'volume_list' child.
27348
- num_dens_func : str
27349
- 'num_dens_func' child.
27350
- dia_upper_limit : real
27351
- 'dia_upper_limit' child.
27352
- file_name : str
27353
- 'file_name' child.
27354
- overwrite : bool
27355
- 'overwrite' child.
27356
26986
  """
27357
26987
  return_type: str
27358
26988
  class heat_exchange(Group):
@@ -27363,117 +26993,22 @@ class heat_exchange(Group):
27363
26993
  def computed_heat_rejection(self, heat_exchanger: str, fluid_zone: str, boundary_zone: str, report_type: str, write_to_file: bool, file_name: str, append_file: bool, overwrite: bool):
27364
26994
  """
27365
26995
  'computed_heat_rejection' command.
27366
-
27367
- Parameters
27368
- ----------
27369
- heat_exchanger : str
27370
- 'heat_exchanger' child.
27371
- fluid_zone : str
27372
- 'fluid_zone' child.
27373
- boundary_zone : str
27374
- 'boundary_zone' child.
27375
- report_type : str
27376
- 'report_type' child.
27377
- write_to_file : bool
27378
- 'write_to_file' child.
27379
- file_name : str
27380
- 'file_name' child.
27381
- append_file : bool
27382
- 'append_file' child.
27383
- overwrite : bool
27384
- 'overwrite' child.
27385
26996
  """
27386
26997
  def inlet_temperature(self, heat_exchanger: str, fluid_zone: str, boundary_zone: str, report_type: str, write_to_file: bool, file_name: str, append_file: bool, overwrite: bool):
27387
26998
  """
27388
26999
  'inlet_temperature' command.
27389
-
27390
- Parameters
27391
- ----------
27392
- heat_exchanger : str
27393
- 'heat_exchanger' child.
27394
- fluid_zone : str
27395
- 'fluid_zone' child.
27396
- boundary_zone : str
27397
- 'boundary_zone' child.
27398
- report_type : str
27399
- 'report_type' child.
27400
- write_to_file : bool
27401
- 'write_to_file' child.
27402
- file_name : str
27403
- 'file_name' child.
27404
- append_file : bool
27405
- 'append_file' child.
27406
- overwrite : bool
27407
- 'overwrite' child.
27408
27000
  """
27409
27001
  def outlet_temperature(self, heat_exchanger: str, fluid_zone: str, boundary_zone: str, report_type: str, write_to_file: bool, file_name: str, append_file: bool, overwrite: bool):
27410
27002
  """
27411
27003
  'outlet_temperature' command.
27412
-
27413
- Parameters
27414
- ----------
27415
- heat_exchanger : str
27416
- 'heat_exchanger' child.
27417
- fluid_zone : str
27418
- 'fluid_zone' child.
27419
- boundary_zone : str
27420
- 'boundary_zone' child.
27421
- report_type : str
27422
- 'report_type' child.
27423
- write_to_file : bool
27424
- 'write_to_file' child.
27425
- file_name : str
27426
- 'file_name' child.
27427
- append_file : bool
27428
- 'append_file' child.
27429
- overwrite : bool
27430
- 'overwrite' child.
27431
27004
  """
27432
27005
  def mass_flow_rate(self, heat_exchanger: str, fluid_zone: str, boundary_zone: str, report_type: str, write_to_file: bool, file_name: str, append_file: bool, overwrite: bool):
27433
27006
  """
27434
27007
  'mass_flow_rate' command.
27435
-
27436
- Parameters
27437
- ----------
27438
- heat_exchanger : str
27439
- 'heat_exchanger' child.
27440
- fluid_zone : str
27441
- 'fluid_zone' child.
27442
- boundary_zone : str
27443
- 'boundary_zone' child.
27444
- report_type : str
27445
- 'report_type' child.
27446
- write_to_file : bool
27447
- 'write_to_file' child.
27448
- file_name : str
27449
- 'file_name' child.
27450
- append_file : bool
27451
- 'append_file' child.
27452
- overwrite : bool
27453
- 'overwrite' child.
27454
27008
  """
27455
27009
  def specific_heat(self, heat_exchanger: str, fluid_zone: str, boundary_zone: str, report_type: str, write_to_file: bool, file_name: str, append_file: bool, overwrite: bool):
27456
27010
  """
27457
27011
  'specific_heat' command.
27458
-
27459
- Parameters
27460
- ----------
27461
- heat_exchanger : str
27462
- 'heat_exchanger' child.
27463
- fluid_zone : str
27464
- 'fluid_zone' child.
27465
- boundary_zone : str
27466
- 'boundary_zone' child.
27467
- report_type : str
27468
- 'report_type' child.
27469
- write_to_file : bool
27470
- 'write_to_file' child.
27471
- file_name : str
27472
- 'file_name' child.
27473
- append_file : bool
27474
- 'append_file' child.
27475
- overwrite : bool
27476
- 'overwrite' child.
27477
27012
  """
27478
27013
  return_type: str
27479
27014
  class system(Group):
@@ -27576,35 +27111,6 @@ class report(Group):
27576
27111
  def forces(self, options: str, domain_val: str, all_wall_zones: bool, wall_thread_list: list[str], direction_vector: tuple[float | str, float | str, float | str, momentum_center: tuple[float | str, float | str, float | str, momentum_axis: tuple[float | str, float | str, float | str, pressure_coordinate: str, coord_val: float | str, write_to_file: bool, file_name: str, append_data: bool, overwrite: bool):
27577
27112
  """
27578
27113
  'forces' command.
27579
-
27580
- Parameters
27581
- ----------
27582
- options : str
27583
- 'options' child.
27584
- domain_val : str
27585
- 'domain_val' child.
27586
- all_wall_zones : bool
27587
- Select all wall zones available.
27588
- wall_thread_list : List
27589
- 'wall_thread_list' child.
27590
- direction_vector : Tuple
27591
- 'direction_vector' child.
27592
- momentum_center : Tuple
27593
- 'momentum_center' child.
27594
- momentum_axis : Tuple
27595
- 'momentum_axis' child.
27596
- pressure_coordinate : str
27597
- 'pressure_coordinate' child.
27598
- coord_val : real
27599
- 'coord_val' child.
27600
- write_to_file : bool
27601
- 'write_to_file' child.
27602
- file_name : str
27603
- 'file_name' child.
27604
- append_data : bool
27605
- 'append_data' child.
27606
- overwrite : bool
27607
- 'overwrite' child.
27608
27114
  """
27609
27115
  def mphase_summary(self, verbosity_option: str):
27610
27116
  """
@@ -27657,70 +27163,10 @@ class report(Group):
27657
27163
  def surface_integrals(self, report_type: str, surface_id: list[str], add_custome_vector: bool, cust_vec_name: str, domain_cx: str, cell_cx: str, domain_cy: str, cell_cy: str, domain_cz: str, cell_cz: str, cust_vec_func: str, domain_report: str, cell_report: str, current_domain: str, write_to_file: bool, file_name: str, append_data: bool, overwrite: bool):
27658
27164
  """
27659
27165
  'surface_integrals' command.
27660
-
27661
- Parameters
27662
- ----------
27663
- report_type : str
27664
- 'report_type' child.
27665
- surface_id : List
27666
- 'surface_id' child.
27667
- add_custome_vector : bool
27668
- 'add_custome_vector' child.
27669
- cust_vec_name : str
27670
- 'cust_vec_name' child.
27671
- domain_cx : str
27672
- 'domain_cx' child.
27673
- cell_cx : str
27674
- 'cell_cx' child.
27675
- domain_cy : str
27676
- 'domain_cy' child.
27677
- cell_cy : str
27678
- 'cell_cy' child.
27679
- domain_cz : str
27680
- 'domain_cz' child.
27681
- cell_cz : str
27682
- 'cell_cz' child.
27683
- cust_vec_func : str
27684
- 'cust_vec_func' child.
27685
- domain_report : str
27686
- 'domain_report' child.
27687
- cell_report : str
27688
- 'cell_report' child.
27689
- current_domain : str
27690
- 'current_domain' child.
27691
- write_to_file : bool
27692
- 'write_to_file' child.
27693
- file_name : str
27694
- 'file_name' child.
27695
- append_data : bool
27696
- 'append_data' child.
27697
- overwrite : bool
27698
- 'overwrite' child.
27699
27166
  """
27700
27167
  def volume_integrals(self, report_type: str, thread_id_list: list[str], domain: str, cell_function: str, current_domain: str, write_to_file: bool, file_name: str, append_data: bool, overwrite: bool):
27701
27168
  """
27702
27169
  'volume_integrals' command.
27703
-
27704
- Parameters
27705
- ----------
27706
- report_type : str
27707
- 'report_type' child.
27708
- thread_id_list : List
27709
- 'thread_id_list' child.
27710
- domain : str
27711
- 'domain' child.
27712
- cell_function : str
27713
- 'cell_function' child.
27714
- current_domain : str
27715
- 'current_domain' child.
27716
- write_to_file : bool
27717
- 'write_to_file' child.
27718
- file_name : str
27719
- 'file_name' child.
27720
- append_data : bool
27721
- 'append_data' child.
27722
- overwrite : bool
27723
- 'overwrite' child.
27724
27170
  """
27725
27171
  return_type: str
27726
27172
  class results(Group):
@@ -28549,13 +27995,6 @@ class network_1(Group):
28549
27995
  def kill_node(self, compute_node: int, invalidate_case: bool):
28550
27996
  """
28551
27997
  'kill_node' command.
28552
-
28553
- Parameters
28554
- ----------
28555
- compute_node : int
28556
- 'compute_node' child.
28557
- invalidate_case : bool
28558
- 'invalidate_case' child.
28559
27998
  """
28560
27999
  def spawn_node(self, hostname: str, username: str):
28561
28000
  """