ansys-fluent-core 0.34.dev0__py3-none-any.whl → 0.35.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 (108) hide show
  1. ansys/fluent/core/__init__.py +48 -84
  2. ansys/fluent/core/codegen/allapigen.py +2 -2
  3. ansys/fluent/core/codegen/builtin_settingsgen.py +41 -13
  4. ansys/fluent/core/codegen/datamodelgen.py +3 -1
  5. ansys/fluent/core/codegen/print_fluent_version.py +2 -2
  6. ansys/fluent/core/codegen/settingsgen.py +18 -6
  7. ansys/fluent/core/codegen/tuigen.py +6 -5
  8. ansys/fluent/core/data_model_cache.py +2 -2
  9. ansys/fluent/core/docker/docker_compose.py +11 -9
  10. ansys/fluent/core/docker/utils.py +35 -0
  11. ansys/fluent/core/examples/downloads.py +8 -11
  12. ansys/fluent/core/exceptions.py +13 -1
  13. ansys/fluent/core/field_data_interfaces.py +239 -38
  14. ansys/fluent/core/file_session.py +167 -61
  15. ansys/fluent/core/fluent_connection.py +41 -26
  16. ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
  17. ansys/fluent/core/generated/datamodel_231/flicing.py +40 -40
  18. ansys/fluent/core/generated/datamodel_231/meshing.py +231 -231
  19. ansys/fluent/core/generated/datamodel_232/flicing.py +50 -50
  20. ansys/fluent/core/generated/datamodel_232/meshing.py +189 -189
  21. ansys/fluent/core/generated/datamodel_241/flicing.py +30 -30
  22. ansys/fluent/core/generated/datamodel_241/meshing.py +290 -290
  23. ansys/fluent/core/generated/datamodel_242/flicing.py +50 -50
  24. ansys/fluent/core/generated/datamodel_242/meshing.py +331 -331
  25. ansys/fluent/core/generated/datamodel_242/part_management.py +6 -6
  26. ansys/fluent/core/generated/datamodel_251/flicing.py +65 -65
  27. ansys/fluent/core/generated/datamodel_251/meshing.py +300 -300
  28. ansys/fluent/core/generated/datamodel_251/part_management.py +6 -6
  29. ansys/fluent/core/generated/datamodel_252/flicing.py +25 -25
  30. ansys/fluent/core/generated/datamodel_252/meshing.py +382 -382
  31. ansys/fluent/core/generated/datamodel_252/part_management.py +10 -10
  32. ansys/fluent/core/generated/datamodel_261/flicing.py +45 -45
  33. ansys/fluent/core/generated/datamodel_261/meshing.py +454 -435
  34. ansys/fluent/core/generated/datamodel_261/part_management.py +5 -5
  35. ansys/fluent/core/generated/datamodel_261/preferences.py +7 -0
  36. ansys/fluent/core/generated/fluent_version_252.py +1 -1
  37. ansys/fluent/core/generated/fluent_version_261.py +3 -3
  38. ansys/fluent/core/generated/meshing/tui_261.py +54 -3
  39. ansys/fluent/core/generated/solver/settings_231.py +1 -0
  40. ansys/fluent/core/generated/solver/settings_231.pyi +3025 -1
  41. ansys/fluent/core/generated/solver/settings_232.py +1 -0
  42. ansys/fluent/core/generated/solver/settings_232.pyi +3425 -1
  43. ansys/fluent/core/generated/solver/settings_241.py +1 -0
  44. ansys/fluent/core/generated/solver/settings_241.pyi +4423 -1
  45. ansys/fluent/core/generated/solver/settings_242.py +1 -0
  46. ansys/fluent/core/generated/solver/settings_242.pyi +5474 -1
  47. ansys/fluent/core/generated/solver/settings_251.py +11 -0
  48. ansys/fluent/core/generated/solver/settings_251.pyi +6006 -1
  49. ansys/fluent/core/generated/solver/settings_252.py +11 -1
  50. ansys/fluent/core/generated/solver/settings_252.pyi +6782 -2
  51. ansys/fluent/core/generated/solver/settings_261.py +5592 -2740
  52. ansys/fluent/core/generated/solver/settings_261.pyi +10335 -1994
  53. ansys/fluent/core/generated/solver/settings_builtin.py +560 -38
  54. ansys/fluent/core/generated/solver/settings_builtin.pyi +24 -18
  55. ansys/fluent/core/generated/solver/tui_261.py +409 -285
  56. ansys/fluent/core/launcher/container_launcher.py +25 -6
  57. ansys/fluent/core/launcher/error_handler.py +1 -1
  58. ansys/fluent/core/launcher/fluent_container.py +97 -45
  59. ansys/fluent/core/launcher/launch_options.py +5 -4
  60. ansys/fluent/core/launcher/launcher.py +18 -2
  61. ansys/fluent/core/launcher/launcher_utils.py +63 -15
  62. ansys/fluent/core/launcher/pim_launcher.py +17 -3
  63. ansys/fluent/core/launcher/process_launch_string.py +3 -2
  64. ansys/fluent/core/launcher/server_info.py +7 -3
  65. ansys/fluent/core/launcher/slurm_launcher.py +4 -2
  66. ansys/fluent/core/launcher/standalone_launcher.py +6 -3
  67. ansys/fluent/core/launcher/watchdog.py +6 -6
  68. ansys/fluent/core/launcher/watchdog_exec +1 -1
  69. ansys/fluent/core/logger.py +3 -1
  70. ansys/fluent/core/module_config.py +358 -0
  71. ansys/fluent/core/pyfluent_warnings.py +9 -3
  72. ansys/fluent/core/report.py +2 -2
  73. ansys/fluent/core/search.py +34 -13
  74. ansys/fluent/core/services/__init__.py +2 -2
  75. ansys/fluent/core/services/api_upgrade.py +3 -2
  76. ansys/fluent/core/services/app_utilities.py +39 -0
  77. ansys/fluent/core/services/datamodel_se.py +4 -2
  78. ansys/fluent/core/services/deprecated_field_data.py +4 -4
  79. ansys/fluent/core/services/field_data.py +185 -49
  80. ansys/fluent/core/services/health_check.py +3 -1
  81. ansys/fluent/core/services/interceptors.py +8 -6
  82. ansys/fluent/core/services/reduction.py +16 -5
  83. ansys/fluent/core/services/settings.py +1 -0
  84. ansys/fluent/core/session.py +47 -4
  85. ansys/fluent/core/session_pure_meshing.py +6 -6
  86. ansys/fluent/core/session_pure_meshing.pyi +1 -0
  87. ansys/fluent/core/session_shared.py +4 -4
  88. ansys/fluent/core/session_solver.py +41 -10
  89. ansys/fluent/core/session_solver.pyi +1 -0
  90. ansys/fluent/core/session_utilities.py +7 -0
  91. ansys/fluent/core/solver/error_message.py +2 -2
  92. ansys/fluent/core/solver/flobject.py +192 -123
  93. ansys/fluent/core/solver/function/reduction.py +37 -9
  94. ansys/fluent/core/solver/settings_builtin_bases.py +3 -3
  95. ansys/fluent/core/solver/settings_builtin_data.py +7 -17
  96. ansys/fluent/core/streaming_services/datamodel_event_streaming.py +3 -2
  97. ansys/fluent/core/streaming_services/datamodel_streaming.py +3 -1
  98. ansys/fluent/core/streaming_services/events_streaming.py +2 -18
  99. ansys/fluent/core/system_coupling.py +3 -1
  100. ansys/fluent/core/utils/__init__.py +0 -7
  101. ansys/fluent/core/utils/data_transfer.py +3 -3
  102. ansys/fluent/core/utils/file_transfer_service.py +24 -15
  103. ansys/fluent/core/utils/fluent_version.py +4 -6
  104. ansys/fluent/core/utils/networking.py +21 -11
  105. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/METADATA +10 -11
  106. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/RECORD +108 -106
  107. {ansys_fluent_core-0.34.dev0.dist-info → ansys_fluent_core-0.35.dev0.dist-info}/WHEEL +1 -1
  108. {ansys_fluent_core-0.34.dev0.dist-info/licenses → ansys_fluent_core-0.35.dev0.dist-info}/LICENSE +0 -0
@@ -1293,7 +1293,7 @@ class main_menu(TUIMenu):
1293
1293
  self.periodic_repeats_no_flipping = self.__class__.periodic_repeats_no_flipping(service, version, mode, path + ["periodic_repeats_no_flipping"])
1294
1294
  self.remove_left_handed_interface_faces = self.__class__.remove_left_handed_interface_faces(service, version, mode, path + ["remove_left_handed_interface_faces"])
1295
1295
  self.transfer_motion_across_interfaces = self.__class__.transfer_motion_across_interfaces(service, version, mode, path + ["transfer_motion_across_interfaces"])
1296
- self.turbo_create = self.__class__.turbo_create(service, version, mode, path + ["turbo_create"])
1296
+ self.turbo_interfaces = self.__class__.turbo_interfaces(service, version, mode, path + ["turbo_interfaces"])
1297
1297
  self.verbosity = self.__class__.verbosity(service, version, mode, path + ["verbosity"])
1298
1298
  super().__init__(service, version, mode, path)
1299
1299
  class auto_create(TUIMethod):
@@ -1388,9 +1388,9 @@ class main_menu(TUIMenu):
1388
1388
  """
1389
1389
  No help available.
1390
1390
  """
1391
- class turbo_create(TUIMethod):
1391
+ class turbo_interfaces(TUIMethod):
1392
1392
  """
1393
- No help available.
1393
+ Create turbo mesh interface.
1394
1394
  """
1395
1395
  class verbosity(TUIMethod):
1396
1396
  """
@@ -2813,6 +2813,7 @@ class main_menu(TUIMenu):
2813
2813
  def __init__(self, service, version, mode, path):
2814
2814
  self.allow_supercritical_pressure_vaporization = self.__class__.allow_supercritical_pressure_vaporization(service, version, mode, path + ["allow_supercritical_pressure_vaporization"])
2815
2815
  self.brownian_motion = self.__class__.brownian_motion(service, version, mode, path + ["brownian_motion"])
2816
+ self.caloric_film_temperature = self.__class__.caloric_film_temperature(service, version, mode, path + ["caloric_film_temperature"])
2816
2817
  self.convective_film_heat_transfer = self.__class__.convective_film_heat_transfer(service, version, mode, path + ["convective_film_heat_transfer"])
2817
2818
  self.current_positions_in_sample_file_format = self.__class__.current_positions_in_sample_file_format(service, version, mode, path + ["current_positions_in_sample_file_format"])
2818
2819
  self.enable_contour_plots = self.__class__.enable_contour_plots(service, version, mode, path + ["enable_contour_plots"])
@@ -2855,6 +2856,10 @@ class main_menu(TUIMenu):
2855
2856
  """
2856
2857
  Enable/disable Brownian motion of particles.
2857
2858
  """
2859
+ class caloric_film_temperature(TUIMethod):
2860
+ """
2861
+ No help available.
2862
+ """
2858
2863
  class convective_film_heat_transfer(TUIMethod):
2859
2864
  """
2860
2865
  Enable/disable convection/conduction film to wall heat transfer model.
@@ -4336,6 +4341,7 @@ class main_menu(TUIMenu):
4336
4341
  Enter the S2S parameters menu.
4337
4342
  """
4338
4343
  def __init__(self, service, version, mode, path):
4344
+ self.ambient_radiation_modeling = self.__class__.ambient_radiation_modeling(service, version, mode, path + ["ambient_radiation_modeling"])
4339
4345
  self.compute_fpsc_values = self.__class__.compute_fpsc_values(service, version, mode, path + ["compute_fpsc_values"])
4340
4346
  self.compute_vf_accelerated = self.__class__.compute_vf_accelerated(service, version, mode, path + ["compute_vf_accelerated"])
4341
4347
  self.compute_vf_only = self.__class__.compute_vf_only(service, version, mode, path + ["compute_vf_only"])
@@ -4408,6 +4414,23 @@ class main_menu(TUIMenu):
4408
4414
  Use the old surface clustering algorithm.
4409
4415
  """
4410
4416
 
4417
+ class ambient_radiation_modeling(TUIMenu):
4418
+ """
4419
+ No help available.
4420
+ """
4421
+ def __init__(self, service, version, mode, path):
4422
+ self.ambient_temperature = self.__class__.ambient_temperature(service, version, mode, path + ["ambient_temperature"])
4423
+ self.enable_ambient_radiation = self.__class__.enable_ambient_radiation(service, version, mode, path + ["enable_ambient_radiation"])
4424
+ super().__init__(service, version, mode, path)
4425
+ class ambient_temperature(TUIMethod):
4426
+ """
4427
+ No help available.
4428
+ """
4429
+ class enable_ambient_radiation(TUIMethod):
4430
+ """
4431
+ No help available.
4432
+ """
4433
+
4411
4434
  class solar_parameters(TUIMenu):
4412
4435
  """
4413
4436
  Enter the solar parameters menu.
@@ -5105,6 +5128,7 @@ class main_menu(TUIMenu):
5105
5128
  def __init__(self, service, version, mode, path):
5106
5129
  self.translational_vibrational_energy_relaxation = self.__class__.translational_vibrational_energy_relaxation(service, version, mode, path + ["translational_vibrational_energy_relaxation"])
5107
5130
  self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
5131
+ self.expose_system_coupling = self.__class__.expose_system_coupling(service, version, mode, path + ["expose_system_coupling"])
5108
5132
  self.nasa9_enhancement = self.__class__.nasa9_enhancement(service, version, mode, path + ["nasa9_enhancement"])
5109
5133
  self.robustness_enhancement = self.__class__.robustness_enhancement(service, version, mode, path + ["robustness_enhancement"])
5110
5134
  self.set_verbosity = self.__class__.set_verbosity(service, version, mode, path + ["set_verbosity"])
@@ -5113,6 +5137,10 @@ class main_menu(TUIMenu):
5113
5137
  """
5114
5138
  No help available.
5115
5139
  """
5140
+ class expose_system_coupling(TUIMethod):
5141
+ """
5142
+ No help available.
5143
+ """
5116
5144
  class nasa9_enhancement(TUIMethod):
5117
5145
  """
5118
5146
  No help available.
@@ -10072,6 +10100,7 @@ class main_menu(TUIMenu):
10072
10100
  """
10073
10101
  def __init__(self, service, version, mode, path):
10074
10102
  self.blade_flutter_harmonics = self.__class__.blade_flutter_harmonics(service, version, mode, path + ["blade_flutter_harmonics"])
10103
+ self.export_boundary_mesh = self.__class__.export_boundary_mesh(service, version, mode, path + ["export_boundary_mesh"])
10075
10104
  self.general_turbo_interface_settings = self.__class__.general_turbo_interface_settings(service, version, mode, path + ["general_turbo_interface_settings"])
10076
10105
  self.generalized_forces = self.__class__.generalized_forces(service, version, mode, path + ["generalized_forces"])
10077
10106
  self.legacy_models = self.__class__.legacy_models(service, version, mode, path + ["legacy_models"])
@@ -10086,7 +10115,6 @@ class main_menu(TUIMenu):
10086
10115
  self.delete_phaselag_spectral_content = self.__class__.delete_phaselag_spectral_content(service, version, mode, path + ["delete_phaselag_spectral_content"])
10087
10116
  self.delete_turbomachine_description = self.__class__.delete_turbomachine_description(service, version, mode, path + ["delete_turbomachine_description"])
10088
10117
  self.enable_turbo_model = self.__class__.enable_turbo_model(service, version, mode, path + ["enable_turbo_model"])
10089
- self.export_boundary_mesh = self.__class__.export_boundary_mesh(service, version, mode, path + ["export_boundary_mesh"])
10090
10118
  self.graphics_extra_settings = self.__class__.graphics_extra_settings(service, version, mode, path + ["graphics_extra_settings"])
10091
10119
  self.list_graphics_spectral_content = self.__class__.list_graphics_spectral_content(service, version, mode, path + ["list_graphics_spectral_content"])
10092
10120
  self.list_phaselag_state = self.__class__.list_phaselag_state(service, version, mode, path + ["list_phaselag_state"])
@@ -10096,10 +10124,10 @@ class main_menu(TUIMenu):
10096
10124
  self.performance = self.__class__.performance(service, version, mode, path + ["performance"])
10097
10125
  self.phaselag_extra_settings = self.__class__.phaselag_extra_settings(service, version, mode, path + ["phaselag_extra_settings"])
10098
10126
  self.separate_nonoverlapping_interface_boundary = self.__class__.separate_nonoverlapping_interface_boundary(service, version, mode, path + ["separate_nonoverlapping_interface_boundary"])
10099
- self.turbo_create = self.__class__.turbo_create(service, version, mode, path + ["turbo_create"])
10100
10127
  self.turbo_interface_check = self.__class__.turbo_interface_check(service, version, mode, path + ["turbo_interface_check"])
10101
10128
  self.turbo_interface_delete = self.__class__.turbo_interface_delete(service, version, mode, path + ["turbo_interface_delete"])
10102
10129
  self.turbo_interface_edit = self.__class__.turbo_interface_edit(service, version, mode, path + ["turbo_interface_edit"])
10130
+ self.turbo_interfaces = self.__class__.turbo_interfaces(service, version, mode, path + ["turbo_interfaces"])
10103
10131
  super().__init__(service, version, mode, path)
10104
10132
  class append_graphics_spectral_content(TUIMethod):
10105
10133
  """
@@ -10141,10 +10169,6 @@ class main_menu(TUIMenu):
10141
10169
  """
10142
10170
  No help available.
10143
10171
  """
10144
- class export_boundary_mesh(TUIMethod):
10145
- """
10146
- No help available.
10147
- """
10148
10172
  class graphics_extra_settings(TUIMethod):
10149
10173
  """
10150
10174
  Define phaselag related extra settings.
@@ -10181,10 +10205,6 @@ class main_menu(TUIMenu):
10181
10205
  """
10182
10206
  Split a general turbo interface non-overlapping zone.
10183
10207
  """
10184
- class turbo_create(TUIMethod):
10185
- """
10186
- No help available.
10187
- """
10188
10208
  class turbo_interface_check(TUIMethod):
10189
10209
  """
10190
10210
  No help available.
@@ -10197,6 +10217,10 @@ class main_menu(TUIMenu):
10197
10217
  """
10198
10218
  Edit a general turbo and standard tip-gap interface.
10199
10219
  """
10220
+ class turbo_interfaces(TUIMethod):
10221
+ """
10222
+ No help available.
10223
+ """
10200
10224
 
10201
10225
  class blade_flutter_harmonics(TUIMenu):
10202
10226
  """
@@ -10220,6 +10244,18 @@ class main_menu(TUIMenu):
10220
10244
  Writes harmonic export data.
10221
10245
  """
10222
10246
 
10247
+ class export_boundary_mesh(TUIMenu):
10248
+ """
10249
+ No help available.
10250
+ """
10251
+ def __init__(self, service, version, mode, path):
10252
+ self.export_boundary = self.__class__.export_boundary(service, version, mode, path + ["export_boundary"])
10253
+ super().__init__(service, version, mode, path)
10254
+ class export_boundary(TUIMethod):
10255
+ """
10256
+ No help available.
10257
+ """
10258
+
10223
10259
  class general_turbo_interface_settings(TUIMenu):
10224
10260
  """
10225
10261
  No help available.
@@ -14768,6 +14804,7 @@ class main_menu(TUIMenu):
14768
14804
  self.marc_post = self.__class__.marc_post(service, version, mode, path + ["marc_post"])
14769
14805
  self.prebfc_structured = self.__class__.prebfc_structured(service, version, mode, path + ["prebfc_structured"])
14770
14806
  self.ptc_mechanica = self.__class__.ptc_mechanica(service, version, mode, path + ["ptc_mechanica"])
14807
+ self.turbogrid = self.__class__.turbogrid(service, version, mode, path + ["turbogrid"])
14771
14808
  super().__init__(service, version, mode, path)
14772
14809
  class chemkin_mechanism(TUIMethod):
14773
14810
  """
@@ -14817,6 +14854,10 @@ class main_menu(TUIMenu):
14817
14854
  """
14818
14855
  Read a PTC Mechanica file as a case file.
14819
14856
  """
14857
+ class turbogrid(TUIMethod):
14858
+ """
14859
+ Enter the turbogrid menu.
14860
+ """
14820
14861
 
14821
14862
  class abaqus(TUIMenu):
14822
14863
  """
@@ -15070,6 +15111,7 @@ class main_menu(TUIMenu):
15070
15111
  Enter to create new project, open project, save and archive project.
15071
15112
  """
15072
15113
  def __init__(self, service, version, mode, path):
15114
+ self.simulation = self.__class__.simulation(service, version, mode, path + ["simulation"])
15073
15115
  self.archive = self.__class__.archive(service, version, mode, path + ["archive"])
15074
15116
  self.new = self.__class__.new(service, version, mode, path + ["new"])
15075
15117
  self.open = self.__class__.open(service, version, mode, path + ["open"])
@@ -15102,6 +15144,51 @@ class main_menu(TUIMenu):
15102
15144
  Save As Copy.
15103
15145
  """
15104
15146
 
15147
+ class simulation(TUIMenu):
15148
+ """
15149
+ Enter to create, duplicate, or delete a simulation.
15150
+ """
15151
+ def __init__(self, service, version, mode, path):
15152
+ self.run = self.__class__.run(service, version, mode, path + ["run"])
15153
+ self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
15154
+ self.new_simulation = self.__class__.new_simulation(service, version, mode, path + ["new_simulation"])
15155
+ self.set_as_current = self.__class__.set_as_current(service, version, mode, path + ["set_as_current"])
15156
+ super().__init__(service, version, mode, path)
15157
+ class delete(TUIMethod):
15158
+ """
15159
+ Delete A Simulation.
15160
+ """
15161
+ class new_simulation(TUIMethod):
15162
+ """
15163
+ Create New Simulation.
15164
+ """
15165
+ class set_as_current(TUIMethod):
15166
+ """
15167
+ Set the Current Simulation.
15168
+ """
15169
+
15170
+ class run(TUIMenu):
15171
+ """
15172
+ Enter to create, duplicate, or delete a run.
15173
+ """
15174
+ def __init__(self, service, version, mode, path):
15175
+ self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
15176
+ self.new_run = self.__class__.new_run(service, version, mode, path + ["new_run"])
15177
+ self.set_as_current = self.__class__.set_as_current(service, version, mode, path + ["set_as_current"])
15178
+ super().__init__(service, version, mode, path)
15179
+ class delete(TUIMethod):
15180
+ """
15181
+ Delete A Run.
15182
+ """
15183
+ class new_run(TUIMethod):
15184
+ """
15185
+ Create a New Run.
15186
+ """
15187
+ class set_as_current(TUIMethod):
15188
+ """
15189
+ Set the Current Run.
15190
+ """
15191
+
15105
15192
  class solution_files(TUIMenu):
15106
15193
  """
15107
15194
  Enter the solution files menu.
@@ -15998,12 +16085,13 @@ class main_menu(TUIMenu):
15998
16085
  self.create_periodic_interface = self.__class__.create_periodic_interface(service, version, mode, path + ["create_periodic_interface"])
15999
16086
  self.deactivate_cell_zone = self.__class__.deactivate_cell_zone(service, version, mode, path + ["deactivate_cell_zone"])
16000
16087
  self.delete_all_shells = self.__class__.delete_all_shells(service, version, mode, path + ["delete_all_shells"])
16001
- self.delete_cell_by_id = self.__class__.delete_cell_by_id(service, version, mode, path + ["delete_cell_by_id"])
16002
- self.delete_cell_by_mark = self.__class__.delete_cell_by_mark(service, version, mode, path + ["delete_cell_by_mark"])
16003
16088
  self.delete_cell_zone = self.__class__.delete_cell_zone(service, version, mode, path + ["delete_cell_zone"])
16089
+ self.delete_cells_by_mark = self.__class__.delete_cells_by_mark(service, version, mode, path + ["delete_cells_by_mark"])
16004
16090
  self.disconnect_cell_zones = self.__class__.disconnect_cell_zones(service, version, mode, path + ["disconnect_cell_zones"])
16091
+ self.extract_cells_by_mark = self.__class__.extract_cells_by_mark(service, version, mode, path + ["extract_cells_by_mark"])
16005
16092
  self.extrude_face_zone_delta = self.__class__.extrude_face_zone_delta(service, version, mode, path + ["extrude_face_zone_delta"])
16006
16093
  self.extrude_face_zone_para = self.__class__.extrude_face_zone_para(service, version, mode, path + ["extrude_face_zone_para"])
16094
+ self.fuse_cell_zones = self.__class__.fuse_cell_zones(service, version, mode, path + ["fuse_cell_zones"])
16007
16095
  self.fuse_face_zones = self.__class__.fuse_face_zones(service, version, mode, path + ["fuse_face_zones"])
16008
16096
  self.list_zones = self.__class__.list_zones(service, version, mode, path + ["list_zones"])
16009
16097
  self.make_periodic = self.__class__.make_periodic(service, version, mode, path + ["make_periodic"])
@@ -16086,19 +16174,19 @@ class main_menu(TUIMenu):
16086
16174
  """
16087
16175
  No help available.
16088
16176
  """
16089
- class delete_cell_by_id(TUIMethod):
16177
+ class delete_cell_zone(TUIMethod):
16090
16178
  """
16091
16179
  No help available.
16092
16180
  """
16093
- class delete_cell_by_mark(TUIMethod):
16181
+ class delete_cells_by_mark(TUIMethod):
16094
16182
  """
16095
16183
  No help available.
16096
16184
  """
16097
- class delete_cell_zone(TUIMethod):
16185
+ class disconnect_cell_zones(TUIMethod):
16098
16186
  """
16099
16187
  No help available.
16100
16188
  """
16101
- class disconnect_cell_zones(TUIMethod):
16189
+ class extract_cells_by_mark(TUIMethod):
16102
16190
  """
16103
16191
  No help available.
16104
16192
  """
@@ -16110,6 +16198,10 @@ class main_menu(TUIMenu):
16110
16198
  """
16111
16199
  No help available.
16112
16200
  """
16201
+ class fuse_cell_zones(TUIMethod):
16202
+ """
16203
+ No help available.
16204
+ """
16113
16205
  class fuse_face_zones(TUIMethod):
16114
16206
  """
16115
16207
  No help available.
@@ -18749,6 +18841,7 @@ class main_menu(TUIMenu):
18749
18841
  self.py_console_completer = self.__class__.py_console_completer(service, version, mode, path + ["py_console_completer"])
18750
18842
  self.quick_property_view = self.__class__.quick_property_view(service, version, mode, path + ["quick_property_view"])
18751
18843
  self.ruler = self.__class__.ruler(service, version, mode, path + ["ruler"])
18844
+ self.show_default_interior = self.__class__.show_default_interior(service, version, mode, path + ["show_default_interior"])
18752
18845
  self.show_enabled_models = self.__class__.show_enabled_models(service, version, mode, path + ["show_enabled_models"])
18753
18846
  self.show_interface_non_overlapping_boundaries = self.__class__.show_interface_non_overlapping_boundaries(service, version, mode, path + ["show_interface_non_overlapping_boundaries"])
18754
18847
  self.show_model_edges = self.__class__.show_model_edges(service, version, mode, path + ["show_model_edges"])
@@ -18879,6 +18972,10 @@ class main_menu(TUIMenu):
18879
18972
  """
18880
18973
  No help available.
18881
18974
  """
18975
+ class show_default_interior(TUIMethod):
18976
+ """
18977
+ No help available.
18978
+ """
18882
18979
  class show_enabled_models(TUIMethod):
18883
18980
  """
18884
18981
  No help available.
@@ -21944,6 +22041,7 @@ class main_menu(TUIMenu):
21944
22041
  def __init__(self, service, version, mode, path):
21945
22042
  self.animations = self.__class__.animations(service, version, mode, path + ["animations"])
21946
22043
  self.annotation = self.__class__.annotation(service, version, mode, path + ["annotation"])
22044
+ self.ansys_sound_analysis = self.__class__.ansys_sound_analysis(service, version, mode, path + ["ansys_sound_analysis"])
21947
22045
  self.custom_field_functions = self.__class__.custom_field_functions(service, version, mode, path + ["custom_field_functions"])
21948
22046
  self.custom_vectors = self.__class__.custom_vectors(service, version, mode, path + ["custom_vectors"])
21949
22047
  self.graphics = self.__class__.graphics(service, version, mode, path + ["graphics"])
@@ -22220,6 +22318,91 @@ class main_menu(TUIMenu):
22220
22318
  No help available.
22221
22319
  """
22222
22320
 
22321
+ class ansys_sound_analysis(TUIMenu):
22322
+ """
22323
+ No help available.
22324
+ """
22325
+ def __init__(self, service, version, mode, path):
22326
+ self.receiver = self.__class__.receiver(service, version, mode, path + ["receiver"])
22327
+ self.input_data_type = self.__class__.input_data_type(service, version, mode, path + ["input_data_type"])
22328
+ self.load_frf_files = self.__class__.load_frf_files(service, version, mode, path + ["load_frf_files"])
22329
+ self.load_input_files = self.__class__.load_input_files(service, version, mode, path + ["load_input_files"])
22330
+ self.print_indicators = self.__class__.print_indicators(service, version, mode, path + ["print_indicators"])
22331
+ self.sound_duration = self.__class__.sound_duration(service, version, mode, path + ["sound_duration"])
22332
+ self.use_transfer_fn = self.__class__.use_transfer_fn(service, version, mode, path + ["use_transfer_fn"])
22333
+ self.write_files = self.__class__.write_files(service, version, mode, path + ["write_files"])
22334
+ super().__init__(service, version, mode, path)
22335
+ class input_data_type(TUIMethod):
22336
+ """
22337
+ No help available.
22338
+ """
22339
+ class load_frf_files(TUIMethod):
22340
+ """
22341
+ No help available.
22342
+ """
22343
+ class load_input_files(TUIMethod):
22344
+ """
22345
+ No help available.
22346
+ """
22347
+ class print_indicators(TUIMethod):
22348
+ """
22349
+ No help available.
22350
+ """
22351
+ class sound_duration(TUIMethod):
22352
+ """
22353
+ No help available.
22354
+ """
22355
+ class use_transfer_fn(TUIMethod):
22356
+ """
22357
+ No help available.
22358
+ """
22359
+ class write_files(TUIMethod):
22360
+ """
22361
+ No help available.
22362
+ """
22363
+
22364
+ class receiver(TUIMenu):
22365
+ """
22366
+ No help available.
22367
+ """
22368
+ def __init__(self, service, version, mode, path):
22369
+ self.create = self.__class__.create(service, version, mode, path + ["create"])
22370
+ self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
22371
+ self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
22372
+ self.list = self.__class__.list(service, version, mode, path + ["list"])
22373
+ self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
22374
+ self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
22375
+ self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
22376
+ super().__init__(service, version, mode, path)
22377
+ class create(TUIMethod):
22378
+ """
22379
+ No help available.
22380
+ """
22381
+ class delete(TUIMethod):
22382
+ """
22383
+ No help available.
22384
+ """
22385
+ class edit(TUIMethod):
22386
+ """
22387
+ Edit receiver object.
22388
+ """
22389
+ class list(TUIMethod):
22390
+ """
22391
+ No help available.
22392
+ """
22393
+ class list_properties(TUIMethod):
22394
+ """
22395
+ No help available.
22396
+ """
22397
+ class make_a_copy(TUIMethod):
22398
+ """
22399
+ No help available.
22400
+ """
22401
+ class rename(TUIMethod):
22402
+ """
22403
+ No help available.
22404
+ """
22405
+
22223
22406
  class custom_field_functions(TUIMenu):
22224
22407
  """
22225
22408
  No help available.
@@ -28934,10 +29117,10 @@ class main_menu(TUIMenu):
28934
29117
  self.automatic_case_modification = self.__class__.automatic_case_modification(service, version, mode, path + ["automatic_case_modification"])
28935
29118
  self.automatic_initialization = self.__class__.automatic_initialization(service, version, mode, path + ["automatic_initialization"])
28936
29119
  self.continue_strategy_execution = self.__class__.continue_strategy_execution(service, version, mode, path + ["continue_strategy_execution"])
29120
+ self.enable_strategy = self.__class__.enable_strategy(service, version, mode, path + ["enable_strategy"])
28937
29121
  self.execute_strategy = self.__class__.execute_strategy(service, version, mode, path + ["execute_strategy"])
28938
- self.export = self.__class__.export(service, version, mode, path + ["export"])
28939
- self.import_ = self.__class__.import_(service, version, mode, path + ["import_"])
28940
- self.strategy_enable = self.__class__.strategy_enable(service, version, mode, path + ["strategy_enable"])
29122
+ self.export_modifications = self.__class__.export_modifications(service, version, mode, path + ["export_modifications"])
29123
+ self.import_modifications = self.__class__.import_modifications(service, version, mode, path + ["import_modifications"])
28941
29124
  super().__init__(service, version, mode, path)
28942
29125
  class automatic_initialization(TUIMethod):
28943
29126
  """
@@ -28947,19 +29130,19 @@ class main_menu(TUIMenu):
28947
29130
  """
28948
29131
  No help available.
28949
29132
  """
28950
- class execute_strategy(TUIMethod):
29133
+ class enable_strategy(TUIMethod):
28951
29134
  """
28952
29135
  No help available.
28953
29136
  """
28954
- class export(TUIMethod):
29137
+ class execute_strategy(TUIMethod):
28955
29138
  """
28956
29139
  No help available.
28957
29140
  """
28958
- class import_(TUIMethod):
29141
+ class export_modifications(TUIMethod):
28959
29142
  """
28960
29143
  No help available.
28961
29144
  """
28962
- class strategy_enable(TUIMethod):
29145
+ class import_modifications(TUIMethod):
28963
29146
  """
28964
29147
  No help available.
28965
29148
  """
@@ -34253,6 +34436,7 @@ class main_menu(TUIMenu):
34253
34436
  self.cfl_based_adaptive_time_stepping = self.__class__.cfl_based_adaptive_time_stepping(service, version, mode, path + ["cfl_based_adaptive_time_stepping"])
34254
34437
  self.data_sampling = self.__class__.data_sampling(service, version, mode, path + ["data_sampling"])
34255
34438
  self.data_sampling_options = self.__class__.data_sampling_options(service, version, mode, path + ["data_sampling_options"])
34439
+ self.options = self.__class__.options(service, version, mode, path + ["options"])
34256
34440
  self.parameters = self.__class__.parameters(service, version, mode, path + ["parameters"])
34257
34441
  self.pollutants = self.__class__.pollutants(service, version, mode, path + ["pollutants"])
34258
34442
  self.pseudo_time_settings = self.__class__.pseudo_time_settings(service, version, mode, path + ["pseudo_time_settings"])
@@ -34536,18 +34720,138 @@ class main_menu(TUIMenu):
34536
34720
  No help available.
34537
34721
  """
34538
34722
 
34723
+ class options(TUIMenu):
34724
+ """
34725
+ No help available.
34726
+ """
34727
+ def __init__(self, service, version, mode, path):
34728
+ self.extrapolate_eqn_vars = self.__class__.extrapolate_eqn_vars(service, version, mode, path + ["extrapolate_eqn_vars"])
34729
+ self.solid_time_step_size = self.__class__.solid_time_step_size(service, version, mode, path + ["solid_time_step_size"])
34730
+ self.extrapolate_variables = self.__class__.extrapolate_variables(service, version, mode, path + ["extrapolate_variables"])
34731
+ super().__init__(service, version, mode, path)
34732
+ class extrapolate_variables(TUIMethod):
34733
+ """
34734
+ No help available.
34735
+ """
34736
+
34737
+ class extrapolate_eqn_vars(TUIMenu):
34738
+ """
34739
+ No help available.
34740
+ """
34741
+ def __init__(self, service, version, mode, path):
34742
+ self.create = self.__class__.create(service, version, mode, path + ["create"])
34743
+ self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
34744
+ self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
34745
+ self.list = self.__class__.list(service, version, mode, path + ["list"])
34746
+ self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
34747
+ self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
34748
+ self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
34749
+ super().__init__(service, version, mode, path)
34750
+ class create(TUIMethod):
34751
+ """
34752
+ No help available.
34753
+ """
34754
+ class delete(TUIMethod):
34755
+ """
34756
+ No help available.
34757
+ """
34758
+ class edit(TUIMethod):
34759
+ """
34760
+ Edit extrapolate-eqn-vars object.
34761
+ """
34762
+ class list(TUIMethod):
34763
+ """
34764
+ No help available.
34765
+ """
34766
+ class list_properties(TUIMethod):
34767
+ """
34768
+ No help available.
34769
+ """
34770
+ class make_a_copy(TUIMethod):
34771
+ """
34772
+ No help available.
34773
+ """
34774
+ class rename(TUIMethod):
34775
+ """
34776
+ No help available.
34777
+ """
34778
+
34779
+ class solid_time_step_size(TUIMenu):
34780
+ """
34781
+ No help available.
34782
+ """
34783
+ def __init__(self, service, version, mode, path):
34784
+ self.choose_auto_time_stepping = self.__class__.choose_auto_time_stepping(service, version, mode, path + ["choose_auto_time_stepping"])
34785
+ self.enable_solid_time_step = self.__class__.enable_solid_time_step(service, version, mode, path + ["enable_solid_time_step"])
34786
+ self.time_step_size = self.__class__.time_step_size(service, version, mode, path + ["time_step_size"])
34787
+ super().__init__(service, version, mode, path)
34788
+ class choose_auto_time_stepping(TUIMethod):
34789
+ """
34790
+ No help available.
34791
+ """
34792
+ class enable_solid_time_step(TUIMethod):
34793
+ """
34794
+ No help available.
34795
+ """
34796
+ class time_step_size(TUIMethod):
34797
+ """
34798
+ No help available.
34799
+ """
34800
+
34539
34801
  class parameters(TUIMenu):
34540
34802
  """
34541
34803
  No help available.
34542
34804
  """
34543
34805
  def __init__(self, service, version, mode, path):
34806
+ self.adaptive_time_stepping = self.__class__.adaptive_time_stepping(service, version, mode, path + ["adaptive_time_stepping"])
34807
+ self.courant_number = self.__class__.courant_number(service, version, mode, path + ["courant_number"])
34808
+ self.error_tolerance = self.__class__.error_tolerance(service, version, mode, path + ["error_tolerance"])
34809
+ self.fixed_time_step_size = self.__class__.fixed_time_step_size(service, version, mode, path + ["fixed_time_step_size"])
34810
+ self.frequency = self.__class__.frequency(service, version, mode, path + ["frequency"])
34811
+ self.global_courant_number = self.__class__.global_courant_number(service, version, mode, path + ["global_courant_number"])
34812
+ self.incremental_time = self.__class__.incremental_time(service, version, mode, path + ["incremental_time"])
34813
+ self.initial_time_step_size = self.__class__.initial_time_step_size(service, version, mode, path + ["initial_time_step_size"])
34544
34814
  self.iter_count = self.__class__.iter_count(service, version, mode, path + ["iter_count"])
34545
34815
  self.max_iter_per_time_step = self.__class__.max_iter_per_time_step(service, version, mode, path + ["max_iter_per_time_step"])
34816
+ self.period = self.__class__.period(service, version, mode, path + ["period"])
34546
34817
  self.profile_update_interval = self.__class__.profile_update_interval(service, version, mode, path + ["profile_update_interval"])
34547
34818
  self.reporting_interval = self.__class__.reporting_interval(service, version, mode, path + ["reporting_interval"])
34548
34819
  self.time_step_count = self.__class__.time_step_count(service, version, mode, path + ["time_step_count"])
34549
34820
  self.time_step_size = self.__class__.time_step_size(service, version, mode, path + ["time_step_size"])
34821
+ self.time_steps_per_period = self.__class__.time_steps_per_period(service, version, mode, path + ["time_steps_per_period"])
34822
+ self.total_periods = self.__class__.total_periods(service, version, mode, path + ["total_periods"])
34823
+ self.total_time = self.__class__.total_time(service, version, mode, path + ["total_time"])
34824
+ self.total_time_step_count = self.__class__.total_time_step_count(service, version, mode, path + ["total_time_step_count"])
34825
+ self.update_interval = self.__class__.update_interval(service, version, mode, path + ["update_interval"])
34550
34826
  super().__init__(service, version, mode, path)
34827
+ class courant_number(TUIMethod):
34828
+ """
34829
+ No help available.
34830
+ """
34831
+ class error_tolerance(TUIMethod):
34832
+ """
34833
+ No help available.
34834
+ """
34835
+ class fixed_time_step_size(TUIMethod):
34836
+ """
34837
+ No help available.
34838
+ """
34839
+ class frequency(TUIMethod):
34840
+ """
34841
+ No help available.
34842
+ """
34843
+ class global_courant_number(TUIMethod):
34844
+ """
34845
+ No help available.
34846
+ """
34847
+ class incremental_time(TUIMethod):
34848
+ """
34849
+ No help available.
34850
+ """
34851
+ class initial_time_step_size(TUIMethod):
34852
+ """
34853
+ No help available.
34854
+ """
34551
34855
  class iter_count(TUIMethod):
34552
34856
  """
34553
34857
  No help available.
@@ -34556,6 +34860,10 @@ class main_menu(TUIMenu):
34556
34860
  """
34557
34861
  No help available.
34558
34862
  """
34863
+ class period(TUIMethod):
34864
+ """
34865
+ No help available.
34866
+ """
34559
34867
  class profile_update_interval(TUIMethod):
34560
34868
  """
34561
34869
  No help available.
@@ -34572,6 +34880,76 @@ class main_menu(TUIMenu):
34572
34880
  """
34573
34881
  No help available.
34574
34882
  """
34883
+ class time_steps_per_period(TUIMethod):
34884
+ """
34885
+ No help available.
34886
+ """
34887
+ class total_periods(TUIMethod):
34888
+ """
34889
+ No help available.
34890
+ """
34891
+ class total_time(TUIMethod):
34892
+ """
34893
+ No help available.
34894
+ """
34895
+ class total_time_step_count(TUIMethod):
34896
+ """
34897
+ No help available.
34898
+ """
34899
+ class update_interval(TUIMethod):
34900
+ """
34901
+ No help available.
34902
+ """
34903
+
34904
+ class adaptive_time_stepping(TUIMenu):
34905
+ """
34906
+ No help available.
34907
+ """
34908
+ def __init__(self, service, version, mode, path):
34909
+ self.moving_mesh_cfl_constraint = self.__class__.moving_mesh_cfl_constraint(service, version, mode, path + ["moving_mesh_cfl_constraint"])
34910
+ self.max_step_change_factor = self.__class__.max_step_change_factor(service, version, mode, path + ["max_step_change_factor"])
34911
+ self.max_time_step_size = self.__class__.max_time_step_size(service, version, mode, path + ["max_time_step_size"])
34912
+ self.min_step_change_factor = self.__class__.min_step_change_factor(service, version, mode, path + ["min_step_change_factor"])
34913
+ self.min_time_step_size = self.__class__.min_time_step_size(service, version, mode, path + ["min_time_step_size"])
34914
+ self.physics_based_constraint = self.__class__.physics_based_constraint(service, version, mode, path + ["physics_based_constraint"])
34915
+ super().__init__(service, version, mode, path)
34916
+ class max_step_change_factor(TUIMethod):
34917
+ """
34918
+ No help available.
34919
+ """
34920
+ class max_time_step_size(TUIMethod):
34921
+ """
34922
+ No help available.
34923
+ """
34924
+ class min_step_change_factor(TUIMethod):
34925
+ """
34926
+ No help available.
34927
+ """
34928
+ class min_time_step_size(TUIMethod):
34929
+ """
34930
+ No help available.
34931
+ """
34932
+ class physics_based_constraint(TUIMethod):
34933
+ """
34934
+ No help available.
34935
+ """
34936
+
34937
+ class moving_mesh_cfl_constraint(TUIMenu):
34938
+ """
34939
+ No help available.
34940
+ """
34941
+ def __init__(self, service, version, mode, path):
34942
+ self.mesh_courant_number = self.__class__.mesh_courant_number(service, version, mode, path + ["mesh_courant_number"])
34943
+ self.moving_mesh_constraint = self.__class__.moving_mesh_constraint(service, version, mode, path + ["moving_mesh_constraint"])
34944
+ super().__init__(service, version, mode, path)
34945
+ class mesh_courant_number(TUIMethod):
34946
+ """
34947
+ No help available.
34948
+ """
34949
+ class moving_mesh_constraint(TUIMethod):
34950
+ """
34951
+ No help available.
34952
+ """
34575
34953
 
34576
34954
  class pollutants(TUIMenu):
34577
34955
  """
@@ -34689,14 +35067,10 @@ class main_menu(TUIMenu):
34689
35067
  def __init__(self, service, version, mode, path):
34690
35068
  self.cfl_based_time_stepping = self.__class__.cfl_based_time_stepping(service, version, mode, path + ["cfl_based_time_stepping"])
34691
35069
  self.error_based_time_stepping = self.__class__.error_based_time_stepping(service, version, mode, path + ["error_based_time_stepping"])
34692
- self.extrapolate_eqn_vars = self.__class__.extrapolate_eqn_vars(service, version, mode, path + ["extrapolate_eqn_vars"])
34693
35070
  self.fixed_periodic = self.__class__.fixed_periodic(service, version, mode, path + ["fixed_periodic"])
34694
35071
  self.mp_specific_time_stepping = self.__class__.mp_specific_time_stepping(service, version, mode, path + ["mp_specific_time_stepping"])
34695
- self.solid_time_step_size = self.__class__.solid_time_step_size(service, version, mode, path + ["solid_time_step_size"])
34696
35072
  self.duration_specification_method = self.__class__.duration_specification_method(service, version, mode, path + ["duration_specification_method"])
34697
- self.extrapolate_variables = self.__class__.extrapolate_variables(service, version, mode, path + ["extrapolate_variables"])
34698
35073
  self.flow_time = self.__class__.flow_time(service, version, mode, path + ["flow_time"])
34699
- self.incremental_time = self.__class__.incremental_time(service, version, mode, path + ["incremental_time"])
34700
35074
  self.max_flow_time = self.__class__.max_flow_time(service, version, mode, path + ["max_flow_time"])
34701
35075
  self.method = self.__class__.method(service, version, mode, path + ["method"])
34702
35076
  self.predict_next = self.__class__.predict_next(service, version, mode, path + ["predict_next"])
@@ -34704,8 +35078,6 @@ class main_menu(TUIMenu):
34704
35078
  self.solution_status = self.__class__.solution_status(service, version, mode, path + ["solution_status"])
34705
35079
  self.specified_time_step = self.__class__.specified_time_step(service, version, mode, path + ["specified_time_step"])
34706
35080
  self.time_step_size_for_acoustic_export = self.__class__.time_step_size_for_acoustic_export(service, version, mode, path + ["time_step_size_for_acoustic_export"])
34707
- self.total_time = self.__class__.total_time(service, version, mode, path + ["total_time"])
34708
- self.total_time_step_count = self.__class__.total_time_step_count(service, version, mode, path + ["total_time_step_count"])
34709
35081
  self.type = self.__class__.type(service, version, mode, path + ["type"])
34710
35082
  self.udf_hook = self.__class__.udf_hook(service, version, mode, path + ["udf_hook"])
34711
35083
  super().__init__(service, version, mode, path)
@@ -34713,18 +35085,10 @@ class main_menu(TUIMenu):
34713
35085
  """
34714
35086
  No help available.
34715
35087
  """
34716
- class extrapolate_variables(TUIMethod):
34717
- """
34718
- No help available.
34719
- """
34720
35088
  class flow_time(TUIMethod):
34721
35089
  """
34722
35090
  No help available.
34723
35091
  """
34724
- class incremental_time(TUIMethod):
34725
- """
34726
- No help available.
34727
- """
34728
35092
  class max_flow_time(TUIMethod):
34729
35093
  """
34730
35094
  No help available.
@@ -34753,14 +35117,6 @@ class main_menu(TUIMenu):
34753
35117
  """
34754
35118
  No help available.
34755
35119
  """
34756
- class total_time(TUIMethod):
34757
- """
34758
- No help available.
34759
- """
34760
- class total_time_step_count(TUIMethod):
34761
- """
34762
- No help available.
34763
- """
34764
35120
  class type(TUIMethod):
34765
35121
  """
34766
35122
  No help available.
@@ -34776,47 +35132,7 @@ class main_menu(TUIMenu):
34776
35132
  """
34777
35133
  def __init__(self, service, version, mode, path):
34778
35134
  self.advanced_options = self.__class__.advanced_options(service, version, mode, path + ["advanced_options"])
34779
- self.courant_number = self.__class__.courant_number(service, version, mode, path + ["courant_number"])
34780
- self.fixed_time_step_size = self.__class__.fixed_time_step_size(service, version, mode, path + ["fixed_time_step_size"])
34781
- self.initial_time_step_size = self.__class__.initial_time_step_size(service, version, mode, path + ["initial_time_step_size"])
34782
- self.max_step_change_factor = self.__class__.max_step_change_factor(service, version, mode, path + ["max_step_change_factor"])
34783
- self.max_time_step_size = self.__class__.max_time_step_size(service, version, mode, path + ["max_time_step_size"])
34784
- self.min_step_change_factor = self.__class__.min_step_change_factor(service, version, mode, path + ["min_step_change_factor"])
34785
- self.min_time_step_size = self.__class__.min_time_step_size(service, version, mode, path + ["min_time_step_size"])
34786
- self.update_interval = self.__class__.update_interval(service, version, mode, path + ["update_interval"])
34787
35135
  super().__init__(service, version, mode, path)
34788
- class courant_number(TUIMethod):
34789
- """
34790
- No help available.
34791
- """
34792
- class fixed_time_step_size(TUIMethod):
34793
- """
34794
- No help available.
34795
- """
34796
- class initial_time_step_size(TUIMethod):
34797
- """
34798
- No help available.
34799
- """
34800
- class max_step_change_factor(TUIMethod):
34801
- """
34802
- No help available.
34803
- """
34804
- class max_time_step_size(TUIMethod):
34805
- """
34806
- No help available.
34807
- """
34808
- class min_step_change_factor(TUIMethod):
34809
- """
34810
- No help available.
34811
- """
34812
- class min_time_step_size(TUIMethod):
34813
- """
34814
- No help available.
34815
- """
34816
- class update_interval(TUIMethod):
34817
- """
34818
- No help available.
34819
- """
34820
35136
 
34821
35137
  class advanced_options(TUIMenu):
34822
35138
  """
@@ -34845,94 +35161,12 @@ class main_menu(TUIMenu):
34845
35161
  No help available.
34846
35162
  """
34847
35163
  def __init__(self, service, version, mode, path):
34848
- self.error_tolerance = self.__class__.error_tolerance(service, version, mode, path + ["error_tolerance"])
34849
- self.fixed_time_step_size = self.__class__.fixed_time_step_size(service, version, mode, path + ["fixed_time_step_size"])
34850
- self.initial_time_step_size = self.__class__.initial_time_step_size(service, version, mode, path + ["initial_time_step_size"])
34851
- self.max_step_change_factor = self.__class__.max_step_change_factor(service, version, mode, path + ["max_step_change_factor"])
34852
- self.max_time_step_size = self.__class__.max_time_step_size(service, version, mode, path + ["max_time_step_size"])
34853
- self.min_step_change_factor = self.__class__.min_step_change_factor(service, version, mode, path + ["min_step_change_factor"])
34854
- self.min_time_step_size = self.__class__.min_time_step_size(service, version, mode, path + ["min_time_step_size"])
34855
35164
  self.undo_timestep = self.__class__.undo_timestep(service, version, mode, path + ["undo_timestep"])
34856
- self.update_interval = self.__class__.update_interval(service, version, mode, path + ["update_interval"])
34857
35165
  super().__init__(service, version, mode, path)
34858
- class error_tolerance(TUIMethod):
34859
- """
34860
- No help available.
34861
- """
34862
- class fixed_time_step_size(TUIMethod):
34863
- """
34864
- No help available.
34865
- """
34866
- class initial_time_step_size(TUIMethod):
34867
- """
34868
- No help available.
34869
- """
34870
- class max_step_change_factor(TUIMethod):
34871
- """
34872
- No help available.
34873
- """
34874
- class max_time_step_size(TUIMethod):
34875
- """
34876
- No help available.
34877
- """
34878
- class min_step_change_factor(TUIMethod):
34879
- """
34880
- No help available.
34881
- """
34882
- class min_time_step_size(TUIMethod):
34883
- """
34884
- No help available.
34885
- """
34886
35166
  class undo_timestep(TUIMethod):
34887
35167
  """
34888
35168
  No help available.
34889
35169
  """
34890
- class update_interval(TUIMethod):
34891
- """
34892
- No help available.
34893
- """
34894
-
34895
- class extrapolate_eqn_vars(TUIMenu):
34896
- """
34897
- No help available.
34898
- """
34899
- def __init__(self, service, version, mode, path):
34900
- self.create = self.__class__.create(service, version, mode, path + ["create"])
34901
- self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
34902
- self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
34903
- self.list = self.__class__.list(service, version, mode, path + ["list"])
34904
- self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
34905
- self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
34906
- self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
34907
- super().__init__(service, version, mode, path)
34908
- class create(TUIMethod):
34909
- """
34910
- No help available.
34911
- """
34912
- class delete(TUIMethod):
34913
- """
34914
- No help available.
34915
- """
34916
- class edit(TUIMethod):
34917
- """
34918
- Edit extrapolate-eqn-vars object.
34919
- """
34920
- class list(TUIMethod):
34921
- """
34922
- No help available.
34923
- """
34924
- class list_properties(TUIMethod):
34925
- """
34926
- No help available.
34927
- """
34928
- class make_a_copy(TUIMethod):
34929
- """
34930
- No help available.
34931
- """
34932
- class rename(TUIMethod):
34933
- """
34934
- No help available.
34935
- """
34936
35170
 
34937
35171
  class fixed_periodic(TUIMenu):
34938
35172
  """
@@ -34941,12 +35175,6 @@ class main_menu(TUIMenu):
34941
35175
  def __init__(self, service, version, mode, path):
34942
35176
  self.enabled = self.__class__.enabled(service, version, mode, path + ["enabled"])
34943
35177
  self.fixed_periodic_type = self.__class__.fixed_periodic_type(service, version, mode, path + ["fixed_periodic_type"])
34944
- self.frequency = self.__class__.frequency(service, version, mode, path + ["frequency"])
34945
- self.period = self.__class__.period(service, version, mode, path + ["period"])
34946
- self.time_step_size = self.__class__.time_step_size(service, version, mode, path + ["time_step_size"])
34947
- self.time_step_size_count = self.__class__.time_step_size_count(service, version, mode, path + ["time_step_size_count"])
34948
- self.time_steps_per_period = self.__class__.time_steps_per_period(service, version, mode, path + ["time_steps_per_period"])
34949
- self.total_periods = self.__class__.total_periods(service, version, mode, path + ["total_periods"])
34950
35178
  super().__init__(service, version, mode, path)
34951
35179
  class enabled(TUIMethod):
34952
35180
  """
@@ -34956,30 +35184,6 @@ class main_menu(TUIMenu):
34956
35184
  """
34957
35185
  No help available.
34958
35186
  """
34959
- class frequency(TUIMethod):
34960
- """
34961
- No help available.
34962
- """
34963
- class period(TUIMethod):
34964
- """
34965
- No help available.
34966
- """
34967
- class time_step_size(TUIMethod):
34968
- """
34969
- No help available.
34970
- """
34971
- class time_step_size_count(TUIMethod):
34972
- """
34973
- No help available.
34974
- """
34975
- class time_steps_per_period(TUIMethod):
34976
- """
34977
- No help available.
34978
- """
34979
- class total_periods(TUIMethod):
34980
- """
34981
- No help available.
34982
- """
34983
35187
 
34984
35188
  class mp_specific_time_stepping(TUIMenu):
34985
35189
  """
@@ -34988,88 +35192,25 @@ class main_menu(TUIMenu):
34988
35192
  def __init__(self, service, version, mode, path):
34989
35193
  self.time_constraints = self.__class__.time_constraints(service, version, mode, path + ["time_constraints"])
34990
35194
  self.enabled = self.__class__.enabled(service, version, mode, path + ["enabled"])
34991
- self.fixed_time_step_size = self.__class__.fixed_time_step_size(service, version, mode, path + ["fixed_time_step_size"])
34992
- self.global_courant_number = self.__class__.global_courant_number(service, version, mode, path + ["global_courant_number"])
34993
- self.initial_time_step_size = self.__class__.initial_time_step_size(service, version, mode, path + ["initial_time_step_size"])
34994
- self.max_step_change_factor = self.__class__.max_step_change_factor(service, version, mode, path + ["max_step_change_factor"])
34995
- self.max_time_step_size = self.__class__.max_time_step_size(service, version, mode, path + ["max_time_step_size"])
34996
- self.min_step_change_factor = self.__class__.min_step_change_factor(service, version, mode, path + ["min_step_change_factor"])
34997
- self.min_time_step_size = self.__class__.min_time_step_size(service, version, mode, path + ["min_time_step_size"])
34998
- self.update_interval = self.__class__.update_interval(service, version, mode, path + ["update_interval"])
34999
35195
  super().__init__(service, version, mode, path)
35000
35196
  class enabled(TUIMethod):
35001
35197
  """
35002
35198
  No help available.
35003
35199
  """
35004
- class fixed_time_step_size(TUIMethod):
35005
- """
35006
- No help available.
35007
- """
35008
- class global_courant_number(TUIMethod):
35009
- """
35010
- No help available.
35011
- """
35012
- class initial_time_step_size(TUIMethod):
35013
- """
35014
- No help available.
35015
- """
35016
- class max_step_change_factor(TUIMethod):
35017
- """
35018
- No help available.
35019
- """
35020
- class max_time_step_size(TUIMethod):
35021
- """
35022
- No help available.
35023
- """
35024
- class min_step_change_factor(TUIMethod):
35025
- """
35026
- No help available.
35027
- """
35028
- class min_time_step_size(TUIMethod):
35029
- """
35030
- No help available.
35031
- """
35032
- class update_interval(TUIMethod):
35033
- """
35034
- No help available.
35035
- """
35036
35200
 
35037
35201
  class time_constraints(TUIMenu):
35038
35202
  """
35039
35203
  No help available.
35040
35204
  """
35041
35205
  def __init__(self, service, version, mode, path):
35042
- self.moving_mesh_cfl_constraint = self.__class__.moving_mesh_cfl_constraint(service, version, mode, path + ["moving_mesh_cfl_constraint"])
35043
35206
  self.time_scale_options = self.__class__.time_scale_options(service, version, mode, path + ["time_scale_options"])
35044
- self.physics_based_constraint = self.__class__.physics_based_constraint(service, version, mode, path + ["physics_based_constraint"])
35045
35207
  self.verbosity = self.__class__.verbosity(service, version, mode, path + ["verbosity"])
35046
35208
  super().__init__(service, version, mode, path)
35047
- class physics_based_constraint(TUIMethod):
35048
- """
35049
- No help available.
35050
- """
35051
35209
  class verbosity(TUIMethod):
35052
35210
  """
35053
35211
  No help available.
35054
35212
  """
35055
35213
 
35056
- class moving_mesh_cfl_constraint(TUIMenu):
35057
- """
35058
- No help available.
35059
- """
35060
- def __init__(self, service, version, mode, path):
35061
- self.mesh_courant_number = self.__class__.mesh_courant_number(service, version, mode, path + ["mesh_courant_number"])
35062
- self.moving_mesh_constraint = self.__class__.moving_mesh_constraint(service, version, mode, path + ["moving_mesh_constraint"])
35063
- super().__init__(service, version, mode, path)
35064
- class mesh_courant_number(TUIMethod):
35065
- """
35066
- No help available.
35067
- """
35068
- class moving_mesh_constraint(TUIMethod):
35069
- """
35070
- No help available.
35071
- """
35072
-
35073
35214
  class time_scale_options(TUIMenu):
35074
35215
  """
35075
35216
  No help available.
@@ -35097,28 +35238,6 @@ class main_menu(TUIMenu):
35097
35238
  No help available.
35098
35239
  """
35099
35240
 
35100
- class solid_time_step_size(TUIMenu):
35101
- """
35102
- No help available.
35103
- """
35104
- def __init__(self, service, version, mode, path):
35105
- self.choose_auto_time_stepping = self.__class__.choose_auto_time_stepping(service, version, mode, path + ["choose_auto_time_stepping"])
35106
- self.enable_solid_time_step = self.__class__.enable_solid_time_step(service, version, mode, path + ["enable_solid_time_step"])
35107
- self.time_step_size = self.__class__.time_step_size(service, version, mode, path + ["time_step_size"])
35108
- super().__init__(service, version, mode, path)
35109
- class choose_auto_time_stepping(TUIMethod):
35110
- """
35111
- No help available.
35112
- """
35113
- class enable_solid_time_step(TUIMethod):
35114
- """
35115
- No help available.
35116
- """
35117
- class time_step_size(TUIMethod):
35118
- """
35119
- No help available.
35120
- """
35121
-
35122
35241
  class solve(TUIMenu):
35123
35242
  """
35124
35243
  Enter the solve menu.
@@ -38985,6 +39104,7 @@ class main_menu(TUIMenu):
38985
39104
  self.undo_2024r2_default_changes = self.__class__.undo_2024r2_default_changes(service, version, mode, path + ["undo_2024r2_default_changes"])
38986
39105
  self.undo_2025r1_default_changes = self.__class__.undo_2025r1_default_changes(service, version, mode, path + ["undo_2025r1_default_changes"])
38987
39106
  self.undo_2025r2_default_changes = self.__class__.undo_2025r2_default_changes(service, version, mode, path + ["undo_2025r2_default_changes"])
39107
+ self.undo_2026r1_default_changes = self.__class__.undo_2026r1_default_changes(service, version, mode, path + ["undo_2026r1_default_changes"])
38988
39108
  self.undo_r19_point_0_default_changes = self.__class__.undo_r19_point_0_default_changes(service, version, mode, path + ["undo_r19_point_0_default_changes"])
38989
39109
  super().__init__(service, version, mode, path)
38990
39110
  class undo_2019r1_default_changes(TUIMethod):
@@ -39031,6 +39151,10 @@ class main_menu(TUIMenu):
39031
39151
  """
39032
39152
  Undo default changes introduced in 2025R2.
39033
39153
  """
39154
+ class undo_2026r1_default_changes(TUIMethod):
39155
+ """
39156
+ Undo default changes introduced in 2026R1.
39157
+ """
39034
39158
  class undo_r19_point_0_default_changes(TUIMethod):
39035
39159
  """
39036
39160
  Undo default changes introduced in R19.0.