ansys-fluent-core 0.29.dev3__py3-none-any.whl → 0.30.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +31 -6
- ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py +22 -0
- ansys/fluent/core/_version.py +23 -1
- ansys/fluent/core/codegen/__init__.py +22 -0
- ansys/fluent/core/codegen/allapigen.py +38 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +22 -0
- ansys/fluent/core/codegen/data/__init__.py +21 -0
- ansys/fluent/core/codegen/data/fluent_gui_help_patch.py +22 -0
- ansys/fluent/core/codegen/data/meshing_utilities_examples.py +22 -0
- ansys/fluent/core/codegen/datamodelgen.py +40 -4
- ansys/fluent/core/codegen/print_fluent_version.py +22 -0
- ansys/fluent/core/codegen/settingsgen.py +67 -4
- ansys/fluent/core/codegen/tuigen.py +43 -5
- ansys/fluent/core/codegen/walk_api.py +22 -0
- ansys/fluent/core/codegen/write_settings_yaml.py +22 -0
- ansys/fluent/core/data_model_cache.py +22 -0
- ansys/fluent/core/examples/__init__.py +22 -0
- ansys/fluent/core/examples/downloads.py +22 -0
- ansys/fluent/core/exceptions.py +22 -0
- ansys/fluent/core/file_session.py +22 -0
- ansys/fluent/core/filereader/__init__.py +21 -0
- ansys/fluent/core/filereader/case_file.py +50 -6
- ansys/fluent/core/filereader/casereader.py +23 -1
- ansys/fluent/core/filereader/data_file.py +22 -0
- ansys/fluent/core/filereader/lispy.py +22 -0
- ansys/fluent/core/fluent_connection.py +24 -2
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +16 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +41 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +33 -5
- ansys/fluent/core/generated/solver/settings_222.py +0 -72
- ansys/fluent/core/generated/solver/settings_222.pyi +0 -307
- ansys/fluent/core/generated/solver/settings_231.py +0 -574
- ansys/fluent/core/generated/solver/settings_231.pyi +0 -561
- ansys/fluent/core/generated/solver/settings_232.py +0 -527
- ansys/fluent/core/generated/solver/settings_232.pyi +0 -2803
- ansys/fluent/core/generated/solver/settings_241.py +0 -478
- ansys/fluent/core/generated/solver/settings_241.pyi +0 -522
- ansys/fluent/core/generated/solver/settings_242.py +0 -361
- ansys/fluent/core/generated/solver/settings_242.pyi +0 -591
- ansys/fluent/core/generated/solver/settings_251.py +0 -399
- ansys/fluent/core/generated/solver/settings_251.pyi +0 -629
- ansys/fluent/core/generated/solver/settings_252.py +11896 -7129
- ansys/fluent/core/generated/solver/settings_252.pyi +9127 -4847
- ansys/fluent/core/generated/solver/tui_252.py +549 -179
- ansys/fluent/core/get_build_details.py +22 -0
- ansys/fluent/core/journaling.py +38 -0
- ansys/fluent/core/launcher/__init__.py +22 -0
- ansys/fluent/core/launcher/container_launcher.py +63 -55
- ansys/fluent/core/launcher/error_handler.py +22 -0
- ansys/fluent/core/launcher/fluent_container.py +23 -1
- ansys/fluent/core/launcher/launcher.py +52 -4
- ansys/fluent/core/launcher/launcher_utils.py +24 -2
- ansys/fluent/core/launcher/pim_launcher.py +120 -86
- ansys/fluent/core/launcher/process_launch_string.py +22 -0
- ansys/fluent/core/launcher/pyfluent_enums.py +22 -0
- ansys/fluent/core/launcher/server_info.py +22 -0
- ansys/fluent/core/launcher/slurm_launcher.py +23 -1
- ansys/fluent/core/launcher/standalone_launcher.py +68 -63
- ansys/fluent/core/launcher/watchdog.py +22 -0
- ansys/fluent/core/logging.py +22 -0
- ansys/fluent/core/meshing/meshing_workflow.py +22 -0
- ansys/fluent/core/parametric.py +22 -0
- ansys/fluent/core/post_objects/__init__.py +21 -0
- ansys/fluent/core/post_objects/check_in_notebook.py +22 -0
- ansys/fluent/core/post_objects/meta.py +28 -6
- ansys/fluent/core/post_objects/post_helper.py +22 -0
- ansys/fluent/core/post_objects/post_object_definitions.py +22 -0
- ansys/fluent/core/post_objects/post_objects_container.py +22 -0
- ansys/fluent/core/post_objects/singleton_meta.py +22 -0
- ansys/fluent/core/post_objects/timing_decorator.py +22 -0
- ansys/fluent/core/pyfluent_warnings.py +55 -0
- ansys/fluent/core/report.py +77 -0
- ansys/fluent/core/rpvars.py +22 -0
- ansys/fluent/core/scheduler/__init__.py +22 -0
- ansys/fluent/core/scheduler/load_machines.py +22 -0
- ansys/fluent/core/scheduler/machine_list.py +22 -0
- ansys/fluent/core/search.py +22 -0
- ansys/fluent/core/services/__init__.py +22 -0
- ansys/fluent/core/services/api_upgrade.py +22 -0
- ansys/fluent/core/services/app_utilities.py +38 -0
- ansys/fluent/core/services/batch_ops.py +22 -0
- ansys/fluent/core/services/datamodel_se.py +22 -2
- ansys/fluent/core/services/datamodel_tui.py +22 -0
- ansys/fluent/core/services/deprecated_field_data.py +24 -2
- ansys/fluent/core/services/events.py +22 -0
- ansys/fluent/core/services/field_data.py +46 -15
- ansys/fluent/core/services/health_check.py +22 -0
- ansys/fluent/core/services/interceptors.py +22 -0
- ansys/fluent/core/services/monitor.py +22 -0
- ansys/fluent/core/services/reduction.py +22 -0
- ansys/fluent/core/services/scheme_eval.py +22 -0
- ansys/fluent/core/services/settings.py +22 -0
- ansys/fluent/core/services/solution_variables.py +23 -1
- ansys/fluent/core/services/streaming.py +22 -0
- ansys/fluent/core/services/transcript.py +22 -0
- ansys/fluent/core/session.py +36 -1
- ansys/fluent/core/session_base_meshing.py +22 -0
- ansys/fluent/core/session_meshing.py +22 -0
- ansys/fluent/core/session_meshing.pyi +22 -0
- ansys/fluent/core/session_pure_meshing.py +22 -0
- ansys/fluent/core/session_pure_meshing.pyi +22 -0
- ansys/fluent/core/session_shared.py +22 -0
- ansys/fluent/core/session_solver.py +23 -1
- ansys/fluent/core/session_solver.pyi +22 -0
- ansys/fluent/core/session_solver_aero.py +22 -0
- ansys/fluent/core/session_solver_icing.py +22 -0
- ansys/fluent/core/session_solver_lite.py +22 -0
- ansys/fluent/core/solver/__init__.py +22 -0
- ansys/fluent/core/solver/error_message.py +22 -0
- ansys/fluent/core/solver/flobject.py +26 -1
- ansys/fluent/core/solver/flunits.py +22 -0
- ansys/fluent/core/solver/function/__init__.py +22 -0
- ansys/fluent/core/solver/function/reduction.py +22 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +22 -0
- ansys/fluent/core/solver/settings_builtin_data.py +22 -0
- ansys/fluent/core/solver/settings_external.py +22 -0
- ansys/fluent/core/streaming_services/__init__.py +21 -0
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +22 -0
- ansys/fluent/core/streaming_services/datamodel_streaming.py +22 -0
- ansys/fluent/core/streaming_services/events_streaming.py +23 -1
- ansys/fluent/core/streaming_services/field_data_streaming.py +22 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +23 -1
- ansys/fluent/core/streaming_services/streaming.py +22 -0
- ansys/fluent/core/streaming_services/transcript_streaming.py +22 -0
- ansys/fluent/core/systemcoupling.py +22 -0
- ansys/fluent/core/utils/__init__.py +22 -0
- ansys/fluent/core/utils/data_transfer.py +22 -0
- ansys/fluent/core/utils/deprecate.py +25 -2
- ansys/fluent/core/utils/dictionary_operations.py +22 -0
- ansys/fluent/core/utils/dump_session_data.py +22 -0
- ansys/fluent/core/utils/event_loop.py +22 -0
- ansys/fluent/core/utils/execution.py +22 -0
- ansys/fluent/core/utils/file_transfer_service.py +26 -4
- ansys/fluent/core/utils/fix_doc.py +22 -0
- ansys/fluent/core/utils/fldoc.py +22 -0
- ansys/fluent/core/utils/fluent_version.py +22 -0
- ansys/fluent/core/utils/networking.py +22 -0
- ansys/fluent/core/utils/setup_for_fluent.py +22 -0
- ansys/fluent/core/workflow.py +26 -1
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/LICENSE +8 -8
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/METADATA +10 -8
- ansys_fluent_core-0.30.dev1.dist-info/RECORD +219 -0
- ansys/fluent/core/warnings.py +0 -33
- ansys_fluent_core-0.29.dev3.dist-info/RECORD +0 -218
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/WHEEL +0 -0
|
@@ -363,7 +363,7 @@ class main_menu(TUIMenu):
|
|
|
363
363
|
super().__init__(service, version, mode, path)
|
|
364
364
|
class contact_face_zones(TUIMethod):
|
|
365
365
|
"""
|
|
366
|
-
|
|
366
|
+
No help available.
|
|
367
367
|
"""
|
|
368
368
|
class contact_method(TUIMethod):
|
|
369
369
|
"""
|
|
@@ -371,27 +371,27 @@ class main_menu(TUIMenu):
|
|
|
371
371
|
"""
|
|
372
372
|
class contact_threshold(TUIMethod):
|
|
373
373
|
"""
|
|
374
|
-
|
|
374
|
+
No help available.
|
|
375
375
|
"""
|
|
376
376
|
class contact_udf(TUIMethod):
|
|
377
377
|
"""
|
|
378
|
-
|
|
378
|
+
No help available.
|
|
379
379
|
"""
|
|
380
380
|
class flow_control(TUIMethod):
|
|
381
381
|
"""
|
|
382
|
-
|
|
382
|
+
No help available.
|
|
383
383
|
"""
|
|
384
384
|
class render_contact_cells(TUIMethod):
|
|
385
385
|
"""
|
|
386
|
-
|
|
386
|
+
No help available.
|
|
387
387
|
"""
|
|
388
388
|
class update_contact_marks(TUIMethod):
|
|
389
389
|
"""
|
|
390
|
-
|
|
390
|
+
No help available.
|
|
391
391
|
"""
|
|
392
392
|
class verbosity(TUIMethod):
|
|
393
393
|
"""
|
|
394
|
-
|
|
394
|
+
No help available.
|
|
395
395
|
"""
|
|
396
396
|
|
|
397
397
|
class flow_control_parameters(TUIMenu):
|
|
@@ -405,16 +405,15 @@ class main_menu(TUIMenu):
|
|
|
405
405
|
super().__init__(service, version, mode, path)
|
|
406
406
|
class create_flow_control_zone(TUIMethod):
|
|
407
407
|
"""
|
|
408
|
-
|
|
408
|
+
No help available.
|
|
409
409
|
"""
|
|
410
410
|
class delete_flow_control_zone(TUIMethod):
|
|
411
411
|
"""
|
|
412
|
-
|
|
412
|
+
No help available.
|
|
413
413
|
"""
|
|
414
414
|
class solution_stabilization(TUIMethod):
|
|
415
415
|
"""
|
|
416
|
-
|
|
417
|
-
the application of solution controls to improve the stability of the solver.
|
|
416
|
+
No help available.
|
|
418
417
|
"""
|
|
419
418
|
|
|
420
419
|
class implicit_update_parameters(TUIMenu):
|
|
@@ -428,15 +427,15 @@ class main_menu(TUIMenu):
|
|
|
428
427
|
super().__init__(service, version, mode, path)
|
|
429
428
|
class motion_relaxation(TUIMethod):
|
|
430
429
|
"""
|
|
431
|
-
|
|
430
|
+
No help available.
|
|
432
431
|
"""
|
|
433
432
|
class residual_criteria(TUIMethod):
|
|
434
433
|
"""
|
|
435
|
-
|
|
434
|
+
No help available.
|
|
436
435
|
"""
|
|
437
436
|
class update_interval(TUIMethod):
|
|
438
437
|
"""
|
|
439
|
-
|
|
438
|
+
No help available.
|
|
440
439
|
"""
|
|
441
440
|
|
|
442
441
|
class in_cylinder_parameters(TUIMenu):
|
|
@@ -457,19 +456,19 @@ class main_menu(TUIMenu):
|
|
|
457
456
|
super().__init__(service, version, mode, path)
|
|
458
457
|
class crank_angle_step(TUIMethod):
|
|
459
458
|
"""
|
|
460
|
-
|
|
459
|
+
No help available.
|
|
461
460
|
"""
|
|
462
461
|
class crank_period(TUIMethod):
|
|
463
462
|
"""
|
|
464
|
-
|
|
463
|
+
No help available.
|
|
465
464
|
"""
|
|
466
465
|
class max_crank_angle_step(TUIMethod):
|
|
467
466
|
"""
|
|
468
|
-
|
|
467
|
+
No help available.
|
|
469
468
|
"""
|
|
470
469
|
class minimum_lift(TUIMethod):
|
|
471
470
|
"""
|
|
472
|
-
|
|
471
|
+
No help available.
|
|
473
472
|
"""
|
|
474
473
|
class modify_lift(TUIMethod):
|
|
475
474
|
"""
|
|
@@ -481,7 +480,7 @@ class main_menu(TUIMenu):
|
|
|
481
480
|
"""
|
|
482
481
|
class piston_stroke_cutoff(TUIMethod):
|
|
483
482
|
"""
|
|
484
|
-
|
|
483
|
+
No help available.
|
|
485
484
|
"""
|
|
486
485
|
class position_starting_mesh(TUIMethod):
|
|
487
486
|
"""
|
|
@@ -493,7 +492,7 @@ class main_menu(TUIMenu):
|
|
|
493
492
|
"""
|
|
494
493
|
class starting_crank_angle(TUIMethod):
|
|
495
494
|
"""
|
|
496
|
-
|
|
495
|
+
No help available.
|
|
497
496
|
"""
|
|
498
497
|
|
|
499
498
|
class layering_parameters(TUIMenu):
|
|
@@ -1775,7 +1774,7 @@ class main_menu(TUIMenu):
|
|
|
1775
1774
|
"""
|
|
1776
1775
|
class export_source_data_cgns(TUIMethod):
|
|
1777
1776
|
"""
|
|
1778
|
-
|
|
1777
|
+
Enable export of acoustic source data in CGNS format for Simcenter 3D Acoustics.
|
|
1779
1778
|
"""
|
|
1780
1779
|
class export_volumetric_sources(TUIMethod):
|
|
1781
1780
|
"""
|
|
@@ -1783,11 +1782,11 @@ class main_menu(TUIMenu):
|
|
|
1783
1782
|
"""
|
|
1784
1783
|
class export_volumetric_sources_cgns(TUIMethod):
|
|
1785
1784
|
"""
|
|
1786
|
-
Enable
|
|
1785
|
+
Enable export of volumetric acoustic source data in CGNS format for Simcenter 3D Acoustics.
|
|
1787
1786
|
"""
|
|
1788
1787
|
class ffowcs_williams(TUIMethod):
|
|
1789
1788
|
"""
|
|
1790
|
-
Enable/disable the Ffowcs
|
|
1789
|
+
Enable/disable the Ffowcs Williams and Hawkings model.
|
|
1791
1790
|
"""
|
|
1792
1791
|
class modal_analysis(TUIMethod):
|
|
1793
1792
|
"""
|
|
@@ -6040,6 +6039,7 @@ class main_menu(TUIMenu):
|
|
|
6040
6039
|
"""
|
|
6041
6040
|
def __init__(self, service, version, mode, path):
|
|
6042
6041
|
self.adapt = self.__class__.adapt(service, version, mode, path + ["adapt"])
|
|
6042
|
+
self.collar_grids = self.__class__.collar_grids(service, version, mode, path + ["collar_grids"])
|
|
6043
6043
|
self.cut_control = self.__class__.cut_control(service, version, mode, path + ["cut_control"])
|
|
6044
6044
|
self.options = self.__class__.options(service, version, mode, path + ["options"])
|
|
6045
6045
|
self.check = self.__class__.check(service, version, mode, path + ["check"])
|
|
@@ -6249,6 +6249,34 @@ class main_menu(TUIMenu):
|
|
|
6249
6249
|
Enable the option to use anisotropic adaption in prismatic cells.
|
|
6250
6250
|
"""
|
|
6251
6251
|
|
|
6252
|
+
class collar_grids(TUIMenu):
|
|
6253
|
+
"""
|
|
6254
|
+
Enter the overset collar grid menu.
|
|
6255
|
+
Collar grids only need to be defined if they are to be excluded from being cut during hole cutting.
|
|
6256
|
+
"""
|
|
6257
|
+
def __init__(self, service, version, mode, path):
|
|
6258
|
+
self.add = self.__class__.add(service, version, mode, path + ["add"])
|
|
6259
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
6260
|
+
self.delete_all = self.__class__.delete_all(service, version, mode, path + ["delete_all"])
|
|
6261
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
6262
|
+
super().__init__(service, version, mode, path)
|
|
6263
|
+
class add(TUIMethod):
|
|
6264
|
+
"""
|
|
6265
|
+
Add overset component grid to list of collar grids.
|
|
6266
|
+
"""
|
|
6267
|
+
class delete(TUIMethod):
|
|
6268
|
+
"""
|
|
6269
|
+
Remove a grid from list of collar grids.
|
|
6270
|
+
"""
|
|
6271
|
+
class delete_all(TUIMethod):
|
|
6272
|
+
"""
|
|
6273
|
+
Remove all grids from collar grid list.
|
|
6274
|
+
"""
|
|
6275
|
+
class list(TUIMethod):
|
|
6276
|
+
"""
|
|
6277
|
+
List all grids on collar grid list.
|
|
6278
|
+
"""
|
|
6279
|
+
|
|
6252
6280
|
class cut_control(TUIMenu):
|
|
6253
6281
|
"""
|
|
6254
6282
|
Enter the overset hole cut control menu.
|
|
@@ -6326,6 +6354,7 @@ class main_menu(TUIMenu):
|
|
|
6326
6354
|
self.overlap_boundaries = self.__class__.overlap_boundaries(service, version, mode, path + ["overlap_boundaries"])
|
|
6327
6355
|
self.parallel = self.__class__.parallel(service, version, mode, path + ["parallel"])
|
|
6328
6356
|
self.partial_cut_faces = self.__class__.partial_cut_faces(service, version, mode, path + ["partial_cut_faces"])
|
|
6357
|
+
self.protect_collar_grids = self.__class__.protect_collar_grids(service, version, mode, path + ["protect_collar_grids"])
|
|
6329
6358
|
self.render_receptor_cells = self.__class__.render_receptor_cells(service, version, mode, path + ["render_receptor_cells"])
|
|
6330
6359
|
self.solve_island_removal = self.__class__.solve_island_removal(service, version, mode, path + ["solve_island_removal"])
|
|
6331
6360
|
self.transient_caching = self.__class__.transient_caching(service, version, mode, path + ["transient_caching"])
|
|
@@ -6380,6 +6409,10 @@ class main_menu(TUIMenu):
|
|
|
6380
6409
|
"""
|
|
6381
6410
|
Enable enhanced hole cutting where cut faces partially overlap.
|
|
6382
6411
|
"""
|
|
6412
|
+
class protect_collar_grids(TUIMethod):
|
|
6413
|
+
"""
|
|
6414
|
+
Protect user defined collar grids from getting cut during hole cutting.
|
|
6415
|
+
"""
|
|
6383
6416
|
class render_receptor_cells(TUIMethod):
|
|
6384
6417
|
"""
|
|
6385
6418
|
Set the option to include receptor cells in postprocessing.
|
|
@@ -10428,6 +10461,7 @@ class main_menu(TUIMenu):
|
|
|
10428
10461
|
self.do_diffuse_reflectivity = self.__class__.do_diffuse_reflectivity(service, version, mode, path + ["do_diffuse_reflectivity"])
|
|
10429
10462
|
self.do_source = self.__class__.do_source(service, version, mode, path + ["do_source"])
|
|
10430
10463
|
self.do_specular_reflectivity = self.__class__.do_specular_reflectivity(service, version, mode, path + ["do_specular_reflectivity"])
|
|
10464
|
+
self.dynamic_cd_for_perforated_walls = self.__class__.dynamic_cd_for_perforated_walls(service, version, mode, path + ["dynamic_cd_for_perforated_walls"])
|
|
10431
10465
|
self.electrochemical_reaction_rate = self.__class__.electrochemical_reaction_rate(service, version, mode, path + ["electrochemical_reaction_rate"])
|
|
10432
10466
|
self.emissivity_weighting_factor = self.__class__.emissivity_weighting_factor(service, version, mode, path + ["emissivity_weighting_factor"])
|
|
10433
10467
|
self.execute_at_end = self.__class__.execute_at_end(service, version, mode, path + ["execute_at_end"])
|
|
@@ -10438,7 +10472,6 @@ class main_menu(TUIMenu):
|
|
|
10438
10472
|
self.net_reaction_rate = self.__class__.net_reaction_rate(service, version, mode, path + ["net_reaction_rate"])
|
|
10439
10473
|
self.particle_reaction_rate = self.__class__.particle_reaction_rate(service, version, mode, path + ["particle_reaction_rate"])
|
|
10440
10474
|
self.pdf_table = self.__class__.pdf_table(service, version, mode, path + ["pdf_table"])
|
|
10441
|
-
self.perforated_cd = self.__class__.perforated_cd(service, version, mode, path + ["perforated_cd"])
|
|
10442
10475
|
self.reacting_channel_solver = self.__class__.reacting_channel_solver(service, version, mode, path + ["reacting_channel_solver"])
|
|
10443
10476
|
self.read_case = self.__class__.read_case(service, version, mode, path + ["read_case"])
|
|
10444
10477
|
self.read_data = self.__class__.read_data(service, version, mode, path + ["read_data"])
|
|
@@ -10486,6 +10519,10 @@ class main_menu(TUIMenu):
|
|
|
10486
10519
|
"""
|
|
10487
10520
|
No help available.
|
|
10488
10521
|
"""
|
|
10522
|
+
class dynamic_cd_for_perforated_walls(TUIMethod):
|
|
10523
|
+
"""
|
|
10524
|
+
No help available.
|
|
10525
|
+
"""
|
|
10489
10526
|
class electrochemical_reaction_rate(TUIMethod):
|
|
10490
10527
|
"""
|
|
10491
10528
|
No help available.
|
|
@@ -10526,10 +10563,6 @@ class main_menu(TUIMenu):
|
|
|
10526
10563
|
"""
|
|
10527
10564
|
No help available.
|
|
10528
10565
|
"""
|
|
10529
|
-
class perforated_cd(TUIMethod):
|
|
10530
|
-
"""
|
|
10531
|
-
No help available.
|
|
10532
|
-
"""
|
|
10533
10566
|
class reacting_channel_solver(TUIMethod):
|
|
10534
10567
|
"""
|
|
10535
10568
|
No help available.
|
|
@@ -10662,6 +10695,7 @@ class main_menu(TUIMenu):
|
|
|
10662
10695
|
Enter the display menu.
|
|
10663
10696
|
"""
|
|
10664
10697
|
def __init__(self, service, version, mode, path):
|
|
10698
|
+
self.annotation = self.__class__.annotation(service, version, mode, path + ["annotation"])
|
|
10665
10699
|
self.define = self.__class__.define(service, version, mode, path + ["define"])
|
|
10666
10700
|
self.display = self.__class__.display(service, version, mode, path + ["display"])
|
|
10667
10701
|
self.display_states = self.__class__.display_states(service, version, mode, path + ["display_states"])
|
|
@@ -10675,7 +10709,6 @@ class main_menu(TUIMenu):
|
|
|
10675
10709
|
self.set = self.__class__.set(service, version, mode, path + ["set"])
|
|
10676
10710
|
self.surface = self.__class__.surface(service, version, mode, path + ["surface"])
|
|
10677
10711
|
self.update_scene = self.__class__.update_scene(service, version, mode, path + ["update_scene"])
|
|
10678
|
-
self.view_sync = self.__class__.view_sync(service, version, mode, path + ["view_sync"])
|
|
10679
10712
|
self.views = self.__class__.views(service, version, mode, path + ["views"])
|
|
10680
10713
|
self.add_custom_vector = self.__class__.add_custom_vector(service, version, mode, path + ["add_custom_vector"])
|
|
10681
10714
|
self.annotate = self.__class__.annotate(service, version, mode, path + ["annotate"])
|
|
@@ -10720,7 +10753,7 @@ class main_menu(TUIMenu):
|
|
|
10720
10753
|
"""
|
|
10721
10754
|
class clear_annotations(TUIMethod):
|
|
10722
10755
|
"""
|
|
10723
|
-
|
|
10756
|
+
Toggle the visibility of annotations on the active graphics window.
|
|
10724
10757
|
"""
|
|
10725
10758
|
class close_window(TUIMethod):
|
|
10726
10759
|
"""
|
|
@@ -10839,6 +10872,63 @@ class main_menu(TUIMenu):
|
|
|
10839
10872
|
No help available.
|
|
10840
10873
|
"""
|
|
10841
10874
|
|
|
10875
|
+
class annotation(TUIMenu):
|
|
10876
|
+
"""
|
|
10877
|
+
No help available.
|
|
10878
|
+
"""
|
|
10879
|
+
def __init__(self, service, version, mode, path):
|
|
10880
|
+
self.annotate = self.__class__.annotate(service, version, mode, path + ["annotate"])
|
|
10881
|
+
self.clear_annotations = self.__class__.clear_annotations(service, version, mode, path + ["clear_annotations"])
|
|
10882
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
10883
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
10884
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
10885
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
10886
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
10887
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
10888
|
+
self.new = self.__class__.new(service, version, mode, path + ["new"])
|
|
10889
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
10890
|
+
super().__init__(service, version, mode, path)
|
|
10891
|
+
class annotate(TUIMethod):
|
|
10892
|
+
"""
|
|
10893
|
+
No help available.
|
|
10894
|
+
"""
|
|
10895
|
+
class clear_annotations(TUIMethod):
|
|
10896
|
+
"""
|
|
10897
|
+
No help available.
|
|
10898
|
+
"""
|
|
10899
|
+
class create(TUIMethod):
|
|
10900
|
+
"""
|
|
10901
|
+
No help available.
|
|
10902
|
+
"""
|
|
10903
|
+
class delete(TUIMethod):
|
|
10904
|
+
"""
|
|
10905
|
+
No help available.
|
|
10906
|
+
"""
|
|
10907
|
+
class edit(TUIMethod):
|
|
10908
|
+
"""
|
|
10909
|
+
Edit annotation object.
|
|
10910
|
+
"""
|
|
10911
|
+
class list(TUIMethod):
|
|
10912
|
+
"""
|
|
10913
|
+
No help available.
|
|
10914
|
+
"""
|
|
10915
|
+
class list_properties(TUIMethod):
|
|
10916
|
+
"""
|
|
10917
|
+
No help available.
|
|
10918
|
+
"""
|
|
10919
|
+
class make_a_copy(TUIMethod):
|
|
10920
|
+
"""
|
|
10921
|
+
No help available.
|
|
10922
|
+
"""
|
|
10923
|
+
class new(TUIMethod):
|
|
10924
|
+
"""
|
|
10925
|
+
Create a new annotation object.
|
|
10926
|
+
"""
|
|
10927
|
+
class rename(TUIMethod):
|
|
10928
|
+
"""
|
|
10929
|
+
No help available.
|
|
10930
|
+
"""
|
|
10931
|
+
|
|
10842
10932
|
class define(TUIMenu):
|
|
10843
10933
|
"""
|
|
10844
10934
|
Enter Display define menu.
|
|
@@ -13441,48 +13531,6 @@ class main_menu(TUIMenu):
|
|
|
13441
13531
|
Apply transformation matrix on selected geometries.
|
|
13442
13532
|
"""
|
|
13443
13533
|
|
|
13444
|
-
class view_sync(TUIMenu):
|
|
13445
|
-
"""
|
|
13446
|
-
Synchronize window views.
|
|
13447
|
-
"""
|
|
13448
|
-
def __init__(self, service, version, mode, path):
|
|
13449
|
-
self.add = self.__class__.add(service, version, mode, path + ["add"])
|
|
13450
|
-
self.add_all = self.__class__.add_all(service, version, mode, path + ["add_all"])
|
|
13451
|
-
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
13452
|
-
self.remove = self.__class__.remove(service, version, mode, path + ["remove"])
|
|
13453
|
-
self.remove_all = self.__class__.remove_all(service, version, mode, path + ["remove_all"])
|
|
13454
|
-
self.start = self.__class__.start(service, version, mode, path + ["start"])
|
|
13455
|
-
self.stop = self.__class__.stop(service, version, mode, path + ["stop"])
|
|
13456
|
-
super().__init__(service, version, mode, path)
|
|
13457
|
-
class add(TUIMethod):
|
|
13458
|
-
"""
|
|
13459
|
-
Add list of window ids for synchronization.
|
|
13460
|
-
"""
|
|
13461
|
-
class add_all(TUIMethod):
|
|
13462
|
-
"""
|
|
13463
|
-
Synchronize all windows.
|
|
13464
|
-
"""
|
|
13465
|
-
class list(TUIMethod):
|
|
13466
|
-
"""
|
|
13467
|
-
Print window ids of open windows.
|
|
13468
|
-
"""
|
|
13469
|
-
class remove(TUIMethod):
|
|
13470
|
-
"""
|
|
13471
|
-
Remove list of window ids from synchronization.
|
|
13472
|
-
"""
|
|
13473
|
-
class remove_all(TUIMethod):
|
|
13474
|
-
"""
|
|
13475
|
-
Unsynchronize all windows.
|
|
13476
|
-
"""
|
|
13477
|
-
class start(TUIMethod):
|
|
13478
|
-
"""
|
|
13479
|
-
Start view synchronization.
|
|
13480
|
-
"""
|
|
13481
|
-
class stop(TUIMethod):
|
|
13482
|
-
"""
|
|
13483
|
-
Stop view synchronization.
|
|
13484
|
-
"""
|
|
13485
|
-
|
|
13486
13534
|
class views(TUIMenu):
|
|
13487
13535
|
"""
|
|
13488
13536
|
No help available.
|
|
@@ -13492,6 +13540,7 @@ class main_menu(TUIMenu):
|
|
|
13492
13540
|
self.display_states = self.__class__.display_states(service, version, mode, path + ["display_states"])
|
|
13493
13541
|
self.mirror_planes = self.__class__.mirror_planes(service, version, mode, path + ["mirror_planes"])
|
|
13494
13542
|
self.rendering_options = self.__class__.rendering_options(service, version, mode, path + ["rendering_options"])
|
|
13543
|
+
self.view_sync = self.__class__.view_sync(service, version, mode, path + ["view_sync"])
|
|
13495
13544
|
self.apply_mirror_planes = self.__class__.apply_mirror_planes(service, version, mode, path + ["apply_mirror_planes"])
|
|
13496
13545
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
13497
13546
|
self.default_view = self.__class__.default_view(service, version, mode, path + ["default_view"])
|
|
@@ -13812,6 +13861,48 @@ class main_menu(TUIMenu):
|
|
|
13812
13861
|
No help available.
|
|
13813
13862
|
"""
|
|
13814
13863
|
|
|
13864
|
+
class view_sync(TUIMenu):
|
|
13865
|
+
"""
|
|
13866
|
+
No help available.
|
|
13867
|
+
"""
|
|
13868
|
+
def __init__(self, service, version, mode, path):
|
|
13869
|
+
self.add = self.__class__.add(service, version, mode, path + ["add"])
|
|
13870
|
+
self.add_all = self.__class__.add_all(service, version, mode, path + ["add_all"])
|
|
13871
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
13872
|
+
self.remove = self.__class__.remove(service, version, mode, path + ["remove"])
|
|
13873
|
+
self.remove_all = self.__class__.remove_all(service, version, mode, path + ["remove_all"])
|
|
13874
|
+
self.start = self.__class__.start(service, version, mode, path + ["start"])
|
|
13875
|
+
self.stop = self.__class__.stop(service, version, mode, path + ["stop"])
|
|
13876
|
+
super().__init__(service, version, mode, path)
|
|
13877
|
+
class add(TUIMethod):
|
|
13878
|
+
"""
|
|
13879
|
+
No help available.
|
|
13880
|
+
"""
|
|
13881
|
+
class add_all(TUIMethod):
|
|
13882
|
+
"""
|
|
13883
|
+
No help available.
|
|
13884
|
+
"""
|
|
13885
|
+
class list(TUIMethod):
|
|
13886
|
+
"""
|
|
13887
|
+
No help available.
|
|
13888
|
+
"""
|
|
13889
|
+
class remove(TUIMethod):
|
|
13890
|
+
"""
|
|
13891
|
+
No help available.
|
|
13892
|
+
"""
|
|
13893
|
+
class remove_all(TUIMethod):
|
|
13894
|
+
"""
|
|
13895
|
+
No help available.
|
|
13896
|
+
"""
|
|
13897
|
+
class start(TUIMethod):
|
|
13898
|
+
"""
|
|
13899
|
+
No help available.
|
|
13900
|
+
"""
|
|
13901
|
+
class stop(TUIMethod):
|
|
13902
|
+
"""
|
|
13903
|
+
No help available.
|
|
13904
|
+
"""
|
|
13905
|
+
|
|
13815
13906
|
class file(TUIMenu):
|
|
13816
13907
|
"""
|
|
13817
13908
|
Enter the file menu.
|
|
@@ -15783,6 +15874,7 @@ class main_menu(TUIMenu):
|
|
|
15783
15874
|
self.delete_cell_by_id = self.__class__.delete_cell_by_id(service, version, mode, path + ["delete_cell_by_id"])
|
|
15784
15875
|
self.delete_cell_by_mark = self.__class__.delete_cell_by_mark(service, version, mode, path + ["delete_cell_by_mark"])
|
|
15785
15876
|
self.delete_cell_zone = self.__class__.delete_cell_zone(service, version, mode, path + ["delete_cell_zone"])
|
|
15877
|
+
self.disconnect_cell_zones = self.__class__.disconnect_cell_zones(service, version, mode, path + ["disconnect_cell_zones"])
|
|
15786
15878
|
self.extrude_face_zone_delta = self.__class__.extrude_face_zone_delta(service, version, mode, path + ["extrude_face_zone_delta"])
|
|
15787
15879
|
self.extrude_face_zone_para = self.__class__.extrude_face_zone_para(service, version, mode, path + ["extrude_face_zone_para"])
|
|
15788
15880
|
self.fuse_face_zones = self.__class__.fuse_face_zones(service, version, mode, path + ["fuse_face_zones"])
|
|
@@ -15877,6 +15969,10 @@ class main_menu(TUIMenu):
|
|
|
15877
15969
|
"""
|
|
15878
15970
|
No help available.
|
|
15879
15971
|
"""
|
|
15972
|
+
class disconnect_cell_zones(TUIMethod):
|
|
15973
|
+
"""
|
|
15974
|
+
No help available.
|
|
15975
|
+
"""
|
|
15880
15976
|
class extrude_face_zone_delta(TUIMethod):
|
|
15881
15977
|
"""
|
|
15882
15978
|
No help available.
|
|
@@ -17534,6 +17630,13 @@ class main_menu(TUIMenu):
|
|
|
17534
17630
|
"""
|
|
17535
17631
|
def __init__(self, service, version, mode, path):
|
|
17536
17632
|
self.concurrent = self.__class__.concurrent(service, version, mode, path + ["concurrent"])
|
|
17633
|
+
self.auto_dp_report_generation = self.__class__.auto_dp_report_generation(service, version, mode, path + ["auto_dp_report_generation"])
|
|
17634
|
+
self.auto_dp_report_html_export = self.__class__.auto_dp_report_html_export(service, version, mode, path + ["auto_dp_report_html_export"])
|
|
17635
|
+
self.auto_dp_report_pdf_export = self.__class__.auto_dp_report_pdf_export(service, version, mode, path + ["auto_dp_report_pdf_export"])
|
|
17636
|
+
self.auto_dp_report_pptx_export = self.__class__.auto_dp_report_pptx_export(service, version, mode, path + ["auto_dp_report_pptx_export"])
|
|
17637
|
+
self.auto_parametric_report_generation = self.__class__.auto_parametric_report_generation(service, version, mode, path + ["auto_parametric_report_generation"])
|
|
17638
|
+
self.auto_parametric_report_html_export = self.__class__.auto_parametric_report_html_export(service, version, mode, path + ["auto_parametric_report_html_export"])
|
|
17639
|
+
self.auto_parametric_report_update_dp_data = self.__class__.auto_parametric_report_update_dp_data(service, version, mode, path + ["auto_parametric_report_update_dp_data"])
|
|
17537
17640
|
self.auto_update_mesh_morphs = self.__class__.auto_update_mesh_morphs(service, version, mode, path + ["auto_update_mesh_morphs"])
|
|
17538
17641
|
self.print_update_method = self.__class__.print_update_method(service, version, mode, path + ["print_update_method"])
|
|
17539
17642
|
self.set_update_method = self.__class__.set_update_method(service, version, mode, path + ["set_update_method"])
|
|
@@ -17541,6 +17644,34 @@ class main_menu(TUIMenu):
|
|
|
17541
17644
|
self.update_current = self.__class__.update_current(service, version, mode, path + ["update_current"])
|
|
17542
17645
|
self.update_selected_design_points = self.__class__.update_selected_design_points(service, version, mode, path + ["update_selected_design_points"])
|
|
17543
17646
|
super().__init__(service, version, mode, path)
|
|
17647
|
+
class auto_dp_report_generation(TUIMethod):
|
|
17648
|
+
"""
|
|
17649
|
+
Enable Automatic Generation of DP Report.
|
|
17650
|
+
"""
|
|
17651
|
+
class auto_dp_report_html_export(TUIMethod):
|
|
17652
|
+
"""
|
|
17653
|
+
Enable Automatic HTML Export of DP Report.
|
|
17654
|
+
"""
|
|
17655
|
+
class auto_dp_report_pdf_export(TUIMethod):
|
|
17656
|
+
"""
|
|
17657
|
+
Enable Automatic PDF Export of DP Report.
|
|
17658
|
+
"""
|
|
17659
|
+
class auto_dp_report_pptx_export(TUIMethod):
|
|
17660
|
+
"""
|
|
17661
|
+
Enable Automatic PPTX Export of DP Report.
|
|
17662
|
+
"""
|
|
17663
|
+
class auto_parametric_report_generation(TUIMethod):
|
|
17664
|
+
"""
|
|
17665
|
+
Enable Automatic Generation of Parametric Report.
|
|
17666
|
+
"""
|
|
17667
|
+
class auto_parametric_report_html_export(TUIMethod):
|
|
17668
|
+
"""
|
|
17669
|
+
Enable Automatic HTML Export of Parametric Report.
|
|
17670
|
+
"""
|
|
17671
|
+
class auto_parametric_report_update_dp_data(TUIMethod):
|
|
17672
|
+
"""
|
|
17673
|
+
Enable Regeneration of 'Out of Date' Design Point Report Data Prior To Automatic Generation of Parametric Report.
|
|
17674
|
+
"""
|
|
17544
17675
|
class auto_update_mesh_morphs(TUIMethod):
|
|
17545
17676
|
"""
|
|
17546
17677
|
Enable Auto Mesh Morphing Update.
|
|
@@ -17830,7 +17961,7 @@ class main_menu(TUIMenu):
|
|
|
17830
17961
|
super().__init__(service, version, mode, path)
|
|
17831
17962
|
class change_fft_ref_pressure(TUIMethod):
|
|
17832
17963
|
"""
|
|
17833
|
-
|
|
17964
|
+
No help available.
|
|
17834
17965
|
"""
|
|
17835
17966
|
class circum_avg_axial(TUIMethod):
|
|
17836
17967
|
"""
|
|
@@ -20813,15 +20944,15 @@ class main_menu(TUIMenu):
|
|
|
20813
20944
|
super().__init__(service, version, mode, path)
|
|
20814
20945
|
class isentropic(TUIMethod):
|
|
20815
20946
|
"""
|
|
20816
|
-
|
|
20947
|
+
No help available.
|
|
20817
20948
|
"""
|
|
20818
20949
|
class polytropic(TUIMethod):
|
|
20819
20950
|
"""
|
|
20820
|
-
|
|
20951
|
+
No help available.
|
|
20821
20952
|
"""
|
|
20822
20953
|
class use_in_turbo_report(TUIMethod):
|
|
20823
20954
|
"""
|
|
20824
|
-
|
|
20955
|
+
No help available.
|
|
20825
20956
|
"""
|
|
20826
20957
|
|
|
20827
20958
|
class fluxes(TUIMenu):
|
|
@@ -21259,6 +21390,7 @@ class main_menu(TUIMenu):
|
|
|
21259
21390
|
self.rename_simulation_report = self.__class__.rename_simulation_report(service, version, mode, path + ["rename_simulation_report"])
|
|
21260
21391
|
self.reset_report_to_defaults = self.__class__.reset_report_to_defaults(service, version, mode, path + ["reset_report_to_defaults"])
|
|
21261
21392
|
self.view_simulation_report = self.__class__.view_simulation_report(service, version, mode, path + ["view_simulation_report"])
|
|
21393
|
+
self.view_simulation_report_in_browser = self.__class__.view_simulation_report_in_browser(service, version, mode, path + ["view_simulation_report_in_browser"])
|
|
21262
21394
|
self.write_report_names_to_file = self.__class__.write_report_names_to_file(service, version, mode, path + ["write_report_names_to_file"])
|
|
21263
21395
|
self.write_simulation_report_template_file = self.__class__.write_simulation_report_template_file(service, version, mode, path + ["write_simulation_report_template_file"])
|
|
21264
21396
|
super().__init__(service, version, mode, path)
|
|
@@ -21310,6 +21442,10 @@ class main_menu(TUIMenu):
|
|
|
21310
21442
|
"""
|
|
21311
21443
|
No help available.
|
|
21312
21444
|
"""
|
|
21445
|
+
class view_simulation_report_in_browser(TUIMethod):
|
|
21446
|
+
"""
|
|
21447
|
+
No help available.
|
|
21448
|
+
"""
|
|
21313
21449
|
class write_report_names_to_file(TUIMethod):
|
|
21314
21450
|
"""
|
|
21315
21451
|
No help available.
|
|
@@ -21533,6 +21669,7 @@ class main_menu(TUIMenu):
|
|
|
21533
21669
|
"""
|
|
21534
21670
|
def __init__(self, service, version, mode, path):
|
|
21535
21671
|
self.animations = self.__class__.animations(service, version, mode, path + ["animations"])
|
|
21672
|
+
self.annotation = self.__class__.annotation(service, version, mode, path + ["annotation"])
|
|
21536
21673
|
self.custom_field_functions = self.__class__.custom_field_functions(service, version, mode, path + ["custom_field_functions"])
|
|
21537
21674
|
self.custom_vectors = self.__class__.custom_vectors(service, version, mode, path + ["custom_vectors"])
|
|
21538
21675
|
self.graphics = self.__class__.graphics(service, version, mode, path + ["graphics"])
|
|
@@ -21757,6 +21894,58 @@ class main_menu(TUIMenu):
|
|
|
21757
21894
|
No help available.
|
|
21758
21895
|
"""
|
|
21759
21896
|
|
|
21897
|
+
class annotation(TUIMenu):
|
|
21898
|
+
"""
|
|
21899
|
+
No help available.
|
|
21900
|
+
"""
|
|
21901
|
+
def __init__(self, service, version, mode, path):
|
|
21902
|
+
self.annotate = self.__class__.annotate(service, version, mode, path + ["annotate"])
|
|
21903
|
+
self.clear_annotations = self.__class__.clear_annotations(service, version, mode, path + ["clear_annotations"])
|
|
21904
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
21905
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
21906
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
21907
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
21908
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
21909
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
21910
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
21911
|
+
super().__init__(service, version, mode, path)
|
|
21912
|
+
class annotate(TUIMethod):
|
|
21913
|
+
"""
|
|
21914
|
+
No help available.
|
|
21915
|
+
"""
|
|
21916
|
+
class clear_annotations(TUIMethod):
|
|
21917
|
+
"""
|
|
21918
|
+
No help available.
|
|
21919
|
+
"""
|
|
21920
|
+
class create(TUIMethod):
|
|
21921
|
+
"""
|
|
21922
|
+
No help available.
|
|
21923
|
+
"""
|
|
21924
|
+
class delete(TUIMethod):
|
|
21925
|
+
"""
|
|
21926
|
+
No help available.
|
|
21927
|
+
"""
|
|
21928
|
+
class edit(TUIMethod):
|
|
21929
|
+
"""
|
|
21930
|
+
Edit annotation object.
|
|
21931
|
+
"""
|
|
21932
|
+
class list(TUIMethod):
|
|
21933
|
+
"""
|
|
21934
|
+
No help available.
|
|
21935
|
+
"""
|
|
21936
|
+
class list_properties(TUIMethod):
|
|
21937
|
+
"""
|
|
21938
|
+
No help available.
|
|
21939
|
+
"""
|
|
21940
|
+
class make_a_copy(TUIMethod):
|
|
21941
|
+
"""
|
|
21942
|
+
No help available.
|
|
21943
|
+
"""
|
|
21944
|
+
class rename(TUIMethod):
|
|
21945
|
+
"""
|
|
21946
|
+
No help available.
|
|
21947
|
+
"""
|
|
21948
|
+
|
|
21760
21949
|
class custom_field_functions(TUIMenu):
|
|
21761
21950
|
"""
|
|
21762
21951
|
No help available.
|
|
@@ -23080,6 +23269,7 @@ class main_menu(TUIMenu):
|
|
|
23080
23269
|
self.display_states = self.__class__.display_states(service, version, mode, path + ["display_states"])
|
|
23081
23270
|
self.mirror_planes = self.__class__.mirror_planes(service, version, mode, path + ["mirror_planes"])
|
|
23082
23271
|
self.rendering_options = self.__class__.rendering_options(service, version, mode, path + ["rendering_options"])
|
|
23272
|
+
self.view_sync = self.__class__.view_sync(service, version, mode, path + ["view_sync"])
|
|
23083
23273
|
self.apply_mirror_planes = self.__class__.apply_mirror_planes(service, version, mode, path + ["apply_mirror_planes"])
|
|
23084
23274
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
23085
23275
|
self.delete_view = self.__class__.delete_view(service, version, mode, path + ["delete_view"])
|
|
@@ -23390,6 +23580,48 @@ class main_menu(TUIMenu):
|
|
|
23390
23580
|
No help available.
|
|
23391
23581
|
"""
|
|
23392
23582
|
|
|
23583
|
+
class view_sync(TUIMenu):
|
|
23584
|
+
"""
|
|
23585
|
+
No help available.
|
|
23586
|
+
"""
|
|
23587
|
+
def __init__(self, service, version, mode, path):
|
|
23588
|
+
self.add = self.__class__.add(service, version, mode, path + ["add"])
|
|
23589
|
+
self.add_all = self.__class__.add_all(service, version, mode, path + ["add_all"])
|
|
23590
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
23591
|
+
self.remove = self.__class__.remove(service, version, mode, path + ["remove"])
|
|
23592
|
+
self.remove_all = self.__class__.remove_all(service, version, mode, path + ["remove_all"])
|
|
23593
|
+
self.start = self.__class__.start(service, version, mode, path + ["start"])
|
|
23594
|
+
self.stop = self.__class__.stop(service, version, mode, path + ["stop"])
|
|
23595
|
+
super().__init__(service, version, mode, path)
|
|
23596
|
+
class add(TUIMethod):
|
|
23597
|
+
"""
|
|
23598
|
+
No help available.
|
|
23599
|
+
"""
|
|
23600
|
+
class add_all(TUIMethod):
|
|
23601
|
+
"""
|
|
23602
|
+
No help available.
|
|
23603
|
+
"""
|
|
23604
|
+
class list(TUIMethod):
|
|
23605
|
+
"""
|
|
23606
|
+
No help available.
|
|
23607
|
+
"""
|
|
23608
|
+
class remove(TUIMethod):
|
|
23609
|
+
"""
|
|
23610
|
+
No help available.
|
|
23611
|
+
"""
|
|
23612
|
+
class remove_all(TUIMethod):
|
|
23613
|
+
"""
|
|
23614
|
+
No help available.
|
|
23615
|
+
"""
|
|
23616
|
+
class start(TUIMethod):
|
|
23617
|
+
"""
|
|
23618
|
+
No help available.
|
|
23619
|
+
"""
|
|
23620
|
+
class stop(TUIMethod):
|
|
23621
|
+
"""
|
|
23622
|
+
No help available.
|
|
23623
|
+
"""
|
|
23624
|
+
|
|
23393
23625
|
class volumes(TUIMenu):
|
|
23394
23626
|
"""
|
|
23395
23627
|
No help available.
|
|
@@ -23805,6 +24037,7 @@ class main_menu(TUIMenu):
|
|
|
23805
24037
|
self.xy_plot = self.__class__.xy_plot(service, version, mode, path + ["xy_plot"])
|
|
23806
24038
|
self.circum_avg_axial = self.__class__.circum_avg_axial(service, version, mode, path + ["circum_avg_axial"])
|
|
23807
24039
|
self.circum_avg_radial = self.__class__.circum_avg_radial(service, version, mode, path + ["circum_avg_radial"])
|
|
24040
|
+
self.fft = self.__class__.fft(service, version, mode, path + ["fft"])
|
|
23808
24041
|
self.plot_direction = self.__class__.plot_direction(service, version, mode, path + ["plot_direction"])
|
|
23809
24042
|
super().__init__(service, version, mode, path)
|
|
23810
24043
|
class circum_avg_axial(TUIMethod):
|
|
@@ -23815,6 +24048,10 @@ class main_menu(TUIMenu):
|
|
|
23815
24048
|
"""
|
|
23816
24049
|
No help available.
|
|
23817
24050
|
"""
|
|
24051
|
+
class fft(TUIMethod):
|
|
24052
|
+
"""
|
|
24053
|
+
No help available.
|
|
24054
|
+
"""
|
|
23818
24055
|
class plot_direction(TUIMethod):
|
|
23819
24056
|
"""
|
|
23820
24057
|
No help available.
|
|
@@ -25487,6 +25724,7 @@ class main_menu(TUIMenu):
|
|
|
25487
25724
|
"""
|
|
25488
25725
|
def __init__(self, service, version, mode, path):
|
|
25489
25726
|
self.discrete_phase = self.__class__.discrete_phase(service, version, mode, path + ["discrete_phase"])
|
|
25727
|
+
self.efficiency = self.__class__.efficiency(service, version, mode, path + ["efficiency"])
|
|
25490
25728
|
self.flow = self.__class__.flow(service, version, mode, path + ["flow"])
|
|
25491
25729
|
self.fluxes = self.__class__.fluxes(service, version, mode, path + ["fluxes"])
|
|
25492
25730
|
self.heat_exchanger = self.__class__.heat_exchanger(service, version, mode, path + ["heat_exchanger"])
|
|
@@ -25816,6 +26054,28 @@ class main_menu(TUIMenu):
|
|
|
25816
26054
|
No help available.
|
|
25817
26055
|
"""
|
|
25818
26056
|
|
|
26057
|
+
class efficiency(TUIMenu):
|
|
26058
|
+
"""
|
|
26059
|
+
No help available.
|
|
26060
|
+
"""
|
|
26061
|
+
def __init__(self, service, version, mode, path):
|
|
26062
|
+
self.isentropic = self.__class__.isentropic(service, version, mode, path + ["isentropic"])
|
|
26063
|
+
self.polytropic = self.__class__.polytropic(service, version, mode, path + ["polytropic"])
|
|
26064
|
+
self.use_in_turbo_report = self.__class__.use_in_turbo_report(service, version, mode, path + ["use_in_turbo_report"])
|
|
26065
|
+
super().__init__(service, version, mode, path)
|
|
26066
|
+
class isentropic(TUIMethod):
|
|
26067
|
+
"""
|
|
26068
|
+
No help available.
|
|
26069
|
+
"""
|
|
26070
|
+
class polytropic(TUIMethod):
|
|
26071
|
+
"""
|
|
26072
|
+
No help available.
|
|
26073
|
+
"""
|
|
26074
|
+
class use_in_turbo_report(TUIMethod):
|
|
26075
|
+
"""
|
|
26076
|
+
No help available.
|
|
26077
|
+
"""
|
|
26078
|
+
|
|
25819
26079
|
class flow(TUIMenu):
|
|
25820
26080
|
"""
|
|
25821
26081
|
No help available.
|
|
@@ -26021,6 +26281,7 @@ class main_menu(TUIMenu):
|
|
|
26021
26281
|
self.rename_simulation_report = self.__class__.rename_simulation_report(service, version, mode, path + ["rename_simulation_report"])
|
|
26022
26282
|
self.reset_report_to_defaults = self.__class__.reset_report_to_defaults(service, version, mode, path + ["reset_report_to_defaults"])
|
|
26023
26283
|
self.view_simulation_report = self.__class__.view_simulation_report(service, version, mode, path + ["view_simulation_report"])
|
|
26284
|
+
self.view_simulation_report_in_browser = self.__class__.view_simulation_report_in_browser(service, version, mode, path + ["view_simulation_report_in_browser"])
|
|
26024
26285
|
self.write_simulation_report_names_to_file = self.__class__.write_simulation_report_names_to_file(service, version, mode, path + ["write_simulation_report_names_to_file"])
|
|
26025
26286
|
self.write_simulation_report_template_file = self.__class__.write_simulation_report_template_file(service, version, mode, path + ["write_simulation_report_template_file"])
|
|
26026
26287
|
super().__init__(service, version, mode, path)
|
|
@@ -26072,6 +26333,10 @@ class main_menu(TUIMenu):
|
|
|
26072
26333
|
"""
|
|
26073
26334
|
No help available.
|
|
26074
26335
|
"""
|
|
26336
|
+
class view_simulation_report_in_browser(TUIMethod):
|
|
26337
|
+
"""
|
|
26338
|
+
No help available.
|
|
26339
|
+
"""
|
|
26075
26340
|
class write_simulation_report_names_to_file(TUIMethod):
|
|
26076
26341
|
"""
|
|
26077
26342
|
No help available.
|
|
@@ -28632,16 +28897,11 @@ class main_menu(TUIMenu):
|
|
|
28632
28897
|
No help available.
|
|
28633
28898
|
"""
|
|
28634
28899
|
def __init__(self, service, version, mode, path):
|
|
28635
|
-
self.
|
|
28900
|
+
self.specify_coarsening_rate = self.__class__.specify_coarsening_rate(service, version, mode, path + ["specify_coarsening_rate"])
|
|
28636
28901
|
self.enforce_laplace_coarsening = self.__class__.enforce_laplace_coarsening(service, version, mode, path + ["enforce_laplace_coarsening"])
|
|
28637
28902
|
self.increase_pre_sweeps = self.__class__.increase_pre_sweeps(service, version, mode, path + ["increase_pre_sweeps"])
|
|
28638
28903
|
self.pre_sweeps = self.__class__.pre_sweeps(service, version, mode, path + ["pre_sweeps"])
|
|
28639
|
-
self.specify_coarsening_rate = self.__class__.specify_coarsening_rate(service, version, mode, path + ["specify_coarsening_rate"])
|
|
28640
28904
|
super().__init__(service, version, mode, path)
|
|
28641
|
-
class coarsen_rate(TUIMethod):
|
|
28642
|
-
"""
|
|
28643
|
-
No help available.
|
|
28644
|
-
"""
|
|
28645
28905
|
class enforce_laplace_coarsening(TUIMethod):
|
|
28646
28906
|
"""
|
|
28647
28907
|
No help available.
|
|
@@ -28654,10 +28914,23 @@ class main_menu(TUIMenu):
|
|
|
28654
28914
|
"""
|
|
28655
28915
|
No help available.
|
|
28656
28916
|
"""
|
|
28657
|
-
|
|
28917
|
+
|
|
28918
|
+
class specify_coarsening_rate(TUIMenu):
|
|
28658
28919
|
"""
|
|
28659
28920
|
No help available.
|
|
28660
28921
|
"""
|
|
28922
|
+
def __init__(self, service, version, mode, path):
|
|
28923
|
+
self.coarsen_rate = self.__class__.coarsen_rate(service, version, mode, path + ["coarsen_rate"])
|
|
28924
|
+
self.specify_coarsening_rate = self.__class__.specify_coarsening_rate(service, version, mode, path + ["specify_coarsening_rate"])
|
|
28925
|
+
super().__init__(service, version, mode, path)
|
|
28926
|
+
class coarsen_rate(TUIMethod):
|
|
28927
|
+
"""
|
|
28928
|
+
No help available.
|
|
28929
|
+
"""
|
|
28930
|
+
class specify_coarsening_rate(TUIMethod):
|
|
28931
|
+
"""
|
|
28932
|
+
No help available.
|
|
28933
|
+
"""
|
|
28661
28934
|
|
|
28662
28935
|
class methods(TUIMenu):
|
|
28663
28936
|
"""
|
|
@@ -28666,25 +28939,41 @@ class main_menu(TUIMenu):
|
|
|
28666
28939
|
def __init__(self, service, version, mode, path):
|
|
28667
28940
|
self.gradient_controls = self.__class__.gradient_controls(service, version, mode, path + ["gradient_controls"])
|
|
28668
28941
|
self.pv_coupling_controls = self.__class__.pv_coupling_controls(service, version, mode, path + ["pv_coupling_controls"])
|
|
28669
|
-
self.pv_coupling_method = self.__class__.pv_coupling_method(service, version, mode, path + ["pv_coupling_method"])
|
|
28670
|
-
self.specify_gradient_method = self.__class__.specify_gradient_method(service, version, mode, path + ["specify_gradient_method"])
|
|
28671
28942
|
super().__init__(service, version, mode, path)
|
|
28672
|
-
|
|
28673
|
-
|
|
28674
|
-
No help available.
|
|
28675
|
-
"""
|
|
28676
|
-
class pv_coupling_controls(TUIMethod):
|
|
28677
|
-
"""
|
|
28678
|
-
No help available.
|
|
28679
|
-
"""
|
|
28680
|
-
class pv_coupling_method(TUIMethod):
|
|
28943
|
+
|
|
28944
|
+
class gradient_controls(TUIMenu):
|
|
28681
28945
|
"""
|
|
28682
28946
|
No help available.
|
|
28683
28947
|
"""
|
|
28684
|
-
|
|
28948
|
+
def __init__(self, service, version, mode, path):
|
|
28949
|
+
self.gradient_controls = self.__class__.gradient_controls(service, version, mode, path + ["gradient_controls"])
|
|
28950
|
+
self.specify_gradient_method = self.__class__.specify_gradient_method(service, version, mode, path + ["specify_gradient_method"])
|
|
28951
|
+
super().__init__(service, version, mode, path)
|
|
28952
|
+
class gradient_controls(TUIMethod):
|
|
28953
|
+
"""
|
|
28954
|
+
No help available.
|
|
28955
|
+
"""
|
|
28956
|
+
class specify_gradient_method(TUIMethod):
|
|
28957
|
+
"""
|
|
28958
|
+
No help available.
|
|
28959
|
+
"""
|
|
28960
|
+
|
|
28961
|
+
class pv_coupling_controls(TUIMenu):
|
|
28685
28962
|
"""
|
|
28686
28963
|
No help available.
|
|
28687
28964
|
"""
|
|
28965
|
+
def __init__(self, service, version, mode, path):
|
|
28966
|
+
self.pv_coupling_controls = self.__class__.pv_coupling_controls(service, version, mode, path + ["pv_coupling_controls"])
|
|
28967
|
+
self.pv_coupling_method = self.__class__.pv_coupling_method(service, version, mode, path + ["pv_coupling_method"])
|
|
28968
|
+
super().__init__(service, version, mode, path)
|
|
28969
|
+
class pv_coupling_controls(TUIMethod):
|
|
28970
|
+
"""
|
|
28971
|
+
No help available.
|
|
28972
|
+
"""
|
|
28973
|
+
class pv_coupling_method(TUIMethod):
|
|
28974
|
+
"""
|
|
28975
|
+
No help available.
|
|
28976
|
+
"""
|
|
28688
28977
|
|
|
28689
28978
|
class miscellaneous(TUIMenu):
|
|
28690
28979
|
"""
|
|
@@ -29850,8 +30139,8 @@ class main_menu(TUIMenu):
|
|
|
29850
30139
|
def __init__(self, service, version, mode, path):
|
|
29851
30140
|
self.axisymmetric = self.__class__.axisymmetric(service, version, mode, path + ["axisymmetric"])
|
|
29852
30141
|
self.convergence_acceleration_for_stretched_meshes = self.__class__.convergence_acceleration_for_stretched_meshes(service, version, mode, path + ["convergence_acceleration_for_stretched_meshes"])
|
|
30142
|
+
self.divergence_prevention = self.__class__.divergence_prevention(service, version, mode, path + ["divergence_prevention"])
|
|
29853
30143
|
self.expert = self.__class__.expert(service, version, mode, path + ["expert"])
|
|
29854
|
-
self.flux_type = self.__class__.flux_type(service, version, mode, path + ["flux_type"])
|
|
29855
30144
|
self.high_order_term_relaxation = self.__class__.high_order_term_relaxation(service, version, mode, path + ["high_order_term_relaxation"])
|
|
29856
30145
|
self.high_speed_numerics = self.__class__.high_speed_numerics(service, version, mode, path + ["high_speed_numerics"])
|
|
29857
30146
|
self.multiphase_numerics = self.__class__.multiphase_numerics(service, version, mode, path + ["multiphase_numerics"])
|
|
@@ -29947,6 +30236,23 @@ class main_menu(TUIMenu):
|
|
|
29947
30236
|
No help available.
|
|
29948
30237
|
"""
|
|
29949
30238
|
|
|
30239
|
+
class divergence_prevention(TUIMenu):
|
|
30240
|
+
"""
|
|
30241
|
+
No help available.
|
|
30242
|
+
"""
|
|
30243
|
+
def __init__(self, service, version, mode, path):
|
|
30244
|
+
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30245
|
+
self.relaxation_factor = self.__class__.relaxation_factor(service, version, mode, path + ["relaxation_factor"])
|
|
30246
|
+
super().__init__(service, version, mode, path)
|
|
30247
|
+
class enable(TUIMethod):
|
|
30248
|
+
"""
|
|
30249
|
+
No help available.
|
|
30250
|
+
"""
|
|
30251
|
+
class relaxation_factor(TUIMethod):
|
|
30252
|
+
"""
|
|
30253
|
+
No help available.
|
|
30254
|
+
"""
|
|
30255
|
+
|
|
29950
30256
|
class expert(TUIMenu):
|
|
29951
30257
|
"""
|
|
29952
30258
|
No help available.
|
|
@@ -30020,78 +30326,32 @@ class main_menu(TUIMenu):
|
|
|
30020
30326
|
No help available.
|
|
30021
30327
|
"""
|
|
30022
30328
|
|
|
30023
|
-
class
|
|
30329
|
+
class high_order_term_relaxation(TUIMenu):
|
|
30024
30330
|
"""
|
|
30025
30331
|
No help available.
|
|
30026
30332
|
"""
|
|
30027
30333
|
def __init__(self, service, version, mode, path):
|
|
30028
|
-
self.
|
|
30029
|
-
self.
|
|
30334
|
+
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30335
|
+
self.relaxation_factor = self.__class__.relaxation_factor(service, version, mode, path + ["relaxation_factor"])
|
|
30336
|
+
self.select_variables = self.__class__.select_variables(service, version, mode, path + ["select_variables"])
|
|
30337
|
+
self.type = self.__class__.type(service, version, mode, path + ["type"])
|
|
30030
30338
|
super().__init__(service, version, mode, path)
|
|
30031
|
-
|
|
30032
|
-
class dbns_cases(TUIMenu):
|
|
30339
|
+
class enable(TUIMethod):
|
|
30033
30340
|
"""
|
|
30034
30341
|
No help available.
|
|
30035
30342
|
"""
|
|
30036
|
-
|
|
30037
|
-
self.flux_type = self.__class__.flux_type(service, version, mode, path + ["flux_type"])
|
|
30038
|
-
super().__init__(service, version, mode, path)
|
|
30039
|
-
class flux_type(TUIMethod):
|
|
30040
|
-
"""
|
|
30041
|
-
No help available.
|
|
30042
|
-
"""
|
|
30043
|
-
|
|
30044
|
-
class pbns_cases(TUIMenu):
|
|
30343
|
+
class relaxation_factor(TUIMethod):
|
|
30045
30344
|
"""
|
|
30046
30345
|
No help available.
|
|
30047
30346
|
"""
|
|
30048
|
-
|
|
30049
|
-
self.flux_auto_select = self.__class__.flux_auto_select(service, version, mode, path + ["flux_auto_select"])
|
|
30050
|
-
self.flux_type = self.__class__.flux_type(service, version, mode, path + ["flux_type"])
|
|
30051
|
-
super().__init__(service, version, mode, path)
|
|
30052
|
-
class flux_auto_select(TUIMethod):
|
|
30053
|
-
"""
|
|
30054
|
-
No help available.
|
|
30055
|
-
"""
|
|
30056
|
-
class flux_type(TUIMethod):
|
|
30057
|
-
"""
|
|
30058
|
-
No help available.
|
|
30059
|
-
"""
|
|
30060
|
-
|
|
30061
|
-
class high_order_term_relaxation(TUIMenu):
|
|
30062
|
-
"""
|
|
30063
|
-
No help available.
|
|
30064
|
-
"""
|
|
30065
|
-
def __init__(self, service, version, mode, path):
|
|
30066
|
-
self.options = self.__class__.options(service, version, mode, path + ["options"])
|
|
30067
|
-
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30068
|
-
super().__init__(service, version, mode, path)
|
|
30069
|
-
class enable(TUIMethod):
|
|
30347
|
+
class select_variables(TUIMethod):
|
|
30070
30348
|
"""
|
|
30071
30349
|
No help available.
|
|
30072
30350
|
"""
|
|
30073
|
-
|
|
30074
|
-
class options(TUIMenu):
|
|
30351
|
+
class type(TUIMethod):
|
|
30075
30352
|
"""
|
|
30076
30353
|
No help available.
|
|
30077
30354
|
"""
|
|
30078
|
-
def __init__(self, service, version, mode, path):
|
|
30079
|
-
self.relaxation_factor = self.__class__.relaxation_factor(service, version, mode, path + ["relaxation_factor"])
|
|
30080
|
-
self.select_variables = self.__class__.select_variables(service, version, mode, path + ["select_variables"])
|
|
30081
|
-
self.type = self.__class__.type(service, version, mode, path + ["type"])
|
|
30082
|
-
super().__init__(service, version, mode, path)
|
|
30083
|
-
class relaxation_factor(TUIMethod):
|
|
30084
|
-
"""
|
|
30085
|
-
No help available.
|
|
30086
|
-
"""
|
|
30087
|
-
class select_variables(TUIMethod):
|
|
30088
|
-
"""
|
|
30089
|
-
No help available.
|
|
30090
|
-
"""
|
|
30091
|
-
class type(TUIMethod):
|
|
30092
|
-
"""
|
|
30093
|
-
No help available.
|
|
30094
|
-
"""
|
|
30095
30355
|
|
|
30096
30356
|
class high_speed_numerics(TUIMenu):
|
|
30097
30357
|
"""
|
|
@@ -30972,16 +31232,11 @@ class main_menu(TUIMenu):
|
|
|
30972
31232
|
"""
|
|
30973
31233
|
def __init__(self, service, version, mode, path):
|
|
30974
31234
|
self.nb_gradient = self.__class__.nb_gradient(service, version, mode, path + ["nb_gradient"])
|
|
30975
|
-
self.nb_gradient_dbns = self.__class__.nb_gradient_dbns(service, version, mode, path + ["nb_gradient_dbns"])
|
|
30976
31235
|
super().__init__(service, version, mode, path)
|
|
30977
31236
|
class nb_gradient(TUIMethod):
|
|
30978
31237
|
"""
|
|
30979
31238
|
No help available.
|
|
30980
31239
|
"""
|
|
30981
|
-
class nb_gradient_dbns(TUIMethod):
|
|
30982
|
-
"""
|
|
30983
|
-
No help available.
|
|
30984
|
-
"""
|
|
30985
31240
|
|
|
30986
31241
|
class nita_expert_controls(TUIMenu):
|
|
30987
31242
|
"""
|
|
@@ -31078,6 +31333,8 @@ class main_menu(TUIMenu):
|
|
|
31078
31333
|
def __init__(self, service, version, mode, path):
|
|
31079
31334
|
self.coupled_form = self.__class__.coupled_form(service, version, mode, path + ["coupled_form"])
|
|
31080
31335
|
self.flow_scheme = self.__class__.flow_scheme(service, version, mode, path + ["flow_scheme"])
|
|
31336
|
+
self.flux_auto_select = self.__class__.flux_auto_select(service, version, mode, path + ["flux_auto_select"])
|
|
31337
|
+
self.flux_type = self.__class__.flux_type(service, version, mode, path + ["flux_type"])
|
|
31081
31338
|
self.neighbor_correction_itr_count = self.__class__.neighbor_correction_itr_count(service, version, mode, path + ["neighbor_correction_itr_count"])
|
|
31082
31339
|
self.skewness_correction_itr_count = self.__class__.skewness_correction_itr_count(service, version, mode, path + ["skewness_correction_itr_count"])
|
|
31083
31340
|
self.skewness_neighbor_coupling = self.__class__.skewness_neighbor_coupling(service, version, mode, path + ["skewness_neighbor_coupling"])
|
|
@@ -31091,6 +31348,14 @@ class main_menu(TUIMenu):
|
|
|
31091
31348
|
"""
|
|
31092
31349
|
No help available.
|
|
31093
31350
|
"""
|
|
31351
|
+
class flux_auto_select(TUIMethod):
|
|
31352
|
+
"""
|
|
31353
|
+
No help available.
|
|
31354
|
+
"""
|
|
31355
|
+
class flux_type(TUIMethod):
|
|
31356
|
+
"""
|
|
31357
|
+
No help available.
|
|
31358
|
+
"""
|
|
31094
31359
|
class neighbor_correction_itr_count(TUIMethod):
|
|
31095
31360
|
"""
|
|
31096
31361
|
No help available.
|
|
@@ -32661,6 +32926,7 @@ class main_menu(TUIMenu):
|
|
|
32661
32926
|
self.data_sampling_options = self.__class__.data_sampling_options(service, version, mode, path + ["data_sampling_options"])
|
|
32662
32927
|
self.pollutants = self.__class__.pollutants(service, version, mode, path + ["pollutants"])
|
|
32663
32928
|
self.pseudo_time_settings = self.__class__.pseudo_time_settings(service, version, mode, path + ["pseudo_time_settings"])
|
|
32929
|
+
self.solution_steering = self.__class__.solution_steering(service, version, mode, path + ["solution_steering"])
|
|
32664
32930
|
self.transient_controls = self.__class__.transient_controls(service, version, mode, path + ["transient_controls"])
|
|
32665
32931
|
self.calculate = self.__class__.calculate(service, version, mode, path + ["calculate"])
|
|
32666
32932
|
self.dual_time_iterate = self.__class__.dual_time_iterate(service, version, mode, path + ["dual_time_iterate"])
|
|
@@ -33032,6 +33298,38 @@ class main_menu(TUIMenu):
|
|
|
33032
33298
|
No help available.
|
|
33033
33299
|
"""
|
|
33034
33300
|
|
|
33301
|
+
class solution_steering(TUIMenu):
|
|
33302
|
+
"""
|
|
33303
|
+
No help available.
|
|
33304
|
+
"""
|
|
33305
|
+
def __init__(self, service, version, mode, path):
|
|
33306
|
+
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
33307
|
+
self.first_to_second_order_blending = self.__class__.first_to_second_order_blending(service, version, mode, path + ["first_to_second_order_blending"])
|
|
33308
|
+
self.flow_type = self.__class__.flow_type(service, version, mode, path + ["flow_type"])
|
|
33309
|
+
self.settings = self.__class__.settings(service, version, mode, path + ["settings"])
|
|
33310
|
+
self.use_fmg = self.__class__.use_fmg(service, version, mode, path + ["use_fmg"])
|
|
33311
|
+
super().__init__(service, version, mode, path)
|
|
33312
|
+
class enable(TUIMethod):
|
|
33313
|
+
"""
|
|
33314
|
+
No help available.
|
|
33315
|
+
"""
|
|
33316
|
+
class first_to_second_order_blending(TUIMethod):
|
|
33317
|
+
"""
|
|
33318
|
+
No help available.
|
|
33319
|
+
"""
|
|
33320
|
+
class flow_type(TUIMethod):
|
|
33321
|
+
"""
|
|
33322
|
+
No help available.
|
|
33323
|
+
"""
|
|
33324
|
+
class settings(TUIMethod):
|
|
33325
|
+
"""
|
|
33326
|
+
No help available.
|
|
33327
|
+
"""
|
|
33328
|
+
class use_fmg(TUIMethod):
|
|
33329
|
+
"""
|
|
33330
|
+
No help available.
|
|
33331
|
+
"""
|
|
33332
|
+
|
|
33035
33333
|
class transient_controls(TUIMenu):
|
|
33036
33334
|
"""
|
|
33037
33335
|
No help available.
|
|
@@ -33531,7 +33829,7 @@ class main_menu(TUIMenu):
|
|
|
33531
33829
|
"""
|
|
33532
33830
|
class mesh_motion(TUIMethod):
|
|
33533
33831
|
"""
|
|
33534
|
-
|
|
33832
|
+
No help available.
|
|
33535
33833
|
"""
|
|
33536
33834
|
class multistage_time_iterate(TUIMethod):
|
|
33537
33835
|
"""
|
|
@@ -35537,6 +35835,7 @@ class main_menu(TUIMenu):
|
|
|
35537
35835
|
self.show_all_discretization_schemes = self.__class__.show_all_discretization_schemes(service, version, mode, path + ["show_all_discretization_schemes"])
|
|
35538
35836
|
self.singhal_et_al_cavitation_model = self.__class__.singhal_et_al_cavitation_model(service, version, mode, path + ["singhal_et_al_cavitation_model"])
|
|
35539
35837
|
self.skewness_correction_enhanced = self.__class__.skewness_correction_enhanced(service, version, mode, path + ["skewness_correction_enhanced"])
|
|
35838
|
+
self.specified_zero_shear_alternative_treatment = self.__class__.specified_zero_shear_alternative_treatment(service, version, mode, path + ["specified_zero_shear_alternative_treatment"])
|
|
35540
35839
|
self.transient_frame_motion_numerics = self.__class__.transient_frame_motion_numerics(service, version, mode, path + ["transient_frame_motion_numerics"])
|
|
35541
35840
|
self.volume_flux_for_single_phase = self.__class__.volume_flux_for_single_phase(service, version, mode, path + ["volume_flux_for_single_phase"])
|
|
35542
35841
|
super().__init__(service, version, mode, path)
|
|
@@ -35615,6 +35914,10 @@ class main_menu(TUIMenu):
|
|
|
35615
35914
|
"""
|
|
35616
35915
|
Enable enhanced skewness correction scheme.
|
|
35617
35916
|
"""
|
|
35917
|
+
class specified_zero_shear_alternative_treatment(TUIMethod):
|
|
35918
|
+
"""
|
|
35919
|
+
Enable alternative treatment for turbulent flows using walls with specified zero shear.
|
|
35920
|
+
"""
|
|
35618
35921
|
class transient_frame_motion_numerics(TUIMethod):
|
|
35619
35922
|
"""
|
|
35620
35923
|
Enable time-step independent continuity discretization for transient cases with frame motion.
|
|
@@ -35822,16 +36125,11 @@ class main_menu(TUIMenu):
|
|
|
35822
36125
|
No help available.
|
|
35823
36126
|
"""
|
|
35824
36127
|
def __init__(self, service, version, mode, path):
|
|
35825
|
-
self.
|
|
36128
|
+
self.specify_coarsening_rate = self.__class__.specify_coarsening_rate(service, version, mode, path + ["specify_coarsening_rate"])
|
|
35826
36129
|
self.enforce_laplace_coarsening = self.__class__.enforce_laplace_coarsening(service, version, mode, path + ["enforce_laplace_coarsening"])
|
|
35827
36130
|
self.increase_pre_sweeps = self.__class__.increase_pre_sweeps(service, version, mode, path + ["increase_pre_sweeps"])
|
|
35828
36131
|
self.pre_sweeps = self.__class__.pre_sweeps(service, version, mode, path + ["pre_sweeps"])
|
|
35829
|
-
self.specify_coarsening_rate = self.__class__.specify_coarsening_rate(service, version, mode, path + ["specify_coarsening_rate"])
|
|
35830
36132
|
super().__init__(service, version, mode, path)
|
|
35831
|
-
class coarsen_rate(TUIMethod):
|
|
35832
|
-
"""
|
|
35833
|
-
No help available.
|
|
35834
|
-
"""
|
|
35835
36133
|
class enforce_laplace_coarsening(TUIMethod):
|
|
35836
36134
|
"""
|
|
35837
36135
|
No help available.
|
|
@@ -35844,10 +36142,23 @@ class main_menu(TUIMenu):
|
|
|
35844
36142
|
"""
|
|
35845
36143
|
No help available.
|
|
35846
36144
|
"""
|
|
35847
|
-
|
|
36145
|
+
|
|
36146
|
+
class specify_coarsening_rate(TUIMenu):
|
|
35848
36147
|
"""
|
|
35849
36148
|
No help available.
|
|
35850
36149
|
"""
|
|
36150
|
+
def __init__(self, service, version, mode, path):
|
|
36151
|
+
self.coarsen_rate = self.__class__.coarsen_rate(service, version, mode, path + ["coarsen_rate"])
|
|
36152
|
+
self.specify_coarsening_rate = self.__class__.specify_coarsening_rate(service, version, mode, path + ["specify_coarsening_rate"])
|
|
36153
|
+
super().__init__(service, version, mode, path)
|
|
36154
|
+
class coarsen_rate(TUIMethod):
|
|
36155
|
+
"""
|
|
36156
|
+
No help available.
|
|
36157
|
+
"""
|
|
36158
|
+
class specify_coarsening_rate(TUIMethod):
|
|
36159
|
+
"""
|
|
36160
|
+
No help available.
|
|
36161
|
+
"""
|
|
35851
36162
|
|
|
35852
36163
|
class methods(TUIMenu):
|
|
35853
36164
|
"""
|
|
@@ -35855,26 +36166,42 @@ class main_menu(TUIMenu):
|
|
|
35855
36166
|
"""
|
|
35856
36167
|
def __init__(self, service, version, mode, path):
|
|
35857
36168
|
self.gradient_controls = self.__class__.gradient_controls(service, version, mode, path + ["gradient_controls"])
|
|
35858
|
-
self.
|
|
35859
|
-
self.pressure_velocity_coupling_method = self.__class__.pressure_velocity_coupling_method(service, version, mode, path + ["pressure_velocity_coupling_method"])
|
|
35860
|
-
self.specify_gradient_method = self.__class__.specify_gradient_method(service, version, mode, path + ["specify_gradient_method"])
|
|
36169
|
+
self.pv_coupling_controls = self.__class__.pv_coupling_controls(service, version, mode, path + ["pv_coupling_controls"])
|
|
35861
36170
|
super().__init__(service, version, mode, path)
|
|
35862
|
-
|
|
35863
|
-
|
|
35864
|
-
No help available.
|
|
35865
|
-
"""
|
|
35866
|
-
class pressure_velocity_coupling_controls(TUIMethod):
|
|
35867
|
-
"""
|
|
35868
|
-
No help available.
|
|
35869
|
-
"""
|
|
35870
|
-
class pressure_velocity_coupling_method(TUIMethod):
|
|
36171
|
+
|
|
36172
|
+
class gradient_controls(TUIMenu):
|
|
35871
36173
|
"""
|
|
35872
36174
|
No help available.
|
|
35873
36175
|
"""
|
|
35874
|
-
|
|
36176
|
+
def __init__(self, service, version, mode, path):
|
|
36177
|
+
self.gradient_controls = self.__class__.gradient_controls(service, version, mode, path + ["gradient_controls"])
|
|
36178
|
+
self.specify_gradient_method = self.__class__.specify_gradient_method(service, version, mode, path + ["specify_gradient_method"])
|
|
36179
|
+
super().__init__(service, version, mode, path)
|
|
36180
|
+
class gradient_controls(TUIMethod):
|
|
36181
|
+
"""
|
|
36182
|
+
No help available.
|
|
36183
|
+
"""
|
|
36184
|
+
class specify_gradient_method(TUIMethod):
|
|
36185
|
+
"""
|
|
36186
|
+
No help available.
|
|
36187
|
+
"""
|
|
36188
|
+
|
|
36189
|
+
class pv_coupling_controls(TUIMenu):
|
|
35875
36190
|
"""
|
|
35876
36191
|
No help available.
|
|
35877
36192
|
"""
|
|
36193
|
+
def __init__(self, service, version, mode, path):
|
|
36194
|
+
self.pressure_velocity_coupling_controls = self.__class__.pressure_velocity_coupling_controls(service, version, mode, path + ["pressure_velocity_coupling_controls"])
|
|
36195
|
+
self.pressure_velocity_coupling_method = self.__class__.pressure_velocity_coupling_method(service, version, mode, path + ["pressure_velocity_coupling_method"])
|
|
36196
|
+
super().__init__(service, version, mode, path)
|
|
36197
|
+
class pressure_velocity_coupling_controls(TUIMethod):
|
|
36198
|
+
"""
|
|
36199
|
+
No help available.
|
|
36200
|
+
"""
|
|
36201
|
+
class pressure_velocity_coupling_method(TUIMethod):
|
|
36202
|
+
"""
|
|
36203
|
+
No help available.
|
|
36204
|
+
"""
|
|
35878
36205
|
|
|
35879
36206
|
class miscellaneous(TUIMenu):
|
|
35880
36207
|
"""
|
|
@@ -37462,7 +37789,7 @@ class main_menu(TUIMenu):
|
|
|
37462
37789
|
|
|
37463
37790
|
class contingency_tools(TUIMenu):
|
|
37464
37791
|
"""
|
|
37465
|
-
|
|
37792
|
+
Enter the contingency tools menu.
|
|
37466
37793
|
"""
|
|
37467
37794
|
def __init__(self, service, version, mode, path):
|
|
37468
37795
|
self.delete_invalid_cells = self.__class__.delete_invalid_cells(service, version, mode, path + ["delete_invalid_cells"])
|
|
@@ -37475,7 +37802,7 @@ class main_menu(TUIMenu):
|
|
|
37475
37802
|
"""
|
|
37476
37803
|
class divergence_prevention(TUIMethod):
|
|
37477
37804
|
"""
|
|
37478
|
-
Adjust numerical settings when divergence
|
|
37805
|
+
Adjust numerical settings when divergence pattern identified.
|
|
37479
37806
|
"""
|
|
37480
37807
|
class linear_solver_adjustment(TUIMethod):
|
|
37481
37808
|
"""
|
|
@@ -38264,6 +38591,7 @@ class main_menu(TUIMenu):
|
|
|
38264
38591
|
self.display_states = self.__class__.display_states(service, version, mode, path + ["display_states"])
|
|
38265
38592
|
self.mirror_planes = self.__class__.mirror_planes(service, version, mode, path + ["mirror_planes"])
|
|
38266
38593
|
self.rendering_options = self.__class__.rendering_options(service, version, mode, path + ["rendering_options"])
|
|
38594
|
+
self.view_sync = self.__class__.view_sync(service, version, mode, path + ["view_sync"])
|
|
38267
38595
|
self.apply_mirror_planes = self.__class__.apply_mirror_planes(service, version, mode, path + ["apply_mirror_planes"])
|
|
38268
38596
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
38269
38597
|
self.default_view = self.__class__.default_view(service, version, mode, path + ["default_view"])
|
|
@@ -38583,3 +38911,45 @@ class main_menu(TUIMenu):
|
|
|
38583
38911
|
"""
|
|
38584
38912
|
No help available.
|
|
38585
38913
|
"""
|
|
38914
|
+
|
|
38915
|
+
class view_sync(TUIMenu):
|
|
38916
|
+
"""
|
|
38917
|
+
No help available.
|
|
38918
|
+
"""
|
|
38919
|
+
def __init__(self, service, version, mode, path):
|
|
38920
|
+
self.add = self.__class__.add(service, version, mode, path + ["add"])
|
|
38921
|
+
self.add_all = self.__class__.add_all(service, version, mode, path + ["add_all"])
|
|
38922
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
38923
|
+
self.remove = self.__class__.remove(service, version, mode, path + ["remove"])
|
|
38924
|
+
self.remove_all = self.__class__.remove_all(service, version, mode, path + ["remove_all"])
|
|
38925
|
+
self.start = self.__class__.start(service, version, mode, path + ["start"])
|
|
38926
|
+
self.stop = self.__class__.stop(service, version, mode, path + ["stop"])
|
|
38927
|
+
super().__init__(service, version, mode, path)
|
|
38928
|
+
class add(TUIMethod):
|
|
38929
|
+
"""
|
|
38930
|
+
No help available.
|
|
38931
|
+
"""
|
|
38932
|
+
class add_all(TUIMethod):
|
|
38933
|
+
"""
|
|
38934
|
+
No help available.
|
|
38935
|
+
"""
|
|
38936
|
+
class list(TUIMethod):
|
|
38937
|
+
"""
|
|
38938
|
+
No help available.
|
|
38939
|
+
"""
|
|
38940
|
+
class remove(TUIMethod):
|
|
38941
|
+
"""
|
|
38942
|
+
No help available.
|
|
38943
|
+
"""
|
|
38944
|
+
class remove_all(TUIMethod):
|
|
38945
|
+
"""
|
|
38946
|
+
No help available.
|
|
38947
|
+
"""
|
|
38948
|
+
class start(TUIMethod):
|
|
38949
|
+
"""
|
|
38950
|
+
No help available.
|
|
38951
|
+
"""
|
|
38952
|
+
class stop(TUIMethod):
|
|
38953
|
+
"""
|
|
38954
|
+
No help available.
|
|
38955
|
+
"""
|