ansys-fluent-core 0.30.2__py3-none-any.whl → 0.30.4__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 +2 -2
- ansys/fluent/core/filereader/case_file.py +16 -13
- ansys/fluent/core/filereader/data_file.py +14 -5
- ansys/fluent/core/filereader/pre_processor.py +35 -0
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/flicing.py +35 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +95 -5
- ansys/fluent/core/generated/datamodel_252/preferences.py +51 -0
- ansys/fluent/core/generated/datamodel_252/solver_workflow.py +2 -0
- ansys/fluent/core/generated/datamodel_252/workflow.py +7 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +117 -30
- ansys/fluent/core/generated/solver/settings_252.py +8028 -3512
- ansys/fluent/core/generated/solver/settings_252.pyi +6098 -3081
- ansys/fluent/core/generated/solver/tui_252.py +1565 -340
- ansys/fluent/core/launcher/fluent_container.py +8 -0
- ansys/fluent/core/session_shared.py +4 -1
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.4.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.4.dist-info}/RECORD +21 -20
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.4.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.4.dist-info}/WHEEL +0 -0
|
@@ -1577,6 +1577,7 @@ class main_menu(TUIMenu):
|
|
|
1577
1577
|
self.acoustics = self.__class__.acoustics(service, version, mode, path + ["acoustics"])
|
|
1578
1578
|
self.cht = self.__class__.cht(service, version, mode, path + ["cht"])
|
|
1579
1579
|
self.dpm = self.__class__.dpm(service, version, mode, path + ["dpm"])
|
|
1580
|
+
self.dsmc = self.__class__.dsmc(service, version, mode, path + ["dsmc"])
|
|
1580
1581
|
self.electrolysis_setup = self.__class__.electrolysis_setup(service, version, mode, path + ["electrolysis_setup"])
|
|
1581
1582
|
self.eulerian_wallfilm = self.__class__.eulerian_wallfilm(service, version, mode, path + ["eulerian_wallfilm"])
|
|
1582
1583
|
self.heat_exchanger = self.__class__.heat_exchanger(service, version, mode, path + ["heat_exchanger"])
|
|
@@ -3083,6 +3084,33 @@ class main_menu(TUIMenu):
|
|
|
3083
3084
|
Set the stripping mass coefficient.
|
|
3084
3085
|
"""
|
|
3085
3086
|
|
|
3087
|
+
class dsmc(TUIMenu):
|
|
3088
|
+
"""
|
|
3089
|
+
No help available.
|
|
3090
|
+
"""
|
|
3091
|
+
def __init__(self, service, version, mode, path):
|
|
3092
|
+
self.enabled = self.__class__.enabled(service, version, mode, path + ["enabled"])
|
|
3093
|
+
self.real_to_simulated_particle_ratio = self.__class__.real_to_simulated_particle_ratio(service, version, mode, path + ["real_to_simulated_particle_ratio"])
|
|
3094
|
+
self.sampling_begin_iteration = self.__class__.sampling_begin_iteration(service, version, mode, path + ["sampling_begin_iteration"])
|
|
3095
|
+
self.time_step = self.__class__.time_step(service, version, mode, path + ["time_step"])
|
|
3096
|
+
super().__init__(service, version, mode, path)
|
|
3097
|
+
class enabled(TUIMethod):
|
|
3098
|
+
"""
|
|
3099
|
+
No help available.
|
|
3100
|
+
"""
|
|
3101
|
+
class real_to_simulated_particle_ratio(TUIMethod):
|
|
3102
|
+
"""
|
|
3103
|
+
No help available.
|
|
3104
|
+
"""
|
|
3105
|
+
class sampling_begin_iteration(TUIMethod):
|
|
3106
|
+
"""
|
|
3107
|
+
No help available.
|
|
3108
|
+
"""
|
|
3109
|
+
class time_step(TUIMethod):
|
|
3110
|
+
"""
|
|
3111
|
+
No help available.
|
|
3112
|
+
"""
|
|
3113
|
+
|
|
3086
3114
|
class electrolysis_setup(TUIMenu):
|
|
3087
3115
|
"""
|
|
3088
3116
|
Enter the electrolysis and H2 pump model setup menu.
|
|
@@ -6040,7 +6068,7 @@ class main_menu(TUIMenu):
|
|
|
6040
6068
|
"""
|
|
6041
6069
|
def __init__(self, service, version, mode, path):
|
|
6042
6070
|
self.adapt = self.__class__.adapt(service, version, mode, path + ["adapt"])
|
|
6043
|
-
self.
|
|
6071
|
+
self.collar_meshes = self.__class__.collar_meshes(service, version, mode, path + ["collar_meshes"])
|
|
6044
6072
|
self.cut_control = self.__class__.cut_control(service, version, mode, path + ["cut_control"])
|
|
6045
6073
|
self.options = self.__class__.options(service, version, mode, path + ["options"])
|
|
6046
6074
|
self.check = self.__class__.check(service, version, mode, path + ["check"])
|
|
@@ -6250,10 +6278,10 @@ class main_menu(TUIMenu):
|
|
|
6250
6278
|
Enable the option to use anisotropic adaption in prismatic cells.
|
|
6251
6279
|
"""
|
|
6252
6280
|
|
|
6253
|
-
class
|
|
6281
|
+
class collar_meshes(TUIMenu):
|
|
6254
6282
|
"""
|
|
6255
|
-
Enter the overset collar
|
|
6256
|
-
Collar
|
|
6283
|
+
Enter the overset collar mesh menu.
|
|
6284
|
+
Collar meshes only need to be defined if they are to be excluded from being cut during hole cutting.
|
|
6257
6285
|
"""
|
|
6258
6286
|
def __init__(self, service, version, mode, path):
|
|
6259
6287
|
self.add = self.__class__.add(service, version, mode, path + ["add"])
|
|
@@ -6263,19 +6291,19 @@ class main_menu(TUIMenu):
|
|
|
6263
6291
|
super().__init__(service, version, mode, path)
|
|
6264
6292
|
class add(TUIMethod):
|
|
6265
6293
|
"""
|
|
6266
|
-
Add overset component
|
|
6294
|
+
Add overset component cell zone to list of collar meshes.
|
|
6267
6295
|
"""
|
|
6268
6296
|
class delete(TUIMethod):
|
|
6269
6297
|
"""
|
|
6270
|
-
Remove a
|
|
6298
|
+
Remove a cell zone from list of collar meshes.
|
|
6271
6299
|
"""
|
|
6272
6300
|
class delete_all(TUIMethod):
|
|
6273
6301
|
"""
|
|
6274
|
-
Remove all
|
|
6302
|
+
Remove all zones from collar mesh list.
|
|
6275
6303
|
"""
|
|
6276
6304
|
class list(TUIMethod):
|
|
6277
6305
|
"""
|
|
6278
|
-
List all
|
|
6306
|
+
List all zones on collar mesh list.
|
|
6279
6307
|
"""
|
|
6280
6308
|
|
|
6281
6309
|
class cut_control(TUIMenu):
|
|
@@ -6355,7 +6383,7 @@ class main_menu(TUIMenu):
|
|
|
6355
6383
|
self.overlap_boundaries = self.__class__.overlap_boundaries(service, version, mode, path + ["overlap_boundaries"])
|
|
6356
6384
|
self.parallel = self.__class__.parallel(service, version, mode, path + ["parallel"])
|
|
6357
6385
|
self.partial_cut_faces = self.__class__.partial_cut_faces(service, version, mode, path + ["partial_cut_faces"])
|
|
6358
|
-
self.
|
|
6386
|
+
self.protect_collar_meshes = self.__class__.protect_collar_meshes(service, version, mode, path + ["protect_collar_meshes"])
|
|
6359
6387
|
self.render_receptor_cells = self.__class__.render_receptor_cells(service, version, mode, path + ["render_receptor_cells"])
|
|
6360
6388
|
self.solve_island_removal = self.__class__.solve_island_removal(service, version, mode, path + ["solve_island_removal"])
|
|
6361
6389
|
self.transient_caching = self.__class__.transient_caching(service, version, mode, path + ["transient_caching"])
|
|
@@ -6410,9 +6438,9 @@ class main_menu(TUIMenu):
|
|
|
6410
6438
|
"""
|
|
6411
6439
|
Enable enhanced hole cutting where cut faces partially overlap.
|
|
6412
6440
|
"""
|
|
6413
|
-
class
|
|
6441
|
+
class protect_collar_meshes(TUIMethod):
|
|
6414
6442
|
"""
|
|
6415
|
-
Protect user defined collar
|
|
6443
|
+
Protect user defined collar meshes from getting cut during hole cutting.
|
|
6416
6444
|
"""
|
|
6417
6445
|
class render_receptor_cells(TUIMethod):
|
|
6418
6446
|
"""
|
|
@@ -10010,6 +10038,7 @@ class main_menu(TUIMenu):
|
|
|
10010
10038
|
def __init__(self, service, version, mode, path):
|
|
10011
10039
|
self.blade_flutter_harmonics = self.__class__.blade_flutter_harmonics(service, version, mode, path + ["blade_flutter_harmonics"])
|
|
10012
10040
|
self.general_turbo_interface_settings = self.__class__.general_turbo_interface_settings(service, version, mode, path + ["general_turbo_interface_settings"])
|
|
10041
|
+
self.generalized_forces = self.__class__.generalized_forces(service, version, mode, path + ["generalized_forces"])
|
|
10013
10042
|
self.legacy_models = self.__class__.legacy_models(service, version, mode, path + ["legacy_models"])
|
|
10014
10043
|
self.turbo_topology = self.__class__.turbo_topology(service, version, mode, path + ["turbo_topology"])
|
|
10015
10044
|
self.append_graphics_spectral_content = self.__class__.append_graphics_spectral_content(service, version, mode, path + ["append_graphics_spectral_content"])
|
|
@@ -10240,6 +10269,53 @@ class main_menu(TUIMenu):
|
|
|
10240
10269
|
No help available.
|
|
10241
10270
|
"""
|
|
10242
10271
|
|
|
10272
|
+
class generalized_forces(TUIMenu):
|
|
10273
|
+
"""
|
|
10274
|
+
Enter the Generalized Forces objects menu.
|
|
10275
|
+
"""
|
|
10276
|
+
def __init__(self, service, version, mode, path):
|
|
10277
|
+
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
10278
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
10279
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
10280
|
+
self.delete_all = self.__class__.delete_all(service, version, mode, path + ["delete_all"])
|
|
10281
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
10282
|
+
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
10283
|
+
self.list_objects = self.__class__.list_objects(service, version, mode, path + ["list_objects"])
|
|
10284
|
+
self.process_all = self.__class__.process_all(service, version, mode, path + ["process_all"])
|
|
10285
|
+
super().__init__(service, version, mode, path)
|
|
10286
|
+
class copy(TUIMethod):
|
|
10287
|
+
"""
|
|
10288
|
+
Copy a Generalized Forces object.
|
|
10289
|
+
"""
|
|
10290
|
+
class create(TUIMethod):
|
|
10291
|
+
"""
|
|
10292
|
+
Create a Generalized Forces object.
|
|
10293
|
+
"""
|
|
10294
|
+
class delete(TUIMethod):
|
|
10295
|
+
"""
|
|
10296
|
+
Delete a Generalized Forces object.
|
|
10297
|
+
"""
|
|
10298
|
+
class delete_all(TUIMethod):
|
|
10299
|
+
"""
|
|
10300
|
+
Delete all Generalized Forces objects.
|
|
10301
|
+
"""
|
|
10302
|
+
class edit(TUIMethod):
|
|
10303
|
+
"""
|
|
10304
|
+
Edit a Generalized Forcess object.
|
|
10305
|
+
"""
|
|
10306
|
+
class enable(TUIMethod):
|
|
10307
|
+
"""
|
|
10308
|
+
Enable/Disable Generalized Forces calculation?.
|
|
10309
|
+
"""
|
|
10310
|
+
class list_objects(TUIMethod):
|
|
10311
|
+
"""
|
|
10312
|
+
List all existing Generalized Forces objects.
|
|
10313
|
+
"""
|
|
10314
|
+
class process_all(TUIMethod):
|
|
10315
|
+
"""
|
|
10316
|
+
Process all Generalized Forces objects.
|
|
10317
|
+
"""
|
|
10318
|
+
|
|
10243
10319
|
class legacy_models(TUIMenu):
|
|
10244
10320
|
"""
|
|
10245
10321
|
Enter Legacy Turbo Model Menu.
|
|
@@ -10713,7 +10789,6 @@ class main_menu(TUIMenu):
|
|
|
10713
10789
|
self.views = self.__class__.views(service, version, mode, path + ["views"])
|
|
10714
10790
|
self.add_custom_vector = self.__class__.add_custom_vector(service, version, mode, path + ["add_custom_vector"])
|
|
10715
10791
|
self.annotate = self.__class__.annotate(service, version, mode, path + ["annotate"])
|
|
10716
|
-
self.clear_annotations = self.__class__.clear_annotations(service, version, mode, path + ["clear_annotations"])
|
|
10717
10792
|
self.close_window = self.__class__.close_window(service, version, mode, path + ["close_window"])
|
|
10718
10793
|
self.close_window_by_name = self.__class__.close_window_by_name(service, version, mode, path + ["close_window_by_name"])
|
|
10719
10794
|
self.contour = self.__class__.contour(service, version, mode, path + ["contour"])
|
|
@@ -10735,6 +10810,7 @@ class main_menu(TUIMenu):
|
|
|
10735
10810
|
self.set_list_tree_separator = self.__class__.set_list_tree_separator(service, version, mode, path + ["set_list_tree_separator"])
|
|
10736
10811
|
self.set_window = self.__class__.set_window(service, version, mode, path + ["set_window"])
|
|
10737
10812
|
self.set_window_by_name = self.__class__.set_window_by_name(service, version, mode, path + ["set_window_by_name"])
|
|
10813
|
+
self.show_hide_annotations = self.__class__.show_hide_annotations(service, version, mode, path + ["show_hide_annotations"])
|
|
10738
10814
|
self.surface_cells = self.__class__.surface_cells(service, version, mode, path + ["surface_cells"])
|
|
10739
10815
|
self.surface_mesh = self.__class__.surface_mesh(service, version, mode, path + ["surface_mesh"])
|
|
10740
10816
|
self.switch_to_post_processing_volume = self.__class__.switch_to_post_processing_volume(service, version, mode, path + ["switch_to_post_processing_volume"])
|
|
@@ -10752,10 +10828,6 @@ class main_menu(TUIMenu):
|
|
|
10752
10828
|
"""
|
|
10753
10829
|
Add a text annotation string to the active graphics window.
|
|
10754
10830
|
"""
|
|
10755
|
-
class clear_annotations(TUIMethod):
|
|
10756
|
-
"""
|
|
10757
|
-
Toggle the visibility of annotations on the active graphics window.
|
|
10758
|
-
"""
|
|
10759
10831
|
class close_window(TUIMethod):
|
|
10760
10832
|
"""
|
|
10761
10833
|
No help available.
|
|
@@ -10814,11 +10886,11 @@ class main_menu(TUIMenu):
|
|
|
10814
10886
|
"""
|
|
10815
10887
|
class re_render(TUIMethod):
|
|
10816
10888
|
"""
|
|
10817
|
-
|
|
10889
|
+
Re-render the last contour, profile, or velocity vector plot with updated surfaces, meshes, lights, colormap, rendering options, etc., without recalculating the contour data.
|
|
10818
10890
|
"""
|
|
10819
10891
|
class re_scale(TUIMethod):
|
|
10820
10892
|
"""
|
|
10821
|
-
|
|
10893
|
+
Re-render the last contour, profile, or velocity vector plot with updated scale, surfaces, meshes, lights, colormap, rendering options, etc., without recalculating the field data.
|
|
10822
10894
|
"""
|
|
10823
10895
|
class reacting_channel_curves(TUIMethod):
|
|
10824
10896
|
"""
|
|
@@ -10840,6 +10912,10 @@ class main_menu(TUIMenu):
|
|
|
10840
10912
|
"""
|
|
10841
10913
|
No help available.
|
|
10842
10914
|
"""
|
|
10915
|
+
class show_hide_annotations(TUIMethod):
|
|
10916
|
+
"""
|
|
10917
|
+
Toggle the visibility of annotations on the active graphics window.
|
|
10918
|
+
"""
|
|
10843
10919
|
class surface_cells(TUIMethod):
|
|
10844
10920
|
"""
|
|
10845
10921
|
No help available.
|
|
@@ -10879,7 +10955,6 @@ class main_menu(TUIMenu):
|
|
|
10879
10955
|
"""
|
|
10880
10956
|
def __init__(self, service, version, mode, path):
|
|
10881
10957
|
self.annotate = self.__class__.annotate(service, version, mode, path + ["annotate"])
|
|
10882
|
-
self.clear_annotations = self.__class__.clear_annotations(service, version, mode, path + ["clear_annotations"])
|
|
10883
10958
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
10884
10959
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
10885
10960
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
@@ -10888,15 +10963,12 @@ class main_menu(TUIMenu):
|
|
|
10888
10963
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
10889
10964
|
self.new = self.__class__.new(service, version, mode, path + ["new"])
|
|
10890
10965
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
10966
|
+
self.show_hide_annotations = self.__class__.show_hide_annotations(service, version, mode, path + ["show_hide_annotations"])
|
|
10891
10967
|
super().__init__(service, version, mode, path)
|
|
10892
10968
|
class annotate(TUIMethod):
|
|
10893
10969
|
"""
|
|
10894
10970
|
No help available.
|
|
10895
10971
|
"""
|
|
10896
|
-
class clear_annotations(TUIMethod):
|
|
10897
|
-
"""
|
|
10898
|
-
No help available.
|
|
10899
|
-
"""
|
|
10900
10972
|
class create(TUIMethod):
|
|
10901
10973
|
"""
|
|
10902
10974
|
No help available.
|
|
@@ -10929,6 +11001,10 @@ class main_menu(TUIMenu):
|
|
|
10929
11001
|
"""
|
|
10930
11002
|
No help available.
|
|
10931
11003
|
"""
|
|
11004
|
+
class show_hide_annotations(TUIMethod):
|
|
11005
|
+
"""
|
|
11006
|
+
No help available.
|
|
11007
|
+
"""
|
|
10932
11008
|
|
|
10933
11009
|
class define(TUIMenu):
|
|
10934
11010
|
"""
|
|
@@ -10971,8 +11047,6 @@ class main_menu(TUIMenu):
|
|
|
10971
11047
|
"""
|
|
10972
11048
|
def __init__(self, service, version, mode, path):
|
|
10973
11049
|
self.hsf_file = self.__class__.hsf_file(service, version, mode, path + ["hsf_file"])
|
|
10974
|
-
self.re_render = self.__class__.re_render(service, version, mode, path + ["re_render"])
|
|
10975
|
-
self.re_scale = self.__class__.re_scale(service, version, mode, path + ["re_scale"])
|
|
10976
11050
|
self.surface_cells = self.__class__.surface_cells(service, version, mode, path + ["surface_cells"])
|
|
10977
11051
|
self.surface_mesh = self.__class__.surface_mesh(service, version, mode, path + ["surface_mesh"])
|
|
10978
11052
|
self.zone_mesh = self.__class__.zone_mesh(service, version, mode, path + ["zone_mesh"])
|
|
@@ -10981,14 +11055,6 @@ class main_menu(TUIMenu):
|
|
|
10981
11055
|
"""
|
|
10982
11056
|
No help available.
|
|
10983
11057
|
"""
|
|
10984
|
-
class re_render(TUIMethod):
|
|
10985
|
-
"""
|
|
10986
|
-
No help available.
|
|
10987
|
-
"""
|
|
10988
|
-
class re_scale(TUIMethod):
|
|
10989
|
-
"""
|
|
10990
|
-
No help available.
|
|
10991
|
-
"""
|
|
10992
11058
|
class surface_cells(TUIMethod):
|
|
10993
11059
|
"""
|
|
10994
11060
|
No help available.
|
|
@@ -11273,6 +11339,7 @@ class main_menu(TUIMenu):
|
|
|
11273
11339
|
self.rendering = self.__class__.rendering(service, version, mode, path + ["rendering"])
|
|
11274
11340
|
self.display_in_omniverse = self.__class__.display_in_omniverse(service, version, mode, path + ["display_in_omniverse"])
|
|
11275
11341
|
self.display_live_preview = self.__class__.display_live_preview(service, version, mode, path + ["display_live_preview"])
|
|
11342
|
+
self.usd_export_via_connector = self.__class__.usd_export_via_connector(service, version, mode, path + ["usd_export_via_connector"])
|
|
11276
11343
|
super().__init__(service, version, mode, path)
|
|
11277
11344
|
class display_in_omniverse(TUIMethod):
|
|
11278
11345
|
"""
|
|
@@ -11282,6 +11349,10 @@ class main_menu(TUIMenu):
|
|
|
11282
11349
|
"""
|
|
11283
11350
|
No help available.
|
|
11284
11351
|
"""
|
|
11352
|
+
class usd_export_via_connector(TUIMethod):
|
|
11353
|
+
"""
|
|
11354
|
+
No help available.
|
|
11355
|
+
"""
|
|
11285
11356
|
|
|
11286
11357
|
class background(TUIMenu):
|
|
11287
11358
|
"""
|
|
@@ -11505,7 +11576,7 @@ class main_menu(TUIMenu):
|
|
|
11505
11576
|
"""
|
|
11506
11577
|
class mesh_display_configuration(TUIMethod):
|
|
11507
11578
|
"""
|
|
11508
|
-
|
|
11579
|
+
No help available.
|
|
11509
11580
|
"""
|
|
11510
11581
|
class mesh_level(TUIMethod):
|
|
11511
11582
|
"""
|
|
@@ -11537,7 +11608,7 @@ class main_menu(TUIMenu):
|
|
|
11537
11608
|
"""
|
|
11538
11609
|
class overlays(TUIMethod):
|
|
11539
11610
|
"""
|
|
11540
|
-
|
|
11611
|
+
No help available.
|
|
11541
11612
|
"""
|
|
11542
11613
|
class periodic_instancing(TUIMethod):
|
|
11543
11614
|
"""
|
|
@@ -11553,7 +11624,7 @@ class main_menu(TUIMenu):
|
|
|
11553
11624
|
"""
|
|
11554
11625
|
class render_mesh(TUIMethod):
|
|
11555
11626
|
"""
|
|
11556
|
-
|
|
11627
|
+
No help available.
|
|
11557
11628
|
"""
|
|
11558
11629
|
class reset_graphics(TUIMethod):
|
|
11559
11630
|
"""
|
|
@@ -11574,6 +11645,7 @@ class main_menu(TUIMenu):
|
|
|
11574
11645
|
self.automatic_skip = self.__class__.automatic_skip(service, version, mode, path + ["automatic_skip"])
|
|
11575
11646
|
self.axis_faces = self.__class__.axis_faces(service, version, mode, path + ["axis_faces"])
|
|
11576
11647
|
self.background = self.__class__.background(service, version, mode, path + ["background"])
|
|
11648
|
+
self.color_by = self.__class__.color_by(service, version, mode, path + ["color_by"])
|
|
11577
11649
|
self.color_by_type = self.__class__.color_by_type(service, version, mode, path + ["color_by_type"])
|
|
11578
11650
|
self.far_field_faces = self.__class__.far_field_faces(service, version, mode, path + ["far_field_faces"])
|
|
11579
11651
|
self.foreground = self.__class__.foreground(service, version, mode, path + ["foreground"])
|
|
@@ -11613,6 +11685,10 @@ class main_menu(TUIMenu):
|
|
|
11613
11685
|
"""
|
|
11614
11686
|
Set the background (window) color.
|
|
11615
11687
|
"""
|
|
11688
|
+
class color_by(TUIMethod):
|
|
11689
|
+
"""
|
|
11690
|
+
Set the type to color the mesh.
|
|
11691
|
+
"""
|
|
11616
11692
|
class color_by_type(TUIMethod):
|
|
11617
11693
|
"""
|
|
11618
11694
|
Determine whether to color meshes by type or by surface (ID).
|
|
@@ -12750,7 +12826,7 @@ class main_menu(TUIMenu):
|
|
|
12750
12826
|
|
|
12751
12827
|
class titles(TUIMenu):
|
|
12752
12828
|
"""
|
|
12753
|
-
|
|
12829
|
+
No help available.
|
|
12754
12830
|
"""
|
|
12755
12831
|
def __init__(self, service, version, mode, path):
|
|
12756
12832
|
self.left_bottom = self.__class__.left_bottom(service, version, mode, path + ["left_bottom"])
|
|
@@ -12761,23 +12837,23 @@ class main_menu(TUIMenu):
|
|
|
12761
12837
|
super().__init__(service, version, mode, path)
|
|
12762
12838
|
class left_bottom(TUIMethod):
|
|
12763
12839
|
"""
|
|
12764
|
-
|
|
12840
|
+
No help available.
|
|
12765
12841
|
"""
|
|
12766
12842
|
class left_top(TUIMethod):
|
|
12767
12843
|
"""
|
|
12768
|
-
|
|
12844
|
+
No help available.
|
|
12769
12845
|
"""
|
|
12770
12846
|
class right_bottom(TUIMethod):
|
|
12771
12847
|
"""
|
|
12772
|
-
|
|
12848
|
+
No help available.
|
|
12773
12849
|
"""
|
|
12774
12850
|
class right_middle(TUIMethod):
|
|
12775
12851
|
"""
|
|
12776
|
-
|
|
12852
|
+
No help available.
|
|
12777
12853
|
"""
|
|
12778
12854
|
class right_top(TUIMethod):
|
|
12779
12855
|
"""
|
|
12780
|
-
|
|
12856
|
+
No help available.
|
|
12781
12857
|
"""
|
|
12782
12858
|
|
|
12783
12859
|
class velocity_vectors(TUIMenu):
|
|
@@ -13212,8 +13288,8 @@ class main_menu(TUIMenu):
|
|
|
13212
13288
|
self.edit_surface = self.__class__.edit_surface(service, version, mode, path + ["edit_surface"])
|
|
13213
13289
|
self.ellipsoid_slice = self.__class__.ellipsoid_slice(service, version, mode, path + ["ellipsoid_slice"])
|
|
13214
13290
|
self.expression_volume = self.__class__.expression_volume(service, version, mode, path + ["expression_volume"])
|
|
13291
|
+
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
13215
13292
|
self.group_surfaces = self.__class__.group_surfaces(service, version, mode, path + ["group_surfaces"])
|
|
13216
|
-
self.import_surface = self.__class__.import_surface(service, version, mode, path + ["import_surface"])
|
|
13217
13293
|
self.imprint_surface = self.__class__.imprint_surface(service, version, mode, path + ["imprint_surface"])
|
|
13218
13294
|
self.iso_clip = self.__class__.iso_clip(service, version, mode, path + ["iso_clip"])
|
|
13219
13295
|
self.iso_clip_multiple = self.__class__.iso_clip_multiple(service, version, mode, path + ["iso_clip_multiple"])
|
|
@@ -13282,13 +13358,13 @@ class main_menu(TUIMenu):
|
|
|
13282
13358
|
"""
|
|
13283
13359
|
Create volume with boolean expression.
|
|
13284
13360
|
"""
|
|
13285
|
-
class
|
|
13361
|
+
class external_surface(TUIMethod):
|
|
13286
13362
|
"""
|
|
13287
|
-
|
|
13363
|
+
No help available.
|
|
13288
13364
|
"""
|
|
13289
|
-
class
|
|
13365
|
+
class group_surfaces(TUIMethod):
|
|
13290
13366
|
"""
|
|
13291
|
-
|
|
13367
|
+
Group a set of surfaces.
|
|
13292
13368
|
"""
|
|
13293
13369
|
class imprint_surface(TUIMethod):
|
|
13294
13370
|
"""
|
|
@@ -13408,7 +13484,7 @@ class main_menu(TUIMenu):
|
|
|
13408
13484
|
"""
|
|
13409
13485
|
class split_surface(TUIMethod):
|
|
13410
13486
|
"""
|
|
13411
|
-
|
|
13487
|
+
No help available.
|
|
13412
13488
|
"""
|
|
13413
13489
|
class structural_point_surface(TUIMethod):
|
|
13414
13490
|
"""
|
|
@@ -13671,6 +13747,7 @@ class main_menu(TUIMenu):
|
|
|
13671
13747
|
No help available.
|
|
13672
13748
|
"""
|
|
13673
13749
|
def __init__(self, service, version, mode, path):
|
|
13750
|
+
self.apply = self.__class__.apply(service, version, mode, path + ["apply"])
|
|
13674
13751
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
13675
13752
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
13676
13753
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
@@ -13681,10 +13758,13 @@ class main_menu(TUIMenu):
|
|
|
13681
13758
|
self.new = self.__class__.new(service, version, mode, path + ["new"])
|
|
13682
13759
|
self.read = self.__class__.read(service, version, mode, path + ["read"])
|
|
13683
13760
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
13684
|
-
self.restore_state = self.__class__.restore_state(service, version, mode, path + ["restore_state"])
|
|
13685
13761
|
self.use_active = self.__class__.use_active(service, version, mode, path + ["use_active"])
|
|
13686
13762
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
13687
13763
|
super().__init__(service, version, mode, path)
|
|
13764
|
+
class apply(TUIMethod):
|
|
13765
|
+
"""
|
|
13766
|
+
No help available.
|
|
13767
|
+
"""
|
|
13688
13768
|
class copy(TUIMethod):
|
|
13689
13769
|
"""
|
|
13690
13770
|
No help available.
|
|
@@ -13725,10 +13805,6 @@ class main_menu(TUIMenu):
|
|
|
13725
13805
|
"""
|
|
13726
13806
|
No help available.
|
|
13727
13807
|
"""
|
|
13728
|
-
class restore_state(TUIMethod):
|
|
13729
|
-
"""
|
|
13730
|
-
No help available.
|
|
13731
|
-
"""
|
|
13732
13808
|
class use_active(TUIMethod):
|
|
13733
13809
|
"""
|
|
13734
13810
|
No help available.
|
|
@@ -14351,11 +14427,13 @@ class main_menu(TUIMenu):
|
|
|
14351
14427
|
self.dx = self.__class__.dx(service, version, mode, path + ["dx"])
|
|
14352
14428
|
self.ensight = self.__class__.ensight(service, version, mode, path + ["ensight"])
|
|
14353
14429
|
self.ensight_dvs = self.__class__.ensight_dvs(service, version, mode, path + ["ensight_dvs"])
|
|
14430
|
+
self.ensight_dvs_combined = self.__class__.ensight_dvs_combined(service, version, mode, path + ["ensight_dvs_combined"])
|
|
14354
14431
|
self.ensight_dvs_surfaces = self.__class__.ensight_dvs_surfaces(service, version, mode, path + ["ensight_dvs_surfaces"])
|
|
14355
14432
|
self.ensight_dvs_volume = self.__class__.ensight_dvs_volume(service, version, mode, path + ["ensight_dvs_volume"])
|
|
14356
14433
|
self.ensight_gold = self.__class__.ensight_gold(service, version, mode, path + ["ensight_gold"])
|
|
14357
14434
|
self.ensight_gold_parallel_surfaces = self.__class__.ensight_gold_parallel_surfaces(service, version, mode, path + ["ensight_gold_parallel_surfaces"])
|
|
14358
14435
|
self.ensight_gold_parallel_volume = self.__class__.ensight_gold_parallel_volume(service, version, mode, path + ["ensight_gold_parallel_volume"])
|
|
14436
|
+
self.ensight_gold_surface = self.__class__.ensight_gold_surface(service, version, mode, path + ["ensight_gold_surface"])
|
|
14359
14437
|
self.fast_mesh = self.__class__.fast_mesh(service, version, mode, path + ["fast_mesh"])
|
|
14360
14438
|
self.fast_scalar = self.__class__.fast_scalar(service, version, mode, path + ["fast_scalar"])
|
|
14361
14439
|
self.fast_solution = self.__class__.fast_solution(service, version, mode, path + ["fast_solution"])
|
|
@@ -14419,6 +14497,10 @@ class main_menu(TUIMenu):
|
|
|
14419
14497
|
"""
|
|
14420
14498
|
Write post-processing data (geometry, velocity and scalars) for cell and face zones using EnSight Dynamic Visualization Store Interface.
|
|
14421
14499
|
"""
|
|
14500
|
+
class ensight_dvs_combined(TUIMethod):
|
|
14501
|
+
"""
|
|
14502
|
+
Write post-processing data (geometry, velocity and scalars) for surfaces, cell zones and boundaries attached to them using EnSight Dynamic Visualization Store Interface.
|
|
14503
|
+
"""
|
|
14422
14504
|
class ensight_dvs_surfaces(TUIMethod):
|
|
14423
14505
|
"""
|
|
14424
14506
|
Write post-processing data (geometry, velocity and scalars) for surfaces using EnSight Dynamic Visualization Store Interface.
|
|
@@ -14439,6 +14521,10 @@ class main_menu(TUIMenu):
|
|
|
14439
14521
|
"""
|
|
14440
14522
|
Write EnSight Gold geometry, velocity and scalar files for cell zones and boundaries attached to them. Fluent will write files suitable for EnSight Parallel.
|
|
14441
14523
|
"""
|
|
14524
|
+
class ensight_gold_surface(TUIMethod):
|
|
14525
|
+
"""
|
|
14526
|
+
Write EnSight Gold geometry, velocity, and scalar files.
|
|
14527
|
+
"""
|
|
14442
14528
|
class fast_mesh(TUIMethod):
|
|
14443
14529
|
"""
|
|
14444
14530
|
No help available.
|
|
@@ -14933,7 +15019,7 @@ class main_menu(TUIMenu):
|
|
|
14933
15019
|
"""
|
|
14934
15020
|
class save(TUIMethod):
|
|
14935
15021
|
"""
|
|
14936
|
-
|
|
15022
|
+
No help available.
|
|
14937
15023
|
"""
|
|
14938
15024
|
class save_a_copy(TUIMethod):
|
|
14939
15025
|
"""
|
|
@@ -15066,6 +15152,7 @@ class main_menu(TUIMenu):
|
|
|
15066
15152
|
self.dx = self.__class__.dx(service, version, mode, path + ["dx"])
|
|
15067
15153
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
15068
15154
|
self.ensight_dvs = self.__class__.ensight_dvs(service, version, mode, path + ["ensight_dvs"])
|
|
15155
|
+
self.ensight_dvs_combined = self.__class__.ensight_dvs_combined(service, version, mode, path + ["ensight_dvs_combined"])
|
|
15069
15156
|
self.ensight_dvs_surfaces = self.__class__.ensight_dvs_surfaces(service, version, mode, path + ["ensight_dvs_surfaces"])
|
|
15070
15157
|
self.ensight_dvs_volume = self.__class__.ensight_dvs_volume(service, version, mode, path + ["ensight_dvs_volume"])
|
|
15071
15158
|
self.ensight_gold_from_existing_files = self.__class__.ensight_gold_from_existing_files(service, version, mode, path + ["ensight_gold_from_existing_files"])
|
|
@@ -15126,6 +15213,10 @@ class main_menu(TUIMenu):
|
|
|
15126
15213
|
"""
|
|
15127
15214
|
Write post-processing data (geometry, velocity and scalars) for cell and face zones using EnSight Dynamic Visualization Store Interface.
|
|
15128
15215
|
"""
|
|
15216
|
+
class ensight_dvs_combined(TUIMethod):
|
|
15217
|
+
"""
|
|
15218
|
+
Write post-processing data (geometry, velocity and scalars) for surfaces, cell zones and boundaries attached to them using EnSight Dynamic Visualization Store Interface.
|
|
15219
|
+
"""
|
|
15129
15220
|
class ensight_dvs_surfaces(TUIMethod):
|
|
15130
15221
|
"""
|
|
15131
15222
|
Write post-processing data (geometry, velocity and scalars) for surfaces using EnSight Dynamic Visualization Store Interface.
|
|
@@ -15885,6 +15976,7 @@ class main_menu(TUIMenu):
|
|
|
15885
15976
|
self.merge_zones = self.__class__.merge_zones(service, version, mode, path + ["merge_zones"])
|
|
15886
15977
|
self.mrf_to_sliding_mesh = self.__class__.mrf_to_sliding_mesh(service, version, mode, path + ["mrf_to_sliding_mesh"])
|
|
15887
15978
|
self.orient_face_zone = self.__class__.orient_face_zone(service, version, mode, path + ["orient_face_zone"])
|
|
15979
|
+
self.project_face_zones = self.__class__.project_face_zones(service, version, mode, path + ["project_face_zones"])
|
|
15888
15980
|
self.recreate_all_shells = self.__class__.recreate_all_shells(service, version, mode, path + ["recreate_all_shells"])
|
|
15889
15981
|
self.replace_zone = self.__class__.replace_zone(service, version, mode, path + ["replace_zone"])
|
|
15890
15982
|
self.rotate_zone = self.__class__.rotate_zone(service, version, mode, path + ["rotate_zone"])
|
|
@@ -16011,6 +16103,10 @@ class main_menu(TUIMenu):
|
|
|
16011
16103
|
"""
|
|
16012
16104
|
No help available.
|
|
16013
16105
|
"""
|
|
16106
|
+
class project_face_zones(TUIMethod):
|
|
16107
|
+
"""
|
|
16108
|
+
No help available.
|
|
16109
|
+
"""
|
|
16014
16110
|
class recreate_all_shells(TUIMethod):
|
|
16015
16111
|
"""
|
|
16016
16112
|
No help available.
|
|
@@ -16272,7 +16368,7 @@ class main_menu(TUIMenu):
|
|
|
16272
16368
|
|
|
16273
16369
|
class gpgpu(TUIMenu):
|
|
16274
16370
|
"""
|
|
16275
|
-
|
|
16371
|
+
Show gpgpu information.
|
|
16276
16372
|
"""
|
|
16277
16373
|
def __init__(self, service, version, mode, path):
|
|
16278
16374
|
self.select = self.__class__.select(service, version, mode, path + ["select"])
|
|
@@ -17421,7 +17517,7 @@ class main_menu(TUIMenu):
|
|
|
17421
17517
|
"""
|
|
17422
17518
|
class use_mop(TUIMethod):
|
|
17423
17519
|
"""
|
|
17424
|
-
Set value
|
|
17520
|
+
Set value for Use MOP.
|
|
17425
17521
|
"""
|
|
17426
17522
|
class use_start_designs_only(TUIMethod):
|
|
17427
17523
|
"""
|
|
@@ -17571,11 +17667,11 @@ class main_menu(TUIMenu):
|
|
|
17571
17667
|
super().__init__(service, version, mode, path)
|
|
17572
17668
|
class export_design_table(TUIMethod):
|
|
17573
17669
|
"""
|
|
17574
|
-
|
|
17670
|
+
No help available.
|
|
17575
17671
|
"""
|
|
17576
17672
|
class import_design_table(TUIMethod):
|
|
17577
17673
|
"""
|
|
17578
|
-
|
|
17674
|
+
No help available.
|
|
17579
17675
|
"""
|
|
17580
17676
|
|
|
17581
17677
|
class study(TUIMenu):
|
|
@@ -17595,15 +17691,15 @@ class main_menu(TUIMenu):
|
|
|
17595
17691
|
super().__init__(service, version, mode, path)
|
|
17596
17692
|
class delete(TUIMethod):
|
|
17597
17693
|
"""
|
|
17598
|
-
|
|
17694
|
+
No help available.
|
|
17599
17695
|
"""
|
|
17600
17696
|
class duplicate(TUIMethod):
|
|
17601
17697
|
"""
|
|
17602
|
-
|
|
17698
|
+
No help available.
|
|
17603
17699
|
"""
|
|
17604
17700
|
class initialize(TUIMethod):
|
|
17605
17701
|
"""
|
|
17606
|
-
|
|
17702
|
+
Initialize Parametric Study.
|
|
17607
17703
|
"""
|
|
17608
17704
|
class list(TUIMethod):
|
|
17609
17705
|
"""
|
|
@@ -17615,11 +17711,11 @@ class main_menu(TUIMenu):
|
|
|
17615
17711
|
"""
|
|
17616
17712
|
class rename(TUIMethod):
|
|
17617
17713
|
"""
|
|
17618
|
-
|
|
17714
|
+
No help available.
|
|
17619
17715
|
"""
|
|
17620
17716
|
class set_as_current(TUIMethod):
|
|
17621
17717
|
"""
|
|
17622
|
-
|
|
17718
|
+
No help available.
|
|
17623
17719
|
"""
|
|
17624
17720
|
class use_base_data(TUIMethod):
|
|
17625
17721
|
"""
|
|
@@ -17991,7 +18087,7 @@ class main_menu(TUIMenu):
|
|
|
17991
18087
|
"""
|
|
17992
18088
|
class file_list(TUIMethod):
|
|
17993
18089
|
"""
|
|
17994
|
-
|
|
18090
|
+
No help available.
|
|
17995
18091
|
"""
|
|
17996
18092
|
class histogram(TUIMethod):
|
|
17997
18093
|
"""
|
|
@@ -17999,7 +18095,7 @@ class main_menu(TUIMenu):
|
|
|
17999
18095
|
"""
|
|
18000
18096
|
class label_alignment(TUIMethod):
|
|
18001
18097
|
"""
|
|
18002
|
-
|
|
18098
|
+
No help available.
|
|
18003
18099
|
"""
|
|
18004
18100
|
class plot(TUIMethod):
|
|
18005
18101
|
"""
|
|
@@ -18015,8 +18111,7 @@ class main_menu(TUIMenu):
|
|
|
18015
18111
|
"""
|
|
18016
18112
|
class set_boundary_val_off(TUIMethod):
|
|
18017
18113
|
"""
|
|
18018
|
-
|
|
18019
|
-
Note: This setting is valid for current Fluent session only.
|
|
18114
|
+
No help available.
|
|
18020
18115
|
"""
|
|
18021
18116
|
class solution(TUIMethod):
|
|
18022
18117
|
"""
|
|
@@ -18078,7 +18173,7 @@ class main_menu(TUIMenu):
|
|
|
18078
18173
|
"""
|
|
18079
18174
|
class list(TUIMethod):
|
|
18080
18175
|
"""
|
|
18081
|
-
List
|
|
18176
|
+
List the Cumulative Forces/Moments.
|
|
18082
18177
|
"""
|
|
18083
18178
|
class list_properties(TUIMethod):
|
|
18084
18179
|
"""
|
|
@@ -18176,6 +18271,7 @@ class main_menu(TUIMenu):
|
|
|
18176
18271
|
Enter the menu to set file plot parameters.
|
|
18177
18272
|
"""
|
|
18178
18273
|
def __init__(self, service, version, mode, path):
|
|
18274
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18179
18275
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18180
18276
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18181
18277
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18190,9 +18286,14 @@ class main_menu(TUIMenu):
|
|
|
18190
18286
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18191
18287
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18192
18288
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18289
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18193
18290
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18194
18291
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18195
18292
|
super().__init__(service, version, mode, path)
|
|
18293
|
+
class auto_limits(TUIMethod):
|
|
18294
|
+
"""
|
|
18295
|
+
Automatically compute x/y-axis extents?.
|
|
18296
|
+
"""
|
|
18196
18297
|
class auto_scale(TUIMethod):
|
|
18197
18298
|
"""
|
|
18198
18299
|
Automatically compute x/y-axis extents?.
|
|
@@ -18249,6 +18350,10 @@ class main_menu(TUIMenu):
|
|
|
18249
18350
|
"""
|
|
18250
18351
|
Set parameters for display of major and minor rules.
|
|
18251
18352
|
"""
|
|
18353
|
+
class rules_placement(TUIMethod):
|
|
18354
|
+
"""
|
|
18355
|
+
Set parameters for display of major and minor rules.
|
|
18356
|
+
"""
|
|
18252
18357
|
class windows(TUIMethod):
|
|
18253
18358
|
"""
|
|
18254
18359
|
X-Y plot window options.
|
|
@@ -18280,6 +18385,7 @@ class main_menu(TUIMenu):
|
|
|
18280
18385
|
Enter the menu to set histogram plot parameters.
|
|
18281
18386
|
"""
|
|
18282
18387
|
def __init__(self, service, version, mode, path):
|
|
18388
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18283
18389
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18284
18390
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18285
18391
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18294,9 +18400,14 @@ class main_menu(TUIMenu):
|
|
|
18294
18400
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18295
18401
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18296
18402
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18403
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18297
18404
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18298
18405
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18299
18406
|
super().__init__(service, version, mode, path)
|
|
18407
|
+
class auto_limits(TUIMethod):
|
|
18408
|
+
"""
|
|
18409
|
+
Automatically compute x/y-axis extents?.
|
|
18410
|
+
"""
|
|
18300
18411
|
class auto_scale(TUIMethod):
|
|
18301
18412
|
"""
|
|
18302
18413
|
Automatically compute x/y-axis extents?.
|
|
@@ -18353,6 +18464,10 @@ class main_menu(TUIMenu):
|
|
|
18353
18464
|
"""
|
|
18354
18465
|
Set parameters for display of major and minor rules.
|
|
18355
18466
|
"""
|
|
18467
|
+
class rules_placement(TUIMethod):
|
|
18468
|
+
"""
|
|
18469
|
+
Set parameters for display of major and minor rules.
|
|
18470
|
+
"""
|
|
18356
18471
|
class windows(TUIMethod):
|
|
18357
18472
|
"""
|
|
18358
18473
|
X-Y plot window options.
|
|
@@ -18367,6 +18482,7 @@ class main_menu(TUIMenu):
|
|
|
18367
18482
|
Enter the menu to set residual plot parameters.
|
|
18368
18483
|
"""
|
|
18369
18484
|
def __init__(self, service, version, mode, path):
|
|
18485
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18370
18486
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18371
18487
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18372
18488
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18381,9 +18497,14 @@ class main_menu(TUIMenu):
|
|
|
18381
18497
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18382
18498
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18383
18499
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18500
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18384
18501
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18385
18502
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18386
18503
|
super().__init__(service, version, mode, path)
|
|
18504
|
+
class auto_limits(TUIMethod):
|
|
18505
|
+
"""
|
|
18506
|
+
Automatically compute x/y-axis extents?.
|
|
18507
|
+
"""
|
|
18387
18508
|
class auto_scale(TUIMethod):
|
|
18388
18509
|
"""
|
|
18389
18510
|
Automatically compute x/y-axis extents?.
|
|
@@ -18440,6 +18561,10 @@ class main_menu(TUIMenu):
|
|
|
18440
18561
|
"""
|
|
18441
18562
|
Set parameters for display of major and minor rules.
|
|
18442
18563
|
"""
|
|
18564
|
+
class rules_placement(TUIMethod):
|
|
18565
|
+
"""
|
|
18566
|
+
Set parameters for display of major and minor rules.
|
|
18567
|
+
"""
|
|
18443
18568
|
class windows(TUIMethod):
|
|
18444
18569
|
"""
|
|
18445
18570
|
X-Y plot window options.
|
|
@@ -18454,6 +18579,7 @@ class main_menu(TUIMenu):
|
|
|
18454
18579
|
Enter the menu to set solution plot parameters.
|
|
18455
18580
|
"""
|
|
18456
18581
|
def __init__(self, service, version, mode, path):
|
|
18582
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18457
18583
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18458
18584
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18459
18585
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18468,9 +18594,14 @@ class main_menu(TUIMenu):
|
|
|
18468
18594
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18469
18595
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18470
18596
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18597
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18471
18598
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18472
18599
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18473
18600
|
super().__init__(service, version, mode, path)
|
|
18601
|
+
class auto_limits(TUIMethod):
|
|
18602
|
+
"""
|
|
18603
|
+
Automatically compute x/y-axis extents?.
|
|
18604
|
+
"""
|
|
18474
18605
|
class auto_scale(TUIMethod):
|
|
18475
18606
|
"""
|
|
18476
18607
|
Automatically compute x/y-axis extents?.
|
|
@@ -18527,6 +18658,10 @@ class main_menu(TUIMenu):
|
|
|
18527
18658
|
"""
|
|
18528
18659
|
Set parameters for display of major and minor rules.
|
|
18529
18660
|
"""
|
|
18661
|
+
class rules_placement(TUIMethod):
|
|
18662
|
+
"""
|
|
18663
|
+
Set parameters for display of major and minor rules.
|
|
18664
|
+
"""
|
|
18530
18665
|
class windows(TUIMethod):
|
|
18531
18666
|
"""
|
|
18532
18667
|
X-Y plot window options.
|
|
@@ -18558,6 +18693,7 @@ class main_menu(TUIMenu):
|
|
|
18558
18693
|
Set preferences.
|
|
18559
18694
|
"""
|
|
18560
18695
|
def __init__(self, service, version, mode, path):
|
|
18696
|
+
self.ansys_cloud_burst = self.__class__.ansys_cloud_burst(service, version, mode, path + ["ansys_cloud_burst"])
|
|
18561
18697
|
self.appearance = self.__class__.appearance(service, version, mode, path + ["appearance"])
|
|
18562
18698
|
self.general = self.__class__.general(service, version, mode, path + ["general"])
|
|
18563
18699
|
self.gpuapp = self.__class__.gpuapp(service, version, mode, path + ["gpuapp"])
|
|
@@ -18573,6 +18709,18 @@ class main_menu(TUIMenu):
|
|
|
18573
18709
|
self.turbo_workflow = self.__class__.turbo_workflow(service, version, mode, path + ["turbo_workflow"])
|
|
18574
18710
|
super().__init__(service, version, mode, path)
|
|
18575
18711
|
|
|
18712
|
+
class ansys_cloud_burst(TUIMenu):
|
|
18713
|
+
"""
|
|
18714
|
+
No help available.
|
|
18715
|
+
"""
|
|
18716
|
+
def __init__(self, service, version, mode, path):
|
|
18717
|
+
self.authentication_method = self.__class__.authentication_method(service, version, mode, path + ["authentication_method"])
|
|
18718
|
+
super().__init__(service, version, mode, path)
|
|
18719
|
+
class authentication_method(TUIMethod):
|
|
18720
|
+
"""
|
|
18721
|
+
No help available.
|
|
18722
|
+
"""
|
|
18723
|
+
|
|
18576
18724
|
class appearance(TUIMenu):
|
|
18577
18725
|
"""
|
|
18578
18726
|
No help available.
|
|
@@ -18608,6 +18756,7 @@ class main_menu(TUIMenu):
|
|
|
18608
18756
|
self.number_of_pastel_colors = self.__class__.number_of_pastel_colors(service, version, mode, path + ["number_of_pastel_colors"])
|
|
18609
18757
|
self.pastel_color_saturation = self.__class__.pastel_color_saturation(service, version, mode, path + ["pastel_color_saturation"])
|
|
18610
18758
|
self.pastel_color_value = self.__class__.pastel_color_value(service, version, mode, path + ["pastel_color_value"])
|
|
18759
|
+
self.py_console_completer = self.__class__.py_console_completer(service, version, mode, path + ["py_console_completer"])
|
|
18611
18760
|
self.quick_property_view = self.__class__.quick_property_view(service, version, mode, path + ["quick_property_view"])
|
|
18612
18761
|
self.ruler = self.__class__.ruler(service, version, mode, path + ["ruler"])
|
|
18613
18762
|
self.show_enabled_models = self.__class__.show_enabled_models(service, version, mode, path + ["show_enabled_models"])
|
|
@@ -18728,6 +18877,10 @@ class main_menu(TUIMenu):
|
|
|
18728
18877
|
"""
|
|
18729
18878
|
No help available.
|
|
18730
18879
|
"""
|
|
18880
|
+
class py_console_completer(TUIMethod):
|
|
18881
|
+
"""
|
|
18882
|
+
No help available.
|
|
18883
|
+
"""
|
|
18731
18884
|
class quick_property_view(TUIMethod):
|
|
18732
18885
|
"""
|
|
18733
18886
|
No help available.
|
|
@@ -20184,6 +20337,7 @@ class main_menu(TUIMenu):
|
|
|
20184
20337
|
No help available.
|
|
20185
20338
|
"""
|
|
20186
20339
|
def __init__(self, service, version, mode, path):
|
|
20340
|
+
self.cad_log_option = self.__class__.cad_log_option(service, version, mode, path + ["cad_log_option"])
|
|
20187
20341
|
self.draw_settings = self.__class__.draw_settings(service, version, mode, path + ["draw_settings"])
|
|
20188
20342
|
self.checkpointing_option = self.__class__.checkpointing_option(service, version, mode, path + ["checkpointing_option"])
|
|
20189
20343
|
self.save_checkpoint_files = self.__class__.save_checkpoint_files(service, version, mode, path + ["save_checkpoint_files"])
|
|
@@ -20217,6 +20371,28 @@ class main_menu(TUIMenu):
|
|
|
20217
20371
|
No help available.
|
|
20218
20372
|
"""
|
|
20219
20373
|
|
|
20374
|
+
class cad_log_option(TUIMenu):
|
|
20375
|
+
"""
|
|
20376
|
+
No help available.
|
|
20377
|
+
"""
|
|
20378
|
+
def __init__(self, service, version, mode, path):
|
|
20379
|
+
self.location = self.__class__.location(service, version, mode, path + ["location"])
|
|
20380
|
+
self.prefix = self.__class__.prefix(service, version, mode, path + ["prefix"])
|
|
20381
|
+
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
20382
|
+
super().__init__(service, version, mode, path)
|
|
20383
|
+
class location(TUIMethod):
|
|
20384
|
+
"""
|
|
20385
|
+
No help available.
|
|
20386
|
+
"""
|
|
20387
|
+
class prefix(TUIMethod):
|
|
20388
|
+
"""
|
|
20389
|
+
No help available.
|
|
20390
|
+
"""
|
|
20391
|
+
class write(TUIMethod):
|
|
20392
|
+
"""
|
|
20393
|
+
No help available.
|
|
20394
|
+
"""
|
|
20395
|
+
|
|
20220
20396
|
class draw_settings(TUIMenu):
|
|
20221
20397
|
"""
|
|
20222
20398
|
No help available.
|
|
@@ -20932,53 +21108,51 @@ class main_menu(TUIMenu):
|
|
|
20932
21108
|
super().__init__(service, version, mode, path)
|
|
20933
21109
|
class auto_range(TUIMethod):
|
|
20934
21110
|
"""
|
|
20935
|
-
|
|
21111
|
+
No help available.
|
|
20936
21112
|
"""
|
|
20937
21113
|
class correlation(TUIMethod):
|
|
20938
21114
|
"""
|
|
20939
|
-
|
|
21115
|
+
No help available.
|
|
20940
21116
|
"""
|
|
20941
21117
|
class cumulation_curve(TUIMethod):
|
|
20942
21118
|
"""
|
|
20943
|
-
|
|
21119
|
+
No help available.
|
|
20944
21120
|
"""
|
|
20945
21121
|
class diameter_statistics(TUIMethod):
|
|
20946
21122
|
"""
|
|
20947
|
-
|
|
20948
|
-
Requires specification of diameter as sampling variable.
|
|
21123
|
+
No help available.
|
|
20949
21124
|
"""
|
|
20950
21125
|
class histogram_mode(TUIMethod):
|
|
20951
21126
|
"""
|
|
20952
|
-
|
|
21127
|
+
No help available.
|
|
20953
21128
|
"""
|
|
20954
21129
|
class logarithmic(TUIMethod):
|
|
20955
21130
|
"""
|
|
20956
|
-
|
|
21131
|
+
No help available.
|
|
20957
21132
|
"""
|
|
20958
21133
|
class maximum(TUIMethod):
|
|
20959
21134
|
"""
|
|
20960
|
-
Specify maximum value of
|
|
21135
|
+
Specify the maximum value of the abscissa (histogram variable axis) for the histogram plot.
|
|
20961
21136
|
"""
|
|
20962
21137
|
class minimum(TUIMethod):
|
|
20963
21138
|
"""
|
|
20964
|
-
Specify
|
|
21139
|
+
Specify the minimum value of the abscissa (histogram variable axis) for the histogram plot.
|
|
20965
21140
|
"""
|
|
20966
21141
|
class number_of_bins(TUIMethod):
|
|
20967
21142
|
"""
|
|
20968
|
-
|
|
21143
|
+
No help available.
|
|
20969
21144
|
"""
|
|
20970
21145
|
class percentage(TUIMethod):
|
|
20971
21146
|
"""
|
|
20972
|
-
|
|
21147
|
+
No help available.
|
|
20973
21148
|
"""
|
|
20974
21149
|
class variable_power_3(TUIMethod):
|
|
20975
21150
|
"""
|
|
20976
|
-
|
|
20977
|
-
When the particle mass was not sampled, the diameter can be used instead.
|
|
21151
|
+
No help available.
|
|
20978
21152
|
"""
|
|
20979
21153
|
class weighting(TUIMethod):
|
|
20980
21154
|
"""
|
|
20981
|
-
|
|
21155
|
+
No help available.
|
|
20982
21156
|
"""
|
|
20983
21157
|
|
|
20984
21158
|
class setup_reduction(TUIMenu):
|
|
@@ -22005,7 +22179,6 @@ class main_menu(TUIMenu):
|
|
|
22005
22179
|
"""
|
|
22006
22180
|
def __init__(self, service, version, mode, path):
|
|
22007
22181
|
self.annotate = self.__class__.annotate(service, version, mode, path + ["annotate"])
|
|
22008
|
-
self.clear_annotations = self.__class__.clear_annotations(service, version, mode, path + ["clear_annotations"])
|
|
22009
22182
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
22010
22183
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
22011
22184
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
@@ -22013,15 +22186,12 @@ class main_menu(TUIMenu):
|
|
|
22013
22186
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
22014
22187
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
22015
22188
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
22189
|
+
self.show_hide_annotations = self.__class__.show_hide_annotations(service, version, mode, path + ["show_hide_annotations"])
|
|
22016
22190
|
super().__init__(service, version, mode, path)
|
|
22017
22191
|
class annotate(TUIMethod):
|
|
22018
22192
|
"""
|
|
22019
22193
|
No help available.
|
|
22020
22194
|
"""
|
|
22021
|
-
class clear_annotations(TUIMethod):
|
|
22022
|
-
"""
|
|
22023
|
-
No help available.
|
|
22024
|
-
"""
|
|
22025
22195
|
class create(TUIMethod):
|
|
22026
22196
|
"""
|
|
22027
22197
|
No help available.
|
|
@@ -22050,6 +22220,10 @@ class main_menu(TUIMenu):
|
|
|
22050
22220
|
"""
|
|
22051
22221
|
No help available.
|
|
22052
22222
|
"""
|
|
22223
|
+
class show_hide_annotations(TUIMethod):
|
|
22224
|
+
"""
|
|
22225
|
+
No help available.
|
|
22226
|
+
"""
|
|
22053
22227
|
|
|
22054
22228
|
class custom_field_functions(TUIMenu):
|
|
22055
22229
|
"""
|
|
@@ -22179,23 +22353,31 @@ class main_menu(TUIMenu):
|
|
|
22179
22353
|
def __init__(self, service, version, mode, path):
|
|
22180
22354
|
self.by_surface = self.__class__.by_surface(service, version, mode, path + ["by_surface"])
|
|
22181
22355
|
self.by_type = self.__class__.by_type(service, version, mode, path + ["by_type"])
|
|
22356
|
+
self.titles = self.__class__.titles(service, version, mode, path + ["titles"])
|
|
22182
22357
|
self.automatic_skip = self.__class__.automatic_skip(service, version, mode, path + ["automatic_skip"])
|
|
22183
22358
|
self.axis_faces = self.__class__.axis_faces(service, version, mode, path + ["axis_faces"])
|
|
22184
22359
|
self.background = self.__class__.background(service, version, mode, path + ["background"])
|
|
22360
|
+
self.color_by = self.__class__.color_by(service, version, mode, path + ["color_by"])
|
|
22185
22361
|
self.color_by_type = self.__class__.color_by_type(service, version, mode, path + ["color_by_type"])
|
|
22362
|
+
self.colormap = self.__class__.colormap(service, version, mode, path + ["colormap"])
|
|
22186
22363
|
self.far_field_faces = self.__class__.far_field_faces(service, version, mode, path + ["far_field_faces"])
|
|
22187
22364
|
self.foreground = self.__class__.foreground(service, version, mode, path + ["foreground"])
|
|
22188
22365
|
self.free_surface_faces = self.__class__.free_surface_faces(service, version, mode, path + ["free_surface_faces"])
|
|
22366
|
+
self.graphics_color_theme = self.__class__.graphics_color_theme(service, version, mode, path + ["graphics_color_theme"])
|
|
22189
22367
|
self.inlet_faces = self.__class__.inlet_faces(service, version, mode, path + ["inlet_faces"])
|
|
22190
22368
|
self.interface_faces = self.__class__.interface_faces(service, version, mode, path + ["interface_faces"])
|
|
22191
22369
|
self.interior_faces = self.__class__.interior_faces(service, version, mode, path + ["interior_faces"])
|
|
22192
22370
|
self.internal_faces = self.__class__.internal_faces(service, version, mode, path + ["internal_faces"])
|
|
22193
22371
|
self.list_colors = self.__class__.list_colors(service, version, mode, path + ["list_colors"])
|
|
22372
|
+
self.mesh_display_configuration = self.__class__.mesh_display_configuration(service, version, mode, path + ["mesh_display_configuration"])
|
|
22194
22373
|
self.outlet_faces = self.__class__.outlet_faces(service, version, mode, path + ["outlet_faces"])
|
|
22374
|
+
self.overlays = self.__class__.overlays(service, version, mode, path + ["overlays"])
|
|
22195
22375
|
self.overset_faces = self.__class__.overset_faces(service, version, mode, path + ["overset_faces"])
|
|
22196
22376
|
self.periodic_faces = self.__class__.periodic_faces(service, version, mode, path + ["periodic_faces"])
|
|
22197
22377
|
self.rans_les_interface_faces = self.__class__.rans_les_interface_faces(service, version, mode, path + ["rans_les_interface_faces"])
|
|
22378
|
+
self.render_mesh = self.__class__.render_mesh(service, version, mode, path + ["render_mesh"])
|
|
22198
22379
|
self.reset_colors = self.__class__.reset_colors(service, version, mode, path + ["reset_colors"])
|
|
22380
|
+
self.reset_graphics = self.__class__.reset_graphics(service, version, mode, path + ["reset_graphics"])
|
|
22199
22381
|
self.skip_label = self.__class__.skip_label(service, version, mode, path + ["skip_label"])
|
|
22200
22382
|
self.surface = self.__class__.surface(service, version, mode, path + ["surface"])
|
|
22201
22383
|
self.symmetry_faces = self.__class__.symmetry_faces(service, version, mode, path + ["symmetry_faces"])
|
|
@@ -22214,10 +22396,18 @@ class main_menu(TUIMenu):
|
|
|
22214
22396
|
"""
|
|
22215
22397
|
No help available.
|
|
22216
22398
|
"""
|
|
22399
|
+
class color_by(TUIMethod):
|
|
22400
|
+
"""
|
|
22401
|
+
No help available.
|
|
22402
|
+
"""
|
|
22217
22403
|
class color_by_type(TUIMethod):
|
|
22218
22404
|
"""
|
|
22219
22405
|
No help available.
|
|
22220
22406
|
"""
|
|
22407
|
+
class colormap(TUIMethod):
|
|
22408
|
+
"""
|
|
22409
|
+
No help available.
|
|
22410
|
+
"""
|
|
22221
22411
|
class far_field_faces(TUIMethod):
|
|
22222
22412
|
"""
|
|
22223
22413
|
No help available.
|
|
@@ -22230,6 +22420,10 @@ class main_menu(TUIMenu):
|
|
|
22230
22420
|
"""
|
|
22231
22421
|
No help available.
|
|
22232
22422
|
"""
|
|
22423
|
+
class graphics_color_theme(TUIMethod):
|
|
22424
|
+
"""
|
|
22425
|
+
No help available.
|
|
22426
|
+
"""
|
|
22233
22427
|
class inlet_faces(TUIMethod):
|
|
22234
22428
|
"""
|
|
22235
22429
|
No help available.
|
|
@@ -22250,10 +22444,18 @@ class main_menu(TUIMenu):
|
|
|
22250
22444
|
"""
|
|
22251
22445
|
No help available.
|
|
22252
22446
|
"""
|
|
22447
|
+
class mesh_display_configuration(TUIMethod):
|
|
22448
|
+
"""
|
|
22449
|
+
No help available.
|
|
22450
|
+
"""
|
|
22253
22451
|
class outlet_faces(TUIMethod):
|
|
22254
22452
|
"""
|
|
22255
22453
|
No help available.
|
|
22256
22454
|
"""
|
|
22455
|
+
class overlays(TUIMethod):
|
|
22456
|
+
"""
|
|
22457
|
+
No help available.
|
|
22458
|
+
"""
|
|
22257
22459
|
class overset_faces(TUIMethod):
|
|
22258
22460
|
"""
|
|
22259
22461
|
No help available.
|
|
@@ -22266,10 +22468,18 @@ class main_menu(TUIMenu):
|
|
|
22266
22468
|
"""
|
|
22267
22469
|
No help available.
|
|
22268
22470
|
"""
|
|
22471
|
+
class render_mesh(TUIMethod):
|
|
22472
|
+
"""
|
|
22473
|
+
No help available.
|
|
22474
|
+
"""
|
|
22269
22475
|
class reset_colors(TUIMethod):
|
|
22270
22476
|
"""
|
|
22271
22477
|
No help available.
|
|
22272
22478
|
"""
|
|
22479
|
+
class reset_graphics(TUIMethod):
|
|
22480
|
+
"""
|
|
22481
|
+
No help available.
|
|
22482
|
+
"""
|
|
22273
22483
|
class skip_label(TUIMethod):
|
|
22274
22484
|
"""
|
|
22275
22485
|
No help available.
|
|
@@ -22296,6 +22506,7 @@ class main_menu(TUIMenu):
|
|
|
22296
22506
|
No help available.
|
|
22297
22507
|
"""
|
|
22298
22508
|
def __init__(self, service, version, mode, path):
|
|
22509
|
+
self.surface_name = self.__class__.surface_name(service, version, mode, path + ["surface_name"])
|
|
22299
22510
|
self.list_surfaces_by_color = self.__class__.list_surfaces_by_color(service, version, mode, path + ["list_surfaces_by_color"])
|
|
22300
22511
|
self.list_surfaces_by_material = self.__class__.list_surfaces_by_material(service, version, mode, path + ["list_surfaces_by_material"])
|
|
22301
22512
|
self.reset = self.__class__.reset(service, version, mode, path + ["reset"])
|
|
@@ -22323,6 +22534,48 @@ class main_menu(TUIMenu):
|
|
|
22323
22534
|
No help available.
|
|
22324
22535
|
"""
|
|
22325
22536
|
|
|
22537
|
+
class surface_name(TUIMenu):
|
|
22538
|
+
"""
|
|
22539
|
+
No help available.
|
|
22540
|
+
"""
|
|
22541
|
+
def __init__(self, service, version, mode, path):
|
|
22542
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
22543
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
22544
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
22545
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
22546
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
22547
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
22548
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
22549
|
+
super().__init__(service, version, mode, path)
|
|
22550
|
+
class create(TUIMethod):
|
|
22551
|
+
"""
|
|
22552
|
+
No help available.
|
|
22553
|
+
"""
|
|
22554
|
+
class delete(TUIMethod):
|
|
22555
|
+
"""
|
|
22556
|
+
No help available.
|
|
22557
|
+
"""
|
|
22558
|
+
class edit(TUIMethod):
|
|
22559
|
+
"""
|
|
22560
|
+
Edit surface-name object.
|
|
22561
|
+
"""
|
|
22562
|
+
class list(TUIMethod):
|
|
22563
|
+
"""
|
|
22564
|
+
No help available.
|
|
22565
|
+
"""
|
|
22566
|
+
class list_properties(TUIMethod):
|
|
22567
|
+
"""
|
|
22568
|
+
No help available.
|
|
22569
|
+
"""
|
|
22570
|
+
class make_a_copy(TUIMethod):
|
|
22571
|
+
"""
|
|
22572
|
+
No help available.
|
|
22573
|
+
"""
|
|
22574
|
+
class rename(TUIMethod):
|
|
22575
|
+
"""
|
|
22576
|
+
No help available.
|
|
22577
|
+
"""
|
|
22578
|
+
|
|
22326
22579
|
class by_type(TUIMenu):
|
|
22327
22580
|
"""
|
|
22328
22581
|
No help available.
|
|
@@ -22388,6 +22641,38 @@ class main_menu(TUIMenu):
|
|
|
22388
22641
|
No help available.
|
|
22389
22642
|
"""
|
|
22390
22643
|
|
|
22644
|
+
class titles(TUIMenu):
|
|
22645
|
+
"""
|
|
22646
|
+
No help available.
|
|
22647
|
+
"""
|
|
22648
|
+
def __init__(self, service, version, mode, path):
|
|
22649
|
+
self.left_bottom = self.__class__.left_bottom(service, version, mode, path + ["left_bottom"])
|
|
22650
|
+
self.left_top = self.__class__.left_top(service, version, mode, path + ["left_top"])
|
|
22651
|
+
self.right_bottom = self.__class__.right_bottom(service, version, mode, path + ["right_bottom"])
|
|
22652
|
+
self.right_middle = self.__class__.right_middle(service, version, mode, path + ["right_middle"])
|
|
22653
|
+
self.right_top = self.__class__.right_top(service, version, mode, path + ["right_top"])
|
|
22654
|
+
super().__init__(service, version, mode, path)
|
|
22655
|
+
class left_bottom(TUIMethod):
|
|
22656
|
+
"""
|
|
22657
|
+
No help available.
|
|
22658
|
+
"""
|
|
22659
|
+
class left_top(TUIMethod):
|
|
22660
|
+
"""
|
|
22661
|
+
No help available.
|
|
22662
|
+
"""
|
|
22663
|
+
class right_bottom(TUIMethod):
|
|
22664
|
+
"""
|
|
22665
|
+
No help available.
|
|
22666
|
+
"""
|
|
22667
|
+
class right_middle(TUIMethod):
|
|
22668
|
+
"""
|
|
22669
|
+
No help available.
|
|
22670
|
+
"""
|
|
22671
|
+
class right_top(TUIMethod):
|
|
22672
|
+
"""
|
|
22673
|
+
No help available.
|
|
22674
|
+
"""
|
|
22675
|
+
|
|
22391
22676
|
class contour(TUIMenu):
|
|
22392
22677
|
"""
|
|
22393
22678
|
No help available.
|
|
@@ -22526,8 +22811,6 @@ class main_menu(TUIMenu):
|
|
|
22526
22811
|
"""
|
|
22527
22812
|
def __init__(self, service, version, mode, path):
|
|
22528
22813
|
self.hsf_file = self.__class__.hsf_file(service, version, mode, path + ["hsf_file"])
|
|
22529
|
-
self.re_render = self.__class__.re_render(service, version, mode, path + ["re_render"])
|
|
22530
|
-
self.re_scale = self.__class__.re_scale(service, version, mode, path + ["re_scale"])
|
|
22531
22814
|
self.surface_cells = self.__class__.surface_cells(service, version, mode, path + ["surface_cells"])
|
|
22532
22815
|
self.surface_mesh = self.__class__.surface_mesh(service, version, mode, path + ["surface_mesh"])
|
|
22533
22816
|
self.zone_mesh = self.__class__.zone_mesh(service, version, mode, path + ["zone_mesh"])
|
|
@@ -22536,14 +22819,6 @@ class main_menu(TUIMenu):
|
|
|
22536
22819
|
"""
|
|
22537
22820
|
No help available.
|
|
22538
22821
|
"""
|
|
22539
|
-
class re_render(TUIMethod):
|
|
22540
|
-
"""
|
|
22541
|
-
No help available.
|
|
22542
|
-
"""
|
|
22543
|
-
class re_scale(TUIMethod):
|
|
22544
|
-
"""
|
|
22545
|
-
No help available.
|
|
22546
|
-
"""
|
|
22547
22822
|
class surface_cells(TUIMethod):
|
|
22548
22823
|
"""
|
|
22549
22824
|
No help available.
|
|
@@ -23174,6 +23449,7 @@ class main_menu(TUIMenu):
|
|
|
23174
23449
|
self.rendering = self.__class__.rendering(service, version, mode, path + ["rendering"])
|
|
23175
23450
|
self.display_in_omniverse = self.__class__.display_in_omniverse(service, version, mode, path + ["display_in_omniverse"])
|
|
23176
23451
|
self.display_live_preview = self.__class__.display_live_preview(service, version, mode, path + ["display_live_preview"])
|
|
23452
|
+
self.usd_export_via_connector = self.__class__.usd_export_via_connector(service, version, mode, path + ["usd_export_via_connector"])
|
|
23177
23453
|
super().__init__(service, version, mode, path)
|
|
23178
23454
|
class display_in_omniverse(TUIMethod):
|
|
23179
23455
|
"""
|
|
@@ -23183,6 +23459,10 @@ class main_menu(TUIMenu):
|
|
|
23183
23459
|
"""
|
|
23184
23460
|
No help available.
|
|
23185
23461
|
"""
|
|
23462
|
+
class usd_export_via_connector(TUIMethod):
|
|
23463
|
+
"""
|
|
23464
|
+
No help available.
|
|
23465
|
+
"""
|
|
23186
23466
|
|
|
23187
23467
|
class background(TUIMenu):
|
|
23188
23468
|
"""
|
|
@@ -23504,6 +23784,7 @@ class main_menu(TUIMenu):
|
|
|
23504
23784
|
No help available.
|
|
23505
23785
|
"""
|
|
23506
23786
|
def __init__(self, service, version, mode, path):
|
|
23787
|
+
self.apply = self.__class__.apply(service, version, mode, path + ["apply"])
|
|
23507
23788
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
23508
23789
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
23509
23790
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
@@ -23513,10 +23794,13 @@ class main_menu(TUIMenu):
|
|
|
23513
23794
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
23514
23795
|
self.read = self.__class__.read(service, version, mode, path + ["read"])
|
|
23515
23796
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
23516
|
-
self.restore_state = self.__class__.restore_state(service, version, mode, path + ["restore_state"])
|
|
23517
23797
|
self.use_active = self.__class__.use_active(service, version, mode, path + ["use_active"])
|
|
23518
23798
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
23519
23799
|
super().__init__(service, version, mode, path)
|
|
23800
|
+
class apply(TUIMethod):
|
|
23801
|
+
"""
|
|
23802
|
+
No help available.
|
|
23803
|
+
"""
|
|
23520
23804
|
class copy(TUIMethod):
|
|
23521
23805
|
"""
|
|
23522
23806
|
No help available.
|
|
@@ -23553,10 +23837,6 @@ class main_menu(TUIMenu):
|
|
|
23553
23837
|
"""
|
|
23554
23838
|
No help available.
|
|
23555
23839
|
"""
|
|
23556
|
-
class restore_state(TUIMethod):
|
|
23557
|
-
"""
|
|
23558
|
-
No help available.
|
|
23559
|
-
"""
|
|
23560
23840
|
class use_active(TUIMethod):
|
|
23561
23841
|
"""
|
|
23562
23842
|
No help available.
|
|
@@ -24137,13 +24417,16 @@ class main_menu(TUIMenu):
|
|
|
24137
24417
|
self.interpolated_data = self.__class__.interpolated_data(service, version, mode, path + ["interpolated_data"])
|
|
24138
24418
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
24139
24419
|
self.plot_from_file = self.__class__.plot_from_file(service, version, mode, path + ["plot_from_file"])
|
|
24420
|
+
self.plot_from_file_list = self.__class__.plot_from_file_list(service, version, mode, path + ["plot_from_file_list"])
|
|
24140
24421
|
self.profile_data = self.__class__.profile_data(service, version, mode, path + ["profile_data"])
|
|
24141
24422
|
self.solution_plot = self.__class__.solution_plot(service, version, mode, path + ["solution_plot"])
|
|
24142
24423
|
self.xy_plot = self.__class__.xy_plot(service, version, mode, path + ["xy_plot"])
|
|
24143
24424
|
self.circum_avg_axial = self.__class__.circum_avg_axial(service, version, mode, path + ["circum_avg_axial"])
|
|
24144
24425
|
self.circum_avg_radial = self.__class__.circum_avg_radial(service, version, mode, path + ["circum_avg_radial"])
|
|
24145
24426
|
self.fft = self.__class__.fft(service, version, mode, path + ["fft"])
|
|
24427
|
+
self.label_alignment = self.__class__.label_alignment(service, version, mode, path + ["label_alignment"])
|
|
24146
24428
|
self.plot_direction = self.__class__.plot_direction(service, version, mode, path + ["plot_direction"])
|
|
24429
|
+
self.set_boundary_val_off = self.__class__.set_boundary_val_off(service, version, mode, path + ["set_boundary_val_off"])
|
|
24147
24430
|
super().__init__(service, version, mode, path)
|
|
24148
24431
|
class circum_avg_axial(TUIMethod):
|
|
24149
24432
|
"""
|
|
@@ -24157,10 +24440,18 @@ class main_menu(TUIMenu):
|
|
|
24157
24440
|
"""
|
|
24158
24441
|
No help available.
|
|
24159
24442
|
"""
|
|
24443
|
+
class label_alignment(TUIMethod):
|
|
24444
|
+
"""
|
|
24445
|
+
No help available.
|
|
24446
|
+
"""
|
|
24160
24447
|
class plot_direction(TUIMethod):
|
|
24161
24448
|
"""
|
|
24162
24449
|
No help available.
|
|
24163
24450
|
"""
|
|
24451
|
+
class set_boundary_val_off(TUIMethod):
|
|
24452
|
+
"""
|
|
24453
|
+
No help available.
|
|
24454
|
+
"""
|
|
24164
24455
|
|
|
24165
24456
|
class cumulative_plot(TUIMenu):
|
|
24166
24457
|
"""
|
|
@@ -24174,6 +24465,7 @@ class main_menu(TUIMenu):
|
|
|
24174
24465
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
24175
24466
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
24176
24467
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
24468
|
+
self.print = self.__class__.print(service, version, mode, path + ["print"])
|
|
24177
24469
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
24178
24470
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
24179
24471
|
super().__init__(service, version, mode, path)
|
|
@@ -24205,6 +24497,10 @@ class main_menu(TUIMenu):
|
|
|
24205
24497
|
"""
|
|
24206
24498
|
No help available.
|
|
24207
24499
|
"""
|
|
24500
|
+
class print(TUIMethod):
|
|
24501
|
+
"""
|
|
24502
|
+
No help available.
|
|
24503
|
+
"""
|
|
24208
24504
|
class rename(TUIMethod):
|
|
24209
24505
|
"""
|
|
24210
24506
|
No help available.
|
|
@@ -24226,6 +24522,7 @@ class main_menu(TUIMenu):
|
|
|
24226
24522
|
self.maximum = self.__class__.maximum(service, version, mode, path + ["maximum"])
|
|
24227
24523
|
self.minimum = self.__class__.minimum(service, version, mode, path + ["minimum"])
|
|
24228
24524
|
self.num_divisions = self.__class__.num_divisions(service, version, mode, path + ["num_divisions"])
|
|
24525
|
+
self.physics = self.__class__.physics(service, version, mode, path + ["physics"])
|
|
24229
24526
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
24230
24527
|
self.print = self.__class__.print(service, version, mode, path + ["print"])
|
|
24231
24528
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
@@ -24251,6 +24548,10 @@ class main_menu(TUIMenu):
|
|
|
24251
24548
|
"""
|
|
24252
24549
|
No help available.
|
|
24253
24550
|
"""
|
|
24551
|
+
class physics(TUIMethod):
|
|
24552
|
+
"""
|
|
24553
|
+
No help available.
|
|
24554
|
+
"""
|
|
24254
24555
|
class plot(TUIMethod):
|
|
24255
24556
|
"""
|
|
24256
24557
|
No help available.
|
|
@@ -24291,6 +24592,8 @@ class main_menu(TUIMenu):
|
|
|
24291
24592
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24292
24593
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24293
24594
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24595
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24596
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24294
24597
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24295
24598
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24296
24599
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24302,6 +24605,14 @@ class main_menu(TUIMenu):
|
|
|
24302
24605
|
"""
|
|
24303
24606
|
No help available.
|
|
24304
24607
|
"""
|
|
24608
|
+
class auto_range_max(TUIMethod):
|
|
24609
|
+
"""
|
|
24610
|
+
No help available.
|
|
24611
|
+
"""
|
|
24612
|
+
class auto_range_min(TUIMethod):
|
|
24613
|
+
"""
|
|
24614
|
+
No help available.
|
|
24615
|
+
"""
|
|
24305
24616
|
class label(TUIMethod):
|
|
24306
24617
|
"""
|
|
24307
24618
|
No help available.
|
|
@@ -24332,13 +24643,28 @@ class main_menu(TUIMenu):
|
|
|
24332
24643
|
No help available.
|
|
24333
24644
|
"""
|
|
24334
24645
|
def __init__(self, service, version, mode, path):
|
|
24646
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24335
24647
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24648
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24649
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24336
24650
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24337
24651
|
super().__init__(service, version, mode, path)
|
|
24652
|
+
class auto_placement(TUIMethod):
|
|
24653
|
+
"""
|
|
24654
|
+
No help available.
|
|
24655
|
+
"""
|
|
24338
24656
|
class color(TUIMethod):
|
|
24339
24657
|
"""
|
|
24340
24658
|
No help available.
|
|
24341
24659
|
"""
|
|
24660
|
+
class distance(TUIMethod):
|
|
24661
|
+
"""
|
|
24662
|
+
No help available.
|
|
24663
|
+
"""
|
|
24664
|
+
class units_or_divisions(TUIMethod):
|
|
24665
|
+
"""
|
|
24666
|
+
No help available.
|
|
24667
|
+
"""
|
|
24342
24668
|
class weight(TUIMethod):
|
|
24343
24669
|
"""
|
|
24344
24670
|
No help available.
|
|
@@ -24349,13 +24675,28 @@ class main_menu(TUIMenu):
|
|
|
24349
24675
|
No help available.
|
|
24350
24676
|
"""
|
|
24351
24677
|
def __init__(self, service, version, mode, path):
|
|
24678
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24352
24679
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24680
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24681
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24353
24682
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24354
24683
|
super().__init__(service, version, mode, path)
|
|
24684
|
+
class auto_placement(TUIMethod):
|
|
24685
|
+
"""
|
|
24686
|
+
No help available.
|
|
24687
|
+
"""
|
|
24355
24688
|
class color(TUIMethod):
|
|
24356
24689
|
"""
|
|
24357
24690
|
No help available.
|
|
24358
24691
|
"""
|
|
24692
|
+
class distance(TUIMethod):
|
|
24693
|
+
"""
|
|
24694
|
+
No help available.
|
|
24695
|
+
"""
|
|
24696
|
+
class units_or_divisions(TUIMethod):
|
|
24697
|
+
"""
|
|
24698
|
+
No help available.
|
|
24699
|
+
"""
|
|
24359
24700
|
class weight(TUIMethod):
|
|
24360
24701
|
"""
|
|
24361
24702
|
No help available.
|
|
@@ -24387,6 +24728,8 @@ class main_menu(TUIMenu):
|
|
|
24387
24728
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24388
24729
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24389
24730
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24731
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24732
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24390
24733
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24391
24734
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24392
24735
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24398,6 +24741,14 @@ class main_menu(TUIMenu):
|
|
|
24398
24741
|
"""
|
|
24399
24742
|
No help available.
|
|
24400
24743
|
"""
|
|
24744
|
+
class auto_range_max(TUIMethod):
|
|
24745
|
+
"""
|
|
24746
|
+
No help available.
|
|
24747
|
+
"""
|
|
24748
|
+
class auto_range_min(TUIMethod):
|
|
24749
|
+
"""
|
|
24750
|
+
No help available.
|
|
24751
|
+
"""
|
|
24401
24752
|
class label(TUIMethod):
|
|
24402
24753
|
"""
|
|
24403
24754
|
No help available.
|
|
@@ -24428,13 +24779,28 @@ class main_menu(TUIMenu):
|
|
|
24428
24779
|
No help available.
|
|
24429
24780
|
"""
|
|
24430
24781
|
def __init__(self, service, version, mode, path):
|
|
24782
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24431
24783
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24784
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24785
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24432
24786
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24433
24787
|
super().__init__(service, version, mode, path)
|
|
24788
|
+
class auto_placement(TUIMethod):
|
|
24789
|
+
"""
|
|
24790
|
+
No help available.
|
|
24791
|
+
"""
|
|
24434
24792
|
class color(TUIMethod):
|
|
24435
24793
|
"""
|
|
24436
24794
|
No help available.
|
|
24437
24795
|
"""
|
|
24796
|
+
class distance(TUIMethod):
|
|
24797
|
+
"""
|
|
24798
|
+
No help available.
|
|
24799
|
+
"""
|
|
24800
|
+
class units_or_divisions(TUIMethod):
|
|
24801
|
+
"""
|
|
24802
|
+
No help available.
|
|
24803
|
+
"""
|
|
24438
24804
|
class weight(TUIMethod):
|
|
24439
24805
|
"""
|
|
24440
24806
|
No help available.
|
|
@@ -24445,13 +24811,28 @@ class main_menu(TUIMenu):
|
|
|
24445
24811
|
No help available.
|
|
24446
24812
|
"""
|
|
24447
24813
|
def __init__(self, service, version, mode, path):
|
|
24814
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24448
24815
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24816
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24817
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24449
24818
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24450
24819
|
super().__init__(service, version, mode, path)
|
|
24820
|
+
class auto_placement(TUIMethod):
|
|
24821
|
+
"""
|
|
24822
|
+
No help available.
|
|
24823
|
+
"""
|
|
24451
24824
|
class color(TUIMethod):
|
|
24452
24825
|
"""
|
|
24453
24826
|
No help available.
|
|
24454
24827
|
"""
|
|
24828
|
+
class distance(TUIMethod):
|
|
24829
|
+
"""
|
|
24830
|
+
No help available.
|
|
24831
|
+
"""
|
|
24832
|
+
class units_or_divisions(TUIMethod):
|
|
24833
|
+
"""
|
|
24834
|
+
No help available.
|
|
24835
|
+
"""
|
|
24455
24836
|
class weight(TUIMethod):
|
|
24456
24837
|
"""
|
|
24457
24838
|
No help available.
|
|
@@ -24548,6 +24929,8 @@ class main_menu(TUIMenu):
|
|
|
24548
24929
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24549
24930
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24550
24931
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24932
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24933
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24551
24934
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24552
24935
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24553
24936
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24559,6 +24942,14 @@ class main_menu(TUIMenu):
|
|
|
24559
24942
|
"""
|
|
24560
24943
|
No help available.
|
|
24561
24944
|
"""
|
|
24945
|
+
class auto_range_max(TUIMethod):
|
|
24946
|
+
"""
|
|
24947
|
+
No help available.
|
|
24948
|
+
"""
|
|
24949
|
+
class auto_range_min(TUIMethod):
|
|
24950
|
+
"""
|
|
24951
|
+
No help available.
|
|
24952
|
+
"""
|
|
24562
24953
|
class label(TUIMethod):
|
|
24563
24954
|
"""
|
|
24564
24955
|
No help available.
|
|
@@ -24589,13 +24980,28 @@ class main_menu(TUIMenu):
|
|
|
24589
24980
|
No help available.
|
|
24590
24981
|
"""
|
|
24591
24982
|
def __init__(self, service, version, mode, path):
|
|
24983
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24592
24984
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24985
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24986
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24593
24987
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24594
24988
|
super().__init__(service, version, mode, path)
|
|
24989
|
+
class auto_placement(TUIMethod):
|
|
24990
|
+
"""
|
|
24991
|
+
No help available.
|
|
24992
|
+
"""
|
|
24595
24993
|
class color(TUIMethod):
|
|
24596
24994
|
"""
|
|
24597
24995
|
No help available.
|
|
24598
24996
|
"""
|
|
24997
|
+
class distance(TUIMethod):
|
|
24998
|
+
"""
|
|
24999
|
+
No help available.
|
|
25000
|
+
"""
|
|
25001
|
+
class units_or_divisions(TUIMethod):
|
|
25002
|
+
"""
|
|
25003
|
+
No help available.
|
|
25004
|
+
"""
|
|
24599
25005
|
class weight(TUIMethod):
|
|
24600
25006
|
"""
|
|
24601
25007
|
No help available.
|
|
@@ -24606,13 +25012,28 @@ class main_menu(TUIMenu):
|
|
|
24606
25012
|
No help available.
|
|
24607
25013
|
"""
|
|
24608
25014
|
def __init__(self, service, version, mode, path):
|
|
25015
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24609
25016
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25017
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25018
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24610
25019
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24611
25020
|
super().__init__(service, version, mode, path)
|
|
25021
|
+
class auto_placement(TUIMethod):
|
|
25022
|
+
"""
|
|
25023
|
+
No help available.
|
|
25024
|
+
"""
|
|
24612
25025
|
class color(TUIMethod):
|
|
24613
25026
|
"""
|
|
24614
25027
|
No help available.
|
|
24615
25028
|
"""
|
|
25029
|
+
class distance(TUIMethod):
|
|
25030
|
+
"""
|
|
25031
|
+
No help available.
|
|
25032
|
+
"""
|
|
25033
|
+
class units_or_divisions(TUIMethod):
|
|
25034
|
+
"""
|
|
25035
|
+
No help available.
|
|
25036
|
+
"""
|
|
24616
25037
|
class weight(TUIMethod):
|
|
24617
25038
|
"""
|
|
24618
25039
|
No help available.
|
|
@@ -24644,6 +25065,8 @@ class main_menu(TUIMenu):
|
|
|
24644
25065
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24645
25066
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24646
25067
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25068
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25069
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24647
25070
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24648
25071
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24649
25072
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24655,6 +25078,14 @@ class main_menu(TUIMenu):
|
|
|
24655
25078
|
"""
|
|
24656
25079
|
No help available.
|
|
24657
25080
|
"""
|
|
25081
|
+
class auto_range_max(TUIMethod):
|
|
25082
|
+
"""
|
|
25083
|
+
No help available.
|
|
25084
|
+
"""
|
|
25085
|
+
class auto_range_min(TUIMethod):
|
|
25086
|
+
"""
|
|
25087
|
+
No help available.
|
|
25088
|
+
"""
|
|
24658
25089
|
class label(TUIMethod):
|
|
24659
25090
|
"""
|
|
24660
25091
|
No help available.
|
|
@@ -24685,13 +25116,28 @@ class main_menu(TUIMenu):
|
|
|
24685
25116
|
No help available.
|
|
24686
25117
|
"""
|
|
24687
25118
|
def __init__(self, service, version, mode, path):
|
|
25119
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24688
25120
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25121
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25122
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24689
25123
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24690
25124
|
super().__init__(service, version, mode, path)
|
|
25125
|
+
class auto_placement(TUIMethod):
|
|
25126
|
+
"""
|
|
25127
|
+
No help available.
|
|
25128
|
+
"""
|
|
24691
25129
|
class color(TUIMethod):
|
|
24692
25130
|
"""
|
|
24693
25131
|
No help available.
|
|
24694
25132
|
"""
|
|
25133
|
+
class distance(TUIMethod):
|
|
25134
|
+
"""
|
|
25135
|
+
No help available.
|
|
25136
|
+
"""
|
|
25137
|
+
class units_or_divisions(TUIMethod):
|
|
25138
|
+
"""
|
|
25139
|
+
No help available.
|
|
25140
|
+
"""
|
|
24695
25141
|
class weight(TUIMethod):
|
|
24696
25142
|
"""
|
|
24697
25143
|
No help available.
|
|
@@ -24702,13 +25148,28 @@ class main_menu(TUIMenu):
|
|
|
24702
25148
|
No help available.
|
|
24703
25149
|
"""
|
|
24704
25150
|
def __init__(self, service, version, mode, path):
|
|
25151
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24705
25152
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25153
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25154
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24706
25155
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24707
25156
|
super().__init__(service, version, mode, path)
|
|
25157
|
+
class auto_placement(TUIMethod):
|
|
25158
|
+
"""
|
|
25159
|
+
No help available.
|
|
25160
|
+
"""
|
|
24708
25161
|
class color(TUIMethod):
|
|
24709
25162
|
"""
|
|
24710
25163
|
No help available.
|
|
24711
25164
|
"""
|
|
25165
|
+
class distance(TUIMethod):
|
|
25166
|
+
"""
|
|
25167
|
+
No help available.
|
|
25168
|
+
"""
|
|
25169
|
+
class units_or_divisions(TUIMethod):
|
|
25170
|
+
"""
|
|
25171
|
+
No help available.
|
|
25172
|
+
"""
|
|
24712
25173
|
class weight(TUIMethod):
|
|
24713
25174
|
"""
|
|
24714
25175
|
No help available.
|
|
@@ -24790,6 +25251,8 @@ class main_menu(TUIMenu):
|
|
|
24790
25251
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24791
25252
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24792
25253
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25254
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25255
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24793
25256
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24794
25257
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24795
25258
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24801,6 +25264,14 @@ class main_menu(TUIMenu):
|
|
|
24801
25264
|
"""
|
|
24802
25265
|
No help available.
|
|
24803
25266
|
"""
|
|
25267
|
+
class auto_range_max(TUIMethod):
|
|
25268
|
+
"""
|
|
25269
|
+
No help available.
|
|
25270
|
+
"""
|
|
25271
|
+
class auto_range_min(TUIMethod):
|
|
25272
|
+
"""
|
|
25273
|
+
No help available.
|
|
25274
|
+
"""
|
|
24804
25275
|
class label(TUIMethod):
|
|
24805
25276
|
"""
|
|
24806
25277
|
No help available.
|
|
@@ -24831,13 +25302,28 @@ class main_menu(TUIMenu):
|
|
|
24831
25302
|
No help available.
|
|
24832
25303
|
"""
|
|
24833
25304
|
def __init__(self, service, version, mode, path):
|
|
25305
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24834
25306
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25307
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25308
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24835
25309
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24836
25310
|
super().__init__(service, version, mode, path)
|
|
25311
|
+
class auto_placement(TUIMethod):
|
|
25312
|
+
"""
|
|
25313
|
+
No help available.
|
|
25314
|
+
"""
|
|
24837
25315
|
class color(TUIMethod):
|
|
24838
25316
|
"""
|
|
24839
25317
|
No help available.
|
|
24840
25318
|
"""
|
|
25319
|
+
class distance(TUIMethod):
|
|
25320
|
+
"""
|
|
25321
|
+
No help available.
|
|
25322
|
+
"""
|
|
25323
|
+
class units_or_divisions(TUIMethod):
|
|
25324
|
+
"""
|
|
25325
|
+
No help available.
|
|
25326
|
+
"""
|
|
24841
25327
|
class weight(TUIMethod):
|
|
24842
25328
|
"""
|
|
24843
25329
|
No help available.
|
|
@@ -24848,13 +25334,28 @@ class main_menu(TUIMenu):
|
|
|
24848
25334
|
No help available.
|
|
24849
25335
|
"""
|
|
24850
25336
|
def __init__(self, service, version, mode, path):
|
|
25337
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24851
25338
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25339
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25340
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24852
25341
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24853
25342
|
super().__init__(service, version, mode, path)
|
|
25343
|
+
class auto_placement(TUIMethod):
|
|
25344
|
+
"""
|
|
25345
|
+
No help available.
|
|
25346
|
+
"""
|
|
24854
25347
|
class color(TUIMethod):
|
|
24855
25348
|
"""
|
|
24856
25349
|
No help available.
|
|
24857
25350
|
"""
|
|
25351
|
+
class distance(TUIMethod):
|
|
25352
|
+
"""
|
|
25353
|
+
No help available.
|
|
25354
|
+
"""
|
|
25355
|
+
class units_or_divisions(TUIMethod):
|
|
25356
|
+
"""
|
|
25357
|
+
No help available.
|
|
25358
|
+
"""
|
|
24858
25359
|
class weight(TUIMethod):
|
|
24859
25360
|
"""
|
|
24860
25361
|
No help available.
|
|
@@ -24886,6 +25387,8 @@ class main_menu(TUIMenu):
|
|
|
24886
25387
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24887
25388
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24888
25389
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25390
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25391
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24889
25392
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24890
25393
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24891
25394
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24897,6 +25400,14 @@ class main_menu(TUIMenu):
|
|
|
24897
25400
|
"""
|
|
24898
25401
|
No help available.
|
|
24899
25402
|
"""
|
|
25403
|
+
class auto_range_max(TUIMethod):
|
|
25404
|
+
"""
|
|
25405
|
+
No help available.
|
|
25406
|
+
"""
|
|
25407
|
+
class auto_range_min(TUIMethod):
|
|
25408
|
+
"""
|
|
25409
|
+
No help available.
|
|
25410
|
+
"""
|
|
24900
25411
|
class label(TUIMethod):
|
|
24901
25412
|
"""
|
|
24902
25413
|
No help available.
|
|
@@ -24927,13 +25438,28 @@ class main_menu(TUIMenu):
|
|
|
24927
25438
|
No help available.
|
|
24928
25439
|
"""
|
|
24929
25440
|
def __init__(self, service, version, mode, path):
|
|
25441
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24930
25442
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25443
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25444
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24931
25445
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24932
25446
|
super().__init__(service, version, mode, path)
|
|
25447
|
+
class auto_placement(TUIMethod):
|
|
25448
|
+
"""
|
|
25449
|
+
No help available.
|
|
25450
|
+
"""
|
|
24933
25451
|
class color(TUIMethod):
|
|
24934
25452
|
"""
|
|
24935
25453
|
No help available.
|
|
24936
25454
|
"""
|
|
25455
|
+
class distance(TUIMethod):
|
|
25456
|
+
"""
|
|
25457
|
+
No help available.
|
|
25458
|
+
"""
|
|
25459
|
+
class units_or_divisions(TUIMethod):
|
|
25460
|
+
"""
|
|
25461
|
+
No help available.
|
|
25462
|
+
"""
|
|
24937
25463
|
class weight(TUIMethod):
|
|
24938
25464
|
"""
|
|
24939
25465
|
No help available.
|
|
@@ -24944,13 +25470,28 @@ class main_menu(TUIMenu):
|
|
|
24944
25470
|
No help available.
|
|
24945
25471
|
"""
|
|
24946
25472
|
def __init__(self, service, version, mode, path):
|
|
25473
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24947
25474
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25475
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25476
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24948
25477
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24949
25478
|
super().__init__(service, version, mode, path)
|
|
25479
|
+
class auto_placement(TUIMethod):
|
|
25480
|
+
"""
|
|
25481
|
+
No help available.
|
|
25482
|
+
"""
|
|
24950
25483
|
class color(TUIMethod):
|
|
24951
25484
|
"""
|
|
24952
25485
|
No help available.
|
|
24953
25486
|
"""
|
|
25487
|
+
class distance(TUIMethod):
|
|
25488
|
+
"""
|
|
25489
|
+
No help available.
|
|
25490
|
+
"""
|
|
25491
|
+
class units_or_divisions(TUIMethod):
|
|
25492
|
+
"""
|
|
25493
|
+
No help available.
|
|
25494
|
+
"""
|
|
24954
25495
|
class weight(TUIMethod):
|
|
24955
25496
|
"""
|
|
24956
25497
|
No help available.
|
|
@@ -25032,6 +25573,8 @@ class main_menu(TUIMenu):
|
|
|
25032
25573
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25033
25574
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25034
25575
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25576
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25577
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25035
25578
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25036
25579
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25037
25580
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25043,6 +25586,14 @@ class main_menu(TUIMenu):
|
|
|
25043
25586
|
"""
|
|
25044
25587
|
No help available.
|
|
25045
25588
|
"""
|
|
25589
|
+
class auto_range_max(TUIMethod):
|
|
25590
|
+
"""
|
|
25591
|
+
No help available.
|
|
25592
|
+
"""
|
|
25593
|
+
class auto_range_min(TUIMethod):
|
|
25594
|
+
"""
|
|
25595
|
+
No help available.
|
|
25596
|
+
"""
|
|
25046
25597
|
class label(TUIMethod):
|
|
25047
25598
|
"""
|
|
25048
25599
|
No help available.
|
|
@@ -25073,13 +25624,28 @@ class main_menu(TUIMenu):
|
|
|
25073
25624
|
No help available.
|
|
25074
25625
|
"""
|
|
25075
25626
|
def __init__(self, service, version, mode, path):
|
|
25627
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25076
25628
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25629
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25630
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25077
25631
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25078
25632
|
super().__init__(service, version, mode, path)
|
|
25633
|
+
class auto_placement(TUIMethod):
|
|
25634
|
+
"""
|
|
25635
|
+
No help available.
|
|
25636
|
+
"""
|
|
25079
25637
|
class color(TUIMethod):
|
|
25080
25638
|
"""
|
|
25081
25639
|
No help available.
|
|
25082
25640
|
"""
|
|
25641
|
+
class distance(TUIMethod):
|
|
25642
|
+
"""
|
|
25643
|
+
No help available.
|
|
25644
|
+
"""
|
|
25645
|
+
class units_or_divisions(TUIMethod):
|
|
25646
|
+
"""
|
|
25647
|
+
No help available.
|
|
25648
|
+
"""
|
|
25083
25649
|
class weight(TUIMethod):
|
|
25084
25650
|
"""
|
|
25085
25651
|
No help available.
|
|
@@ -25090,13 +25656,28 @@ class main_menu(TUIMenu):
|
|
|
25090
25656
|
No help available.
|
|
25091
25657
|
"""
|
|
25092
25658
|
def __init__(self, service, version, mode, path):
|
|
25659
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25093
25660
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25661
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25662
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25094
25663
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25095
25664
|
super().__init__(service, version, mode, path)
|
|
25665
|
+
class auto_placement(TUIMethod):
|
|
25666
|
+
"""
|
|
25667
|
+
No help available.
|
|
25668
|
+
"""
|
|
25096
25669
|
class color(TUIMethod):
|
|
25097
25670
|
"""
|
|
25098
25671
|
No help available.
|
|
25099
25672
|
"""
|
|
25673
|
+
class distance(TUIMethod):
|
|
25674
|
+
"""
|
|
25675
|
+
No help available.
|
|
25676
|
+
"""
|
|
25677
|
+
class units_or_divisions(TUIMethod):
|
|
25678
|
+
"""
|
|
25679
|
+
No help available.
|
|
25680
|
+
"""
|
|
25100
25681
|
class weight(TUIMethod):
|
|
25101
25682
|
"""
|
|
25102
25683
|
No help available.
|
|
@@ -25128,6 +25709,8 @@ class main_menu(TUIMenu):
|
|
|
25128
25709
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25129
25710
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25130
25711
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25712
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25713
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25131
25714
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25132
25715
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25133
25716
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25139,6 +25722,14 @@ class main_menu(TUIMenu):
|
|
|
25139
25722
|
"""
|
|
25140
25723
|
No help available.
|
|
25141
25724
|
"""
|
|
25725
|
+
class auto_range_max(TUIMethod):
|
|
25726
|
+
"""
|
|
25727
|
+
No help available.
|
|
25728
|
+
"""
|
|
25729
|
+
class auto_range_min(TUIMethod):
|
|
25730
|
+
"""
|
|
25731
|
+
No help available.
|
|
25732
|
+
"""
|
|
25142
25733
|
class label(TUIMethod):
|
|
25143
25734
|
"""
|
|
25144
25735
|
No help available.
|
|
@@ -25169,13 +25760,28 @@ class main_menu(TUIMenu):
|
|
|
25169
25760
|
No help available.
|
|
25170
25761
|
"""
|
|
25171
25762
|
def __init__(self, service, version, mode, path):
|
|
25763
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25172
25764
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25765
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25766
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25173
25767
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25174
25768
|
super().__init__(service, version, mode, path)
|
|
25769
|
+
class auto_placement(TUIMethod):
|
|
25770
|
+
"""
|
|
25771
|
+
No help available.
|
|
25772
|
+
"""
|
|
25175
25773
|
class color(TUIMethod):
|
|
25176
25774
|
"""
|
|
25177
25775
|
No help available.
|
|
25178
25776
|
"""
|
|
25777
|
+
class distance(TUIMethod):
|
|
25778
|
+
"""
|
|
25779
|
+
No help available.
|
|
25780
|
+
"""
|
|
25781
|
+
class units_or_divisions(TUIMethod):
|
|
25782
|
+
"""
|
|
25783
|
+
No help available.
|
|
25784
|
+
"""
|
|
25179
25785
|
class weight(TUIMethod):
|
|
25180
25786
|
"""
|
|
25181
25787
|
No help available.
|
|
@@ -25186,13 +25792,28 @@ class main_menu(TUIMenu):
|
|
|
25186
25792
|
No help available.
|
|
25187
25793
|
"""
|
|
25188
25794
|
def __init__(self, service, version, mode, path):
|
|
25795
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25189
25796
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25797
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25798
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25190
25799
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25191
25800
|
super().__init__(service, version, mode, path)
|
|
25801
|
+
class auto_placement(TUIMethod):
|
|
25802
|
+
"""
|
|
25803
|
+
No help available.
|
|
25804
|
+
"""
|
|
25192
25805
|
class color(TUIMethod):
|
|
25193
25806
|
"""
|
|
25194
25807
|
No help available.
|
|
25195
25808
|
"""
|
|
25809
|
+
class distance(TUIMethod):
|
|
25810
|
+
"""
|
|
25811
|
+
No help available.
|
|
25812
|
+
"""
|
|
25813
|
+
class units_or_divisions(TUIMethod):
|
|
25814
|
+
"""
|
|
25815
|
+
No help available.
|
|
25816
|
+
"""
|
|
25196
25817
|
class weight(TUIMethod):
|
|
25197
25818
|
"""
|
|
25198
25819
|
No help available.
|
|
@@ -25237,31 +25858,16 @@ class main_menu(TUIMenu):
|
|
|
25237
25858
|
No help available.
|
|
25238
25859
|
"""
|
|
25239
25860
|
|
|
25240
|
-
class
|
|
25861
|
+
class plot_from_file_list(TUIMenu):
|
|
25241
25862
|
"""
|
|
25242
25863
|
No help available.
|
|
25243
25864
|
"""
|
|
25244
25865
|
def __init__(self, service, version, mode, path):
|
|
25245
25866
|
self.axes = self.__class__.axes(service, version, mode, path + ["axes"])
|
|
25246
25867
|
self.curves = self.__class__.curves(service, version, mode, path + ["curves"])
|
|
25247
|
-
self.
|
|
25248
|
-
self.profile = self.__class__.profile(service, version, mode, path + ["profile"])
|
|
25249
|
-
self.x_axis_function = self.__class__.x_axis_function(service, version, mode, path + ["x_axis_function"])
|
|
25250
|
-
self.y_axis_function = self.__class__.y_axis_function(service, version, mode, path + ["y_axis_function"])
|
|
25868
|
+
self.file_list = self.__class__.file_list(service, version, mode, path + ["file_list"])
|
|
25251
25869
|
super().__init__(service, version, mode, path)
|
|
25252
|
-
class
|
|
25253
|
-
"""
|
|
25254
|
-
No help available.
|
|
25255
|
-
"""
|
|
25256
|
-
class profile(TUIMethod):
|
|
25257
|
-
"""
|
|
25258
|
-
No help available.
|
|
25259
|
-
"""
|
|
25260
|
-
class x_axis_function(TUIMethod):
|
|
25261
|
-
"""
|
|
25262
|
-
No help available.
|
|
25263
|
-
"""
|
|
25264
|
-
class y_axis_function(TUIMethod):
|
|
25870
|
+
class file_list(TUIMethod):
|
|
25265
25871
|
"""
|
|
25266
25872
|
No help available.
|
|
25267
25873
|
"""
|
|
@@ -25289,6 +25895,8 @@ class main_menu(TUIMenu):
|
|
|
25289
25895
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25290
25896
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25291
25897
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25898
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25899
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25292
25900
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25293
25901
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25294
25902
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25300,6 +25908,14 @@ class main_menu(TUIMenu):
|
|
|
25300
25908
|
"""
|
|
25301
25909
|
No help available.
|
|
25302
25910
|
"""
|
|
25911
|
+
class auto_range_max(TUIMethod):
|
|
25912
|
+
"""
|
|
25913
|
+
No help available.
|
|
25914
|
+
"""
|
|
25915
|
+
class auto_range_min(TUIMethod):
|
|
25916
|
+
"""
|
|
25917
|
+
No help available.
|
|
25918
|
+
"""
|
|
25303
25919
|
class label(TUIMethod):
|
|
25304
25920
|
"""
|
|
25305
25921
|
No help available.
|
|
@@ -25330,13 +25946,28 @@ class main_menu(TUIMenu):
|
|
|
25330
25946
|
No help available.
|
|
25331
25947
|
"""
|
|
25332
25948
|
def __init__(self, service, version, mode, path):
|
|
25949
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25333
25950
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25951
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25952
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25334
25953
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25335
25954
|
super().__init__(service, version, mode, path)
|
|
25955
|
+
class auto_placement(TUIMethod):
|
|
25956
|
+
"""
|
|
25957
|
+
No help available.
|
|
25958
|
+
"""
|
|
25336
25959
|
class color(TUIMethod):
|
|
25337
25960
|
"""
|
|
25338
25961
|
No help available.
|
|
25339
25962
|
"""
|
|
25963
|
+
class distance(TUIMethod):
|
|
25964
|
+
"""
|
|
25965
|
+
No help available.
|
|
25966
|
+
"""
|
|
25967
|
+
class units_or_divisions(TUIMethod):
|
|
25968
|
+
"""
|
|
25969
|
+
No help available.
|
|
25970
|
+
"""
|
|
25340
25971
|
class weight(TUIMethod):
|
|
25341
25972
|
"""
|
|
25342
25973
|
No help available.
|
|
@@ -25347,13 +25978,28 @@ class main_menu(TUIMenu):
|
|
|
25347
25978
|
No help available.
|
|
25348
25979
|
"""
|
|
25349
25980
|
def __init__(self, service, version, mode, path):
|
|
25981
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25350
25982
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25983
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25984
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25351
25985
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25352
25986
|
super().__init__(service, version, mode, path)
|
|
25987
|
+
class auto_placement(TUIMethod):
|
|
25988
|
+
"""
|
|
25989
|
+
No help available.
|
|
25990
|
+
"""
|
|
25353
25991
|
class color(TUIMethod):
|
|
25354
25992
|
"""
|
|
25355
25993
|
No help available.
|
|
25356
25994
|
"""
|
|
25995
|
+
class distance(TUIMethod):
|
|
25996
|
+
"""
|
|
25997
|
+
No help available.
|
|
25998
|
+
"""
|
|
25999
|
+
class units_or_divisions(TUIMethod):
|
|
26000
|
+
"""
|
|
26001
|
+
No help available.
|
|
26002
|
+
"""
|
|
25357
26003
|
class weight(TUIMethod):
|
|
25358
26004
|
"""
|
|
25359
26005
|
No help available.
|
|
@@ -25385,6 +26031,8 @@ class main_menu(TUIMenu):
|
|
|
25385
26031
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25386
26032
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25387
26033
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26034
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26035
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25388
26036
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25389
26037
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25390
26038
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25396,6 +26044,14 @@ class main_menu(TUIMenu):
|
|
|
25396
26044
|
"""
|
|
25397
26045
|
No help available.
|
|
25398
26046
|
"""
|
|
26047
|
+
class auto_range_max(TUIMethod):
|
|
26048
|
+
"""
|
|
26049
|
+
No help available.
|
|
26050
|
+
"""
|
|
26051
|
+
class auto_range_min(TUIMethod):
|
|
26052
|
+
"""
|
|
26053
|
+
No help available.
|
|
26054
|
+
"""
|
|
25399
26055
|
class label(TUIMethod):
|
|
25400
26056
|
"""
|
|
25401
26057
|
No help available.
|
|
@@ -25426,13 +26082,28 @@ class main_menu(TUIMenu):
|
|
|
25426
26082
|
No help available.
|
|
25427
26083
|
"""
|
|
25428
26084
|
def __init__(self, service, version, mode, path):
|
|
26085
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25429
26086
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26087
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26088
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25430
26089
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25431
26090
|
super().__init__(service, version, mode, path)
|
|
26091
|
+
class auto_placement(TUIMethod):
|
|
26092
|
+
"""
|
|
26093
|
+
No help available.
|
|
26094
|
+
"""
|
|
25432
26095
|
class color(TUIMethod):
|
|
25433
26096
|
"""
|
|
25434
26097
|
No help available.
|
|
25435
26098
|
"""
|
|
26099
|
+
class distance(TUIMethod):
|
|
26100
|
+
"""
|
|
26101
|
+
No help available.
|
|
26102
|
+
"""
|
|
26103
|
+
class units_or_divisions(TUIMethod):
|
|
26104
|
+
"""
|
|
26105
|
+
No help available.
|
|
26106
|
+
"""
|
|
25436
26107
|
class weight(TUIMethod):
|
|
25437
26108
|
"""
|
|
25438
26109
|
No help available.
|
|
@@ -25443,13 +26114,365 @@ class main_menu(TUIMenu):
|
|
|
25443
26114
|
No help available.
|
|
25444
26115
|
"""
|
|
25445
26116
|
def __init__(self, service, version, mode, path):
|
|
26117
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25446
26118
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26119
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26120
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25447
26121
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25448
26122
|
super().__init__(service, version, mode, path)
|
|
26123
|
+
class auto_placement(TUIMethod):
|
|
26124
|
+
"""
|
|
26125
|
+
No help available.
|
|
26126
|
+
"""
|
|
25449
26127
|
class color(TUIMethod):
|
|
25450
26128
|
"""
|
|
25451
26129
|
No help available.
|
|
25452
26130
|
"""
|
|
26131
|
+
class distance(TUIMethod):
|
|
26132
|
+
"""
|
|
26133
|
+
No help available.
|
|
26134
|
+
"""
|
|
26135
|
+
class units_or_divisions(TUIMethod):
|
|
26136
|
+
"""
|
|
26137
|
+
No help available.
|
|
26138
|
+
"""
|
|
26139
|
+
class weight(TUIMethod):
|
|
26140
|
+
"""
|
|
26141
|
+
No help available.
|
|
26142
|
+
"""
|
|
26143
|
+
|
|
26144
|
+
class number_format(TUIMenu):
|
|
26145
|
+
"""
|
|
26146
|
+
No help available.
|
|
26147
|
+
"""
|
|
26148
|
+
def __init__(self, service, version, mode, path):
|
|
26149
|
+
self.format_type = self.__class__.format_type(service, version, mode, path + ["format_type"])
|
|
26150
|
+
self.precision = self.__class__.precision(service, version, mode, path + ["precision"])
|
|
26151
|
+
super().__init__(service, version, mode, path)
|
|
26152
|
+
class format_type(TUIMethod):
|
|
26153
|
+
"""
|
|
26154
|
+
No help available.
|
|
26155
|
+
"""
|
|
26156
|
+
class precision(TUIMethod):
|
|
26157
|
+
"""
|
|
26158
|
+
No help available.
|
|
26159
|
+
"""
|
|
26160
|
+
|
|
26161
|
+
class curves(TUIMenu):
|
|
26162
|
+
"""
|
|
26163
|
+
No help available.
|
|
26164
|
+
"""
|
|
26165
|
+
def __init__(self, service, version, mode, path):
|
|
26166
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
26167
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
26168
|
+
self.resize = self.__class__.resize(service, version, mode, path + ["resize"])
|
|
26169
|
+
super().__init__(service, version, mode, path)
|
|
26170
|
+
class edit(TUIMethod):
|
|
26171
|
+
"""
|
|
26172
|
+
Edit curves object.
|
|
26173
|
+
"""
|
|
26174
|
+
class list_properties(TUIMethod):
|
|
26175
|
+
"""
|
|
26176
|
+
No help available.
|
|
26177
|
+
"""
|
|
26178
|
+
class resize(TUIMethod):
|
|
26179
|
+
"""
|
|
26180
|
+
No help available.
|
|
26181
|
+
"""
|
|
26182
|
+
|
|
26183
|
+
class profile_data(TUIMenu):
|
|
26184
|
+
"""
|
|
26185
|
+
No help available.
|
|
26186
|
+
"""
|
|
26187
|
+
def __init__(self, service, version, mode, path):
|
|
26188
|
+
self.axes = self.__class__.axes(service, version, mode, path + ["axes"])
|
|
26189
|
+
self.curves = self.__class__.curves(service, version, mode, path + ["curves"])
|
|
26190
|
+
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
26191
|
+
self.profile = self.__class__.profile(service, version, mode, path + ["profile"])
|
|
26192
|
+
self.x_axis_function = self.__class__.x_axis_function(service, version, mode, path + ["x_axis_function"])
|
|
26193
|
+
self.y_axis_function = self.__class__.y_axis_function(service, version, mode, path + ["y_axis_function"])
|
|
26194
|
+
super().__init__(service, version, mode, path)
|
|
26195
|
+
class plot(TUIMethod):
|
|
26196
|
+
"""
|
|
26197
|
+
No help available.
|
|
26198
|
+
"""
|
|
26199
|
+
class profile(TUIMethod):
|
|
26200
|
+
"""
|
|
26201
|
+
No help available.
|
|
26202
|
+
"""
|
|
26203
|
+
class x_axis_function(TUIMethod):
|
|
26204
|
+
"""
|
|
26205
|
+
No help available.
|
|
26206
|
+
"""
|
|
26207
|
+
class y_axis_function(TUIMethod):
|
|
26208
|
+
"""
|
|
26209
|
+
No help available.
|
|
26210
|
+
"""
|
|
26211
|
+
|
|
26212
|
+
class axes(TUIMenu):
|
|
26213
|
+
"""
|
|
26214
|
+
No help available.
|
|
26215
|
+
"""
|
|
26216
|
+
def __init__(self, service, version, mode, path):
|
|
26217
|
+
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
26218
|
+
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
26219
|
+
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
26220
|
+
super().__init__(service, version, mode, path)
|
|
26221
|
+
class background_color(TUIMethod):
|
|
26222
|
+
"""
|
|
26223
|
+
No help available.
|
|
26224
|
+
"""
|
|
26225
|
+
|
|
26226
|
+
class x(TUIMenu):
|
|
26227
|
+
"""
|
|
26228
|
+
No help available.
|
|
26229
|
+
"""
|
|
26230
|
+
def __init__(self, service, version, mode, path):
|
|
26231
|
+
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26232
|
+
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26233
|
+
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26234
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26235
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26236
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26237
|
+
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26238
|
+
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26239
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26240
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26241
|
+
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26242
|
+
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26243
|
+
super().__init__(service, version, mode, path)
|
|
26244
|
+
class auto_range(TUIMethod):
|
|
26245
|
+
"""
|
|
26246
|
+
No help available.
|
|
26247
|
+
"""
|
|
26248
|
+
class auto_range_max(TUIMethod):
|
|
26249
|
+
"""
|
|
26250
|
+
No help available.
|
|
26251
|
+
"""
|
|
26252
|
+
class auto_range_min(TUIMethod):
|
|
26253
|
+
"""
|
|
26254
|
+
No help available.
|
|
26255
|
+
"""
|
|
26256
|
+
class label(TUIMethod):
|
|
26257
|
+
"""
|
|
26258
|
+
No help available.
|
|
26259
|
+
"""
|
|
26260
|
+
class log_scale(TUIMethod):
|
|
26261
|
+
"""
|
|
26262
|
+
No help available.
|
|
26263
|
+
"""
|
|
26264
|
+
class max(TUIMethod):
|
|
26265
|
+
"""
|
|
26266
|
+
No help available.
|
|
26267
|
+
"""
|
|
26268
|
+
class min(TUIMethod):
|
|
26269
|
+
"""
|
|
26270
|
+
No help available.
|
|
26271
|
+
"""
|
|
26272
|
+
class show_major_gridlines(TUIMethod):
|
|
26273
|
+
"""
|
|
26274
|
+
No help available.
|
|
26275
|
+
"""
|
|
26276
|
+
class show_minor_gridlines(TUIMethod):
|
|
26277
|
+
"""
|
|
26278
|
+
No help available.
|
|
26279
|
+
"""
|
|
26280
|
+
|
|
26281
|
+
class major_gridlines(TUIMenu):
|
|
26282
|
+
"""
|
|
26283
|
+
No help available.
|
|
26284
|
+
"""
|
|
26285
|
+
def __init__(self, service, version, mode, path):
|
|
26286
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26287
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26288
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26289
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26290
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26291
|
+
super().__init__(service, version, mode, path)
|
|
26292
|
+
class auto_placement(TUIMethod):
|
|
26293
|
+
"""
|
|
26294
|
+
No help available.
|
|
26295
|
+
"""
|
|
26296
|
+
class color(TUIMethod):
|
|
26297
|
+
"""
|
|
26298
|
+
No help available.
|
|
26299
|
+
"""
|
|
26300
|
+
class distance(TUIMethod):
|
|
26301
|
+
"""
|
|
26302
|
+
No help available.
|
|
26303
|
+
"""
|
|
26304
|
+
class units_or_divisions(TUIMethod):
|
|
26305
|
+
"""
|
|
26306
|
+
No help available.
|
|
26307
|
+
"""
|
|
26308
|
+
class weight(TUIMethod):
|
|
26309
|
+
"""
|
|
26310
|
+
No help available.
|
|
26311
|
+
"""
|
|
26312
|
+
|
|
26313
|
+
class minor_gridlines(TUIMenu):
|
|
26314
|
+
"""
|
|
26315
|
+
No help available.
|
|
26316
|
+
"""
|
|
26317
|
+
def __init__(self, service, version, mode, path):
|
|
26318
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26319
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26320
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26321
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26322
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26323
|
+
super().__init__(service, version, mode, path)
|
|
26324
|
+
class auto_placement(TUIMethod):
|
|
26325
|
+
"""
|
|
26326
|
+
No help available.
|
|
26327
|
+
"""
|
|
26328
|
+
class color(TUIMethod):
|
|
26329
|
+
"""
|
|
26330
|
+
No help available.
|
|
26331
|
+
"""
|
|
26332
|
+
class distance(TUIMethod):
|
|
26333
|
+
"""
|
|
26334
|
+
No help available.
|
|
26335
|
+
"""
|
|
26336
|
+
class units_or_divisions(TUIMethod):
|
|
26337
|
+
"""
|
|
26338
|
+
No help available.
|
|
26339
|
+
"""
|
|
26340
|
+
class weight(TUIMethod):
|
|
26341
|
+
"""
|
|
26342
|
+
No help available.
|
|
26343
|
+
"""
|
|
26344
|
+
|
|
26345
|
+
class number_format(TUIMenu):
|
|
26346
|
+
"""
|
|
26347
|
+
No help available.
|
|
26348
|
+
"""
|
|
26349
|
+
def __init__(self, service, version, mode, path):
|
|
26350
|
+
self.format_type = self.__class__.format_type(service, version, mode, path + ["format_type"])
|
|
26351
|
+
self.precision = self.__class__.precision(service, version, mode, path + ["precision"])
|
|
26352
|
+
super().__init__(service, version, mode, path)
|
|
26353
|
+
class format_type(TUIMethod):
|
|
26354
|
+
"""
|
|
26355
|
+
No help available.
|
|
26356
|
+
"""
|
|
26357
|
+
class precision(TUIMethod):
|
|
26358
|
+
"""
|
|
26359
|
+
No help available.
|
|
26360
|
+
"""
|
|
26361
|
+
|
|
26362
|
+
class y(TUIMenu):
|
|
26363
|
+
"""
|
|
26364
|
+
No help available.
|
|
26365
|
+
"""
|
|
26366
|
+
def __init__(self, service, version, mode, path):
|
|
26367
|
+
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26368
|
+
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26369
|
+
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26370
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26371
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26372
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26373
|
+
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26374
|
+
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26375
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26376
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26377
|
+
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26378
|
+
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26379
|
+
super().__init__(service, version, mode, path)
|
|
26380
|
+
class auto_range(TUIMethod):
|
|
26381
|
+
"""
|
|
26382
|
+
No help available.
|
|
26383
|
+
"""
|
|
26384
|
+
class auto_range_max(TUIMethod):
|
|
26385
|
+
"""
|
|
26386
|
+
No help available.
|
|
26387
|
+
"""
|
|
26388
|
+
class auto_range_min(TUIMethod):
|
|
26389
|
+
"""
|
|
26390
|
+
No help available.
|
|
26391
|
+
"""
|
|
26392
|
+
class label(TUIMethod):
|
|
26393
|
+
"""
|
|
26394
|
+
No help available.
|
|
26395
|
+
"""
|
|
26396
|
+
class log_scale(TUIMethod):
|
|
26397
|
+
"""
|
|
26398
|
+
No help available.
|
|
26399
|
+
"""
|
|
26400
|
+
class max(TUIMethod):
|
|
26401
|
+
"""
|
|
26402
|
+
No help available.
|
|
26403
|
+
"""
|
|
26404
|
+
class min(TUIMethod):
|
|
26405
|
+
"""
|
|
26406
|
+
No help available.
|
|
26407
|
+
"""
|
|
26408
|
+
class show_major_gridlines(TUIMethod):
|
|
26409
|
+
"""
|
|
26410
|
+
No help available.
|
|
26411
|
+
"""
|
|
26412
|
+
class show_minor_gridlines(TUIMethod):
|
|
26413
|
+
"""
|
|
26414
|
+
No help available.
|
|
26415
|
+
"""
|
|
26416
|
+
|
|
26417
|
+
class major_gridlines(TUIMenu):
|
|
26418
|
+
"""
|
|
26419
|
+
No help available.
|
|
26420
|
+
"""
|
|
26421
|
+
def __init__(self, service, version, mode, path):
|
|
26422
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26423
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26424
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26425
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26426
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26427
|
+
super().__init__(service, version, mode, path)
|
|
26428
|
+
class auto_placement(TUIMethod):
|
|
26429
|
+
"""
|
|
26430
|
+
No help available.
|
|
26431
|
+
"""
|
|
26432
|
+
class color(TUIMethod):
|
|
26433
|
+
"""
|
|
26434
|
+
No help available.
|
|
26435
|
+
"""
|
|
26436
|
+
class distance(TUIMethod):
|
|
26437
|
+
"""
|
|
26438
|
+
No help available.
|
|
26439
|
+
"""
|
|
26440
|
+
class units_or_divisions(TUIMethod):
|
|
26441
|
+
"""
|
|
26442
|
+
No help available.
|
|
26443
|
+
"""
|
|
26444
|
+
class weight(TUIMethod):
|
|
26445
|
+
"""
|
|
26446
|
+
No help available.
|
|
26447
|
+
"""
|
|
26448
|
+
|
|
26449
|
+
class minor_gridlines(TUIMenu):
|
|
26450
|
+
"""
|
|
26451
|
+
No help available.
|
|
26452
|
+
"""
|
|
26453
|
+
def __init__(self, service, version, mode, path):
|
|
26454
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26455
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26456
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26457
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26458
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26459
|
+
super().__init__(service, version, mode, path)
|
|
26460
|
+
class auto_placement(TUIMethod):
|
|
26461
|
+
"""
|
|
26462
|
+
No help available.
|
|
26463
|
+
"""
|
|
26464
|
+
class color(TUIMethod):
|
|
26465
|
+
"""
|
|
26466
|
+
No help available.
|
|
26467
|
+
"""
|
|
26468
|
+
class distance(TUIMethod):
|
|
26469
|
+
"""
|
|
26470
|
+
No help available.
|
|
26471
|
+
"""
|
|
26472
|
+
class units_or_divisions(TUIMethod):
|
|
26473
|
+
"""
|
|
26474
|
+
No help available.
|
|
26475
|
+
"""
|
|
25453
26476
|
class weight(TUIMethod):
|
|
25454
26477
|
"""
|
|
25455
26478
|
No help available.
|
|
@@ -25504,6 +26527,7 @@ class main_menu(TUIMenu):
|
|
|
25504
26527
|
self.field = self.__class__.field(service, version, mode, path + ["field"])
|
|
25505
26528
|
self.geometry = self.__class__.geometry(service, version, mode, path + ["geometry"])
|
|
25506
26529
|
self.node_values = self.__class__.node_values(service, version, mode, path + ["node_values"])
|
|
26530
|
+
self.physics = self.__class__.physics(service, version, mode, path + ["physics"])
|
|
25507
26531
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
25508
26532
|
self.surfaces = self.__class__.surfaces(service, version, mode, path + ["surfaces"])
|
|
25509
26533
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
@@ -25521,6 +26545,10 @@ class main_menu(TUIMenu):
|
|
|
25521
26545
|
"""
|
|
25522
26546
|
No help available.
|
|
25523
26547
|
"""
|
|
26548
|
+
class physics(TUIMethod):
|
|
26549
|
+
"""
|
|
26550
|
+
No help available.
|
|
26551
|
+
"""
|
|
25524
26552
|
class plot(TUIMethod):
|
|
25525
26553
|
"""
|
|
25526
26554
|
No help available.
|
|
@@ -25561,6 +26589,8 @@ class main_menu(TUIMenu):
|
|
|
25561
26589
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25562
26590
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25563
26591
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26592
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26593
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25564
26594
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25565
26595
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25566
26596
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25572,6 +26602,14 @@ class main_menu(TUIMenu):
|
|
|
25572
26602
|
"""
|
|
25573
26603
|
No help available.
|
|
25574
26604
|
"""
|
|
26605
|
+
class auto_range_max(TUIMethod):
|
|
26606
|
+
"""
|
|
26607
|
+
No help available.
|
|
26608
|
+
"""
|
|
26609
|
+
class auto_range_min(TUIMethod):
|
|
26610
|
+
"""
|
|
26611
|
+
No help available.
|
|
26612
|
+
"""
|
|
25575
26613
|
class label(TUIMethod):
|
|
25576
26614
|
"""
|
|
25577
26615
|
No help available.
|
|
@@ -25602,13 +26640,28 @@ class main_menu(TUIMenu):
|
|
|
25602
26640
|
No help available.
|
|
25603
26641
|
"""
|
|
25604
26642
|
def __init__(self, service, version, mode, path):
|
|
26643
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25605
26644
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26645
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26646
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25606
26647
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25607
26648
|
super().__init__(service, version, mode, path)
|
|
26649
|
+
class auto_placement(TUIMethod):
|
|
26650
|
+
"""
|
|
26651
|
+
No help available.
|
|
26652
|
+
"""
|
|
25608
26653
|
class color(TUIMethod):
|
|
25609
26654
|
"""
|
|
25610
26655
|
No help available.
|
|
25611
26656
|
"""
|
|
26657
|
+
class distance(TUIMethod):
|
|
26658
|
+
"""
|
|
26659
|
+
No help available.
|
|
26660
|
+
"""
|
|
26661
|
+
class units_or_divisions(TUIMethod):
|
|
26662
|
+
"""
|
|
26663
|
+
No help available.
|
|
26664
|
+
"""
|
|
25612
26665
|
class weight(TUIMethod):
|
|
25613
26666
|
"""
|
|
25614
26667
|
No help available.
|
|
@@ -25619,13 +26672,28 @@ class main_menu(TUIMenu):
|
|
|
25619
26672
|
No help available.
|
|
25620
26673
|
"""
|
|
25621
26674
|
def __init__(self, service, version, mode, path):
|
|
26675
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25622
26676
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26677
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26678
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25623
26679
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25624
26680
|
super().__init__(service, version, mode, path)
|
|
26681
|
+
class auto_placement(TUIMethod):
|
|
26682
|
+
"""
|
|
26683
|
+
No help available.
|
|
26684
|
+
"""
|
|
25625
26685
|
class color(TUIMethod):
|
|
25626
26686
|
"""
|
|
25627
26687
|
No help available.
|
|
25628
26688
|
"""
|
|
26689
|
+
class distance(TUIMethod):
|
|
26690
|
+
"""
|
|
26691
|
+
No help available.
|
|
26692
|
+
"""
|
|
26693
|
+
class units_or_divisions(TUIMethod):
|
|
26694
|
+
"""
|
|
26695
|
+
No help available.
|
|
26696
|
+
"""
|
|
25629
26697
|
class weight(TUIMethod):
|
|
25630
26698
|
"""
|
|
25631
26699
|
No help available.
|
|
@@ -25657,6 +26725,8 @@ class main_menu(TUIMenu):
|
|
|
25657
26725
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25658
26726
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25659
26727
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26728
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26729
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25660
26730
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25661
26731
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25662
26732
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25668,6 +26738,14 @@ class main_menu(TUIMenu):
|
|
|
25668
26738
|
"""
|
|
25669
26739
|
No help available.
|
|
25670
26740
|
"""
|
|
26741
|
+
class auto_range_max(TUIMethod):
|
|
26742
|
+
"""
|
|
26743
|
+
No help available.
|
|
26744
|
+
"""
|
|
26745
|
+
class auto_range_min(TUIMethod):
|
|
26746
|
+
"""
|
|
26747
|
+
No help available.
|
|
26748
|
+
"""
|
|
25671
26749
|
class label(TUIMethod):
|
|
25672
26750
|
"""
|
|
25673
26751
|
No help available.
|
|
@@ -25698,13 +26776,28 @@ class main_menu(TUIMenu):
|
|
|
25698
26776
|
No help available.
|
|
25699
26777
|
"""
|
|
25700
26778
|
def __init__(self, service, version, mode, path):
|
|
26779
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25701
26780
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26781
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26782
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25702
26783
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25703
26784
|
super().__init__(service, version, mode, path)
|
|
26785
|
+
class auto_placement(TUIMethod):
|
|
26786
|
+
"""
|
|
26787
|
+
No help available.
|
|
26788
|
+
"""
|
|
25704
26789
|
class color(TUIMethod):
|
|
25705
26790
|
"""
|
|
25706
26791
|
No help available.
|
|
25707
26792
|
"""
|
|
26793
|
+
class distance(TUIMethod):
|
|
26794
|
+
"""
|
|
26795
|
+
No help available.
|
|
26796
|
+
"""
|
|
26797
|
+
class units_or_divisions(TUIMethod):
|
|
26798
|
+
"""
|
|
26799
|
+
No help available.
|
|
26800
|
+
"""
|
|
25708
26801
|
class weight(TUIMethod):
|
|
25709
26802
|
"""
|
|
25710
26803
|
No help available.
|
|
@@ -25715,13 +26808,28 @@ class main_menu(TUIMenu):
|
|
|
25715
26808
|
No help available.
|
|
25716
26809
|
"""
|
|
25717
26810
|
def __init__(self, service, version, mode, path):
|
|
26811
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25718
26812
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26813
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26814
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25719
26815
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25720
26816
|
super().__init__(service, version, mode, path)
|
|
26817
|
+
class auto_placement(TUIMethod):
|
|
26818
|
+
"""
|
|
26819
|
+
No help available.
|
|
26820
|
+
"""
|
|
25721
26821
|
class color(TUIMethod):
|
|
25722
26822
|
"""
|
|
25723
26823
|
No help available.
|
|
25724
26824
|
"""
|
|
26825
|
+
class distance(TUIMethod):
|
|
26826
|
+
"""
|
|
26827
|
+
No help available.
|
|
26828
|
+
"""
|
|
26829
|
+
class units_or_divisions(TUIMethod):
|
|
26830
|
+
"""
|
|
26831
|
+
No help available.
|
|
26832
|
+
"""
|
|
25725
26833
|
class weight(TUIMethod):
|
|
25726
26834
|
"""
|
|
25727
26835
|
No help available.
|
|
@@ -25932,14 +27040,20 @@ class main_menu(TUIMenu):
|
|
|
25932
27040
|
def __init__(self, service, version, mode, path):
|
|
25933
27041
|
self.histogram_options = self.__class__.histogram_options(service, version, mode, path + ["histogram_options"])
|
|
25934
27042
|
self.histogram_parameters = self.__class__.histogram_parameters(service, version, mode, path + ["histogram_parameters"])
|
|
25935
|
-
self.
|
|
27043
|
+
self.histogram_selections = self.__class__.histogram_selections(service, version, mode, path + ["histogram_selections"])
|
|
27044
|
+
self.plot_write_histogram = self.__class__.plot_write_histogram(service, version, mode, path + ["plot_write_histogram"])
|
|
25936
27045
|
self.reduction = self.__class__.reduction(service, version, mode, path + ["reduction"])
|
|
27046
|
+
self.compute_range = self.__class__.compute_range(service, version, mode, path + ["compute_range"])
|
|
25937
27047
|
self.compute_sample = self.__class__.compute_sample(service, version, mode, path + ["compute_sample"])
|
|
25938
27048
|
self.delete_sample = self.__class__.delete_sample(service, version, mode, path + ["delete_sample"])
|
|
25939
27049
|
self.dpm_sample_contour_plots = self.__class__.dpm_sample_contour_plots(service, version, mode, path + ["dpm_sample_contour_plots"])
|
|
25940
27050
|
self.list_samples = self.__class__.list_samples(service, version, mode, path + ["list_samples"])
|
|
25941
27051
|
self.read_sample_file = self.__class__.read_sample_file(service, version, mode, path + ["read_sample_file"])
|
|
25942
27052
|
super().__init__(service, version, mode, path)
|
|
27053
|
+
class compute_range(TUIMethod):
|
|
27054
|
+
"""
|
|
27055
|
+
No help available.
|
|
27056
|
+
"""
|
|
25943
27057
|
class compute_sample(TUIMethod):
|
|
25944
27058
|
"""
|
|
25945
27059
|
No help available.
|
|
@@ -25968,7 +27082,7 @@ class main_menu(TUIMenu):
|
|
|
25968
27082
|
def __init__(self, service, version, mode, path):
|
|
25969
27083
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25970
27084
|
self.correlation = self.__class__.correlation(service, version, mode, path + ["correlation"])
|
|
25971
|
-
self.
|
|
27085
|
+
self.cumulative_curve = self.__class__.cumulative_curve(service, version, mode, path + ["cumulative_curve"])
|
|
25972
27086
|
self.diameter_statistics = self.__class__.diameter_statistics(service, version, mode, path + ["diameter_statistics"])
|
|
25973
27087
|
self.histogram_mode = self.__class__.histogram_mode(service, version, mode, path + ["histogram_mode"])
|
|
25974
27088
|
self.logarithmic = self.__class__.logarithmic(service, version, mode, path + ["logarithmic"])
|
|
@@ -25984,7 +27098,7 @@ class main_menu(TUIMenu):
|
|
|
25984
27098
|
"""
|
|
25985
27099
|
No help available.
|
|
25986
27100
|
"""
|
|
25987
|
-
class
|
|
27101
|
+
class cumulative_curve(TUIMethod):
|
|
25988
27102
|
"""
|
|
25989
27103
|
No help available.
|
|
25990
27104
|
"""
|
|
@@ -26035,19 +27149,56 @@ class main_menu(TUIMenu):
|
|
|
26035
27149
|
No help available.
|
|
26036
27150
|
"""
|
|
26037
27151
|
|
|
26038
|
-
class
|
|
27152
|
+
class histogram_selections(TUIMenu):
|
|
26039
27153
|
"""
|
|
26040
27154
|
No help available.
|
|
26041
27155
|
"""
|
|
26042
27156
|
def __init__(self, service, version, mode, path):
|
|
26043
|
-
self.
|
|
26044
|
-
self.
|
|
27157
|
+
self.correlation_variable = self.__class__.correlation_variable(service, version, mode, path + ["correlation_variable"])
|
|
27158
|
+
self.sample = self.__class__.sample(service, version, mode, path + ["sample"])
|
|
27159
|
+
self.variable_to_sample = self.__class__.variable_to_sample(service, version, mode, path + ["variable_to_sample"])
|
|
27160
|
+
self.weighting_variable = self.__class__.weighting_variable(service, version, mode, path + ["weighting_variable"])
|
|
26045
27161
|
super().__init__(service, version, mode, path)
|
|
26046
|
-
class
|
|
27162
|
+
class correlation_variable(TUIMethod):
|
|
27163
|
+
"""
|
|
27164
|
+
No help available.
|
|
27165
|
+
"""
|
|
27166
|
+
class sample(TUIMethod):
|
|
26047
27167
|
"""
|
|
26048
27168
|
No help available.
|
|
26049
27169
|
"""
|
|
26050
|
-
class
|
|
27170
|
+
class variable_to_sample(TUIMethod):
|
|
27171
|
+
"""
|
|
27172
|
+
No help available.
|
|
27173
|
+
"""
|
|
27174
|
+
class weighting_variable(TUIMethod):
|
|
27175
|
+
"""
|
|
27176
|
+
No help available.
|
|
27177
|
+
"""
|
|
27178
|
+
|
|
27179
|
+
class plot_write_histogram(TUIMenu):
|
|
27180
|
+
"""
|
|
27181
|
+
No help available.
|
|
27182
|
+
"""
|
|
27183
|
+
def __init__(self, service, version, mode, path):
|
|
27184
|
+
self.plot_hist_with_args = self.__class__.plot_hist_with_args(service, version, mode, path + ["plot_hist_with_args"])
|
|
27185
|
+
self.plot_histogram = self.__class__.plot_histogram(service, version, mode, path + ["plot_histogram"])
|
|
27186
|
+
self.write_hist_with_args = self.__class__.write_hist_with_args(service, version, mode, path + ["write_hist_with_args"])
|
|
27187
|
+
self.write_histogram = self.__class__.write_histogram(service, version, mode, path + ["write_histogram"])
|
|
27188
|
+
super().__init__(service, version, mode, path)
|
|
27189
|
+
class plot_hist_with_args(TUIMethod):
|
|
27190
|
+
"""
|
|
27191
|
+
No help available.
|
|
27192
|
+
"""
|
|
27193
|
+
class plot_histogram(TUIMethod):
|
|
27194
|
+
"""
|
|
27195
|
+
No help available.
|
|
27196
|
+
"""
|
|
27197
|
+
class write_hist_with_args(TUIMethod):
|
|
27198
|
+
"""
|
|
27199
|
+
No help available.
|
|
27200
|
+
"""
|
|
27201
|
+
class write_histogram(TUIMethod):
|
|
26051
27202
|
"""
|
|
26052
27203
|
No help available.
|
|
26053
27204
|
"""
|
|
@@ -26132,12 +27283,17 @@ class main_menu(TUIMenu):
|
|
|
26132
27283
|
No help available.
|
|
26133
27284
|
"""
|
|
26134
27285
|
def __init__(self, service, version, mode, path):
|
|
27286
|
+
self.accumulate_erosion_accretion_rates = self.__class__.accumulate_erosion_accretion_rates(service, version, mode, path + ["accumulate_erosion_accretion_rates"])
|
|
26135
27287
|
self.compute = self.__class__.compute(service, version, mode, path + ["compute"])
|
|
26136
27288
|
self.output_udf = self.__class__.output_udf(service, version, mode, path + ["output_udf"])
|
|
26137
27289
|
self.sort_sample_files = self.__class__.sort_sample_files(service, version, mode, path + ["sort_sample_files"])
|
|
26138
27290
|
self.start_file_write = self.__class__.start_file_write(service, version, mode, path + ["start_file_write"])
|
|
26139
27291
|
self.stop_file_write = self.__class__.stop_file_write(service, version, mode, path + ["stop_file_write"])
|
|
26140
27292
|
super().__init__(service, version, mode, path)
|
|
27293
|
+
class accumulate_erosion_accretion_rates(TUIMethod):
|
|
27294
|
+
"""
|
|
27295
|
+
No help available.
|
|
27296
|
+
"""
|
|
26141
27297
|
class compute(TUIMethod):
|
|
26142
27298
|
"""
|
|
26143
27299
|
No help available.
|
|
@@ -26769,8 +27925,10 @@ class main_menu(TUIMenu):
|
|
|
26769
27925
|
self.create_multiple_iso_surfaces = self.__class__.create_multiple_iso_surfaces(service, version, mode, path + ["create_multiple_iso_surfaces"])
|
|
26770
27926
|
self.create_multiple_plane_surfaces = self.__class__.create_multiple_plane_surfaces(service, version, mode, path + ["create_multiple_plane_surfaces"])
|
|
26771
27927
|
self.create_multiple_zone_surfaces = self.__class__.create_multiple_zone_surfaces(service, version, mode, path + ["create_multiple_zone_surfaces"])
|
|
27928
|
+
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
26772
27929
|
self.reset_zone_surfaces = self.__class__.reset_zone_surfaces(service, version, mode, path + ["reset_zone_surfaces"])
|
|
26773
27930
|
self.set_rendering_priority = self.__class__.set_rendering_priority(service, version, mode, path + ["set_rendering_priority"])
|
|
27931
|
+
self.split_surface = self.__class__.split_surface(service, version, mode, path + ["split_surface"])
|
|
26774
27932
|
self.ungroup_surfaces = self.__class__.ungroup_surfaces(service, version, mode, path + ["ungroup_surfaces"])
|
|
26775
27933
|
super().__init__(service, version, mode, path)
|
|
26776
27934
|
class create_group_surfaces(TUIMethod):
|
|
@@ -26789,6 +27947,10 @@ class main_menu(TUIMenu):
|
|
|
26789
27947
|
"""
|
|
26790
27948
|
No help available.
|
|
26791
27949
|
"""
|
|
27950
|
+
class external_surface(TUIMethod):
|
|
27951
|
+
"""
|
|
27952
|
+
No help available.
|
|
27953
|
+
"""
|
|
26792
27954
|
class reset_zone_surfaces(TUIMethod):
|
|
26793
27955
|
"""
|
|
26794
27956
|
No help available.
|
|
@@ -26797,6 +27959,10 @@ class main_menu(TUIMenu):
|
|
|
26797
27959
|
"""
|
|
26798
27960
|
No help available.
|
|
26799
27961
|
"""
|
|
27962
|
+
class split_surface(TUIMethod):
|
|
27963
|
+
"""
|
|
27964
|
+
No help available.
|
|
27965
|
+
"""
|
|
26800
27966
|
class ungroup_surfaces(TUIMethod):
|
|
26801
27967
|
"""
|
|
26802
27968
|
No help available.
|
|
@@ -28200,6 +29366,7 @@ class main_menu(TUIMenu):
|
|
|
28200
29366
|
self.pseudo_time_explicit_relaxation_factor = self.__class__.pseudo_time_explicit_relaxation_factor(service, version, mode, path + ["pseudo_time_explicit_relaxation_factor"])
|
|
28201
29367
|
self.pseudo_time_method_local_time_step = self.__class__.pseudo_time_method_local_time_step(service, version, mode, path + ["pseudo_time_method_local_time_step"])
|
|
28202
29368
|
self.relaxation_factor = self.__class__.relaxation_factor(service, version, mode, path + ["relaxation_factor"])
|
|
29369
|
+
self.residual_smoothing = self.__class__.residual_smoothing(service, version, mode, path + ["residual_smoothing"])
|
|
28203
29370
|
self.under_relaxation = self.__class__.under_relaxation(service, version, mode, path + ["under_relaxation"])
|
|
28204
29371
|
self.zonal_pbns_solution_controls = self.__class__.zonal_pbns_solution_controls(service, version, mode, path + ["zonal_pbns_solution_controls"])
|
|
28205
29372
|
self.courant_number = self.__class__.courant_number(service, version, mode, path + ["courant_number"])
|
|
@@ -28462,7 +29629,49 @@ class main_menu(TUIMenu):
|
|
|
28462
29629
|
"""
|
|
28463
29630
|
class edit(TUIMethod):
|
|
28464
29631
|
"""
|
|
28465
|
-
Edit nci-secondary-gradient object.
|
|
29632
|
+
Edit nci-secondary-gradient object.
|
|
29633
|
+
"""
|
|
29634
|
+
class list(TUIMethod):
|
|
29635
|
+
"""
|
|
29636
|
+
No help available.
|
|
29637
|
+
"""
|
|
29638
|
+
class list_properties(TUIMethod):
|
|
29639
|
+
"""
|
|
29640
|
+
No help available.
|
|
29641
|
+
"""
|
|
29642
|
+
class make_a_copy(TUIMethod):
|
|
29643
|
+
"""
|
|
29644
|
+
No help available.
|
|
29645
|
+
"""
|
|
29646
|
+
class rename(TUIMethod):
|
|
29647
|
+
"""
|
|
29648
|
+
No help available.
|
|
29649
|
+
"""
|
|
29650
|
+
|
|
29651
|
+
class pseudo_time_method_usage(TUIMenu):
|
|
29652
|
+
"""
|
|
29653
|
+
No help available.
|
|
29654
|
+
"""
|
|
29655
|
+
def __init__(self, service, version, mode, path):
|
|
29656
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
29657
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
29658
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
29659
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
29660
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
29661
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
29662
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
29663
|
+
super().__init__(service, version, mode, path)
|
|
29664
|
+
class create(TUIMethod):
|
|
29665
|
+
"""
|
|
29666
|
+
No help available.
|
|
29667
|
+
"""
|
|
29668
|
+
class delete(TUIMethod):
|
|
29669
|
+
"""
|
|
29670
|
+
No help available.
|
|
29671
|
+
"""
|
|
29672
|
+
class edit(TUIMethod):
|
|
29673
|
+
"""
|
|
29674
|
+
Edit pseudo-time-method-usage object.
|
|
28466
29675
|
"""
|
|
28467
29676
|
class list(TUIMethod):
|
|
28468
29677
|
"""
|
|
@@ -28481,99 +29690,6 @@ class main_menu(TUIMenu):
|
|
|
28481
29690
|
No help available.
|
|
28482
29691
|
"""
|
|
28483
29692
|
|
|
28484
|
-
class pseudo_time_method_usage(TUIMenu):
|
|
28485
|
-
"""
|
|
28486
|
-
No help available.
|
|
28487
|
-
"""
|
|
28488
|
-
def __init__(self, service, version, mode, path):
|
|
28489
|
-
self.global_dt = self.__class__.global_dt(service, version, mode, path + ["global_dt"])
|
|
28490
|
-
self.local_dt = self.__class__.local_dt(service, version, mode, path + ["local_dt"])
|
|
28491
|
-
super().__init__(service, version, mode, path)
|
|
28492
|
-
|
|
28493
|
-
class global_dt(TUIMenu):
|
|
28494
|
-
"""
|
|
28495
|
-
No help available.
|
|
28496
|
-
"""
|
|
28497
|
-
def __init__(self, service, version, mode, path):
|
|
28498
|
-
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
28499
|
-
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
28500
|
-
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
28501
|
-
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
28502
|
-
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
28503
|
-
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
28504
|
-
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
28505
|
-
super().__init__(service, version, mode, path)
|
|
28506
|
-
class create(TUIMethod):
|
|
28507
|
-
"""
|
|
28508
|
-
No help available.
|
|
28509
|
-
"""
|
|
28510
|
-
class delete(TUIMethod):
|
|
28511
|
-
"""
|
|
28512
|
-
No help available.
|
|
28513
|
-
"""
|
|
28514
|
-
class edit(TUIMethod):
|
|
28515
|
-
"""
|
|
28516
|
-
Edit global-dt object.
|
|
28517
|
-
"""
|
|
28518
|
-
class list(TUIMethod):
|
|
28519
|
-
"""
|
|
28520
|
-
No help available.
|
|
28521
|
-
"""
|
|
28522
|
-
class list_properties(TUIMethod):
|
|
28523
|
-
"""
|
|
28524
|
-
No help available.
|
|
28525
|
-
"""
|
|
28526
|
-
class make_a_copy(TUIMethod):
|
|
28527
|
-
"""
|
|
28528
|
-
No help available.
|
|
28529
|
-
"""
|
|
28530
|
-
class rename(TUIMethod):
|
|
28531
|
-
"""
|
|
28532
|
-
No help available.
|
|
28533
|
-
"""
|
|
28534
|
-
|
|
28535
|
-
class local_dt(TUIMenu):
|
|
28536
|
-
"""
|
|
28537
|
-
No help available.
|
|
28538
|
-
"""
|
|
28539
|
-
def __init__(self, service, version, mode, path):
|
|
28540
|
-
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
28541
|
-
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
28542
|
-
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
28543
|
-
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
28544
|
-
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
28545
|
-
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
28546
|
-
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
28547
|
-
super().__init__(service, version, mode, path)
|
|
28548
|
-
class create(TUIMethod):
|
|
28549
|
-
"""
|
|
28550
|
-
No help available.
|
|
28551
|
-
"""
|
|
28552
|
-
class delete(TUIMethod):
|
|
28553
|
-
"""
|
|
28554
|
-
No help available.
|
|
28555
|
-
"""
|
|
28556
|
-
class edit(TUIMethod):
|
|
28557
|
-
"""
|
|
28558
|
-
Edit local-dt object.
|
|
28559
|
-
"""
|
|
28560
|
-
class list(TUIMethod):
|
|
28561
|
-
"""
|
|
28562
|
-
No help available.
|
|
28563
|
-
"""
|
|
28564
|
-
class list_properties(TUIMethod):
|
|
28565
|
-
"""
|
|
28566
|
-
No help available.
|
|
28567
|
-
"""
|
|
28568
|
-
class make_a_copy(TUIMethod):
|
|
28569
|
-
"""
|
|
28570
|
-
No help available.
|
|
28571
|
-
"""
|
|
28572
|
-
class rename(TUIMethod):
|
|
28573
|
-
"""
|
|
28574
|
-
No help available.
|
|
28575
|
-
"""
|
|
28576
|
-
|
|
28577
29693
|
class spatial_discretization_limiter(TUIMenu):
|
|
28578
29694
|
"""
|
|
28579
29695
|
No help available.
|
|
@@ -29618,6 +30734,23 @@ class main_menu(TUIMenu):
|
|
|
29618
30734
|
No help available.
|
|
29619
30735
|
"""
|
|
29620
30736
|
|
|
30737
|
+
class residual_smoothing(TUIMenu):
|
|
30738
|
+
"""
|
|
30739
|
+
No help available.
|
|
30740
|
+
"""
|
|
30741
|
+
def __init__(self, service, version, mode, path):
|
|
30742
|
+
self.residual_smoothing_factor = self.__class__.residual_smoothing_factor(service, version, mode, path + ["residual_smoothing_factor"])
|
|
30743
|
+
self.residual_smoothing_iter_count = self.__class__.residual_smoothing_iter_count(service, version, mode, path + ["residual_smoothing_iter_count"])
|
|
30744
|
+
super().__init__(service, version, mode, path)
|
|
30745
|
+
class residual_smoothing_factor(TUIMethod):
|
|
30746
|
+
"""
|
|
30747
|
+
No help available.
|
|
30748
|
+
"""
|
|
30749
|
+
class residual_smoothing_iter_count(TUIMethod):
|
|
30750
|
+
"""
|
|
30751
|
+
No help available.
|
|
30752
|
+
"""
|
|
30753
|
+
|
|
29621
30754
|
class under_relaxation(TUIMenu):
|
|
29622
30755
|
"""
|
|
29623
30756
|
No help available.
|
|
@@ -30301,15 +31434,15 @@ class main_menu(TUIMenu):
|
|
|
30301
31434
|
self.phase_based_vof_discretization = self.__class__.phase_based_vof_discretization(service, version, mode, path + ["phase_based_vof_discretization"])
|
|
30302
31435
|
self.pseudo_time_method = self.__class__.pseudo_time_method(service, version, mode, path + ["pseudo_time_method"])
|
|
30303
31436
|
self.reduced_rank_extrapolation_options = self.__class__.reduced_rank_extrapolation_options(service, version, mode, path + ["reduced_rank_extrapolation_options"])
|
|
30304
|
-
self.residual_smoothing = self.__class__.residual_smoothing(service, version, mode, path + ["residual_smoothing"])
|
|
30305
31437
|
self.spatial_discretization = self.__class__.spatial_discretization(service, version, mode, path + ["spatial_discretization"])
|
|
31438
|
+
self.spatial_discretization_parameters = self.__class__.spatial_discretization_parameters(service, version, mode, path + ["spatial_discretization_parameters"])
|
|
30306
31439
|
self.vof_numerics = self.__class__.vof_numerics(service, version, mode, path + ["vof_numerics"])
|
|
30307
31440
|
self.warped_face_gradient_correction = self.__class__.warped_face_gradient_correction(service, version, mode, path + ["warped_face_gradient_correction"])
|
|
30308
31441
|
self.accelerated_non_iterative_time_marching = self.__class__.accelerated_non_iterative_time_marching(service, version, mode, path + ["accelerated_non_iterative_time_marching"])
|
|
30309
|
-
self.bcd_boundedness = self.__class__.bcd_boundedness(service, version, mode, path + ["bcd_boundedness"])
|
|
30310
31442
|
self.frozen_flux = self.__class__.frozen_flux(service, version, mode, path + ["frozen_flux"])
|
|
30311
31443
|
self.nita = self.__class__.nita(service, version, mode, path + ["nita"])
|
|
30312
31444
|
self.reduced_rank_extrapolation = self.__class__.reduced_rank_extrapolation(service, version, mode, path + ["reduced_rank_extrapolation"])
|
|
31445
|
+
self.set_optimized_les_numerics = self.__class__.set_optimized_les_numerics(service, version, mode, path + ["set_optimized_les_numerics"])
|
|
30313
31446
|
self.set_solution_methods_to_default = self.__class__.set_solution_methods_to_default(service, version, mode, path + ["set_solution_methods_to_default"])
|
|
30314
31447
|
self.species_disc_together = self.__class__.species_disc_together(service, version, mode, path + ["species_disc_together"])
|
|
30315
31448
|
self.transient_formulation = self.__class__.transient_formulation(service, version, mode, path + ["transient_formulation"])
|
|
@@ -30320,10 +31453,6 @@ class main_menu(TUIMenu):
|
|
|
30320
31453
|
"""
|
|
30321
31454
|
No help available.
|
|
30322
31455
|
"""
|
|
30323
|
-
class bcd_boundedness(TUIMethod):
|
|
30324
|
-
"""
|
|
30325
|
-
No help available.
|
|
30326
|
-
"""
|
|
30327
31456
|
class frozen_flux(TUIMethod):
|
|
30328
31457
|
"""
|
|
30329
31458
|
No help available.
|
|
@@ -30336,6 +31465,10 @@ class main_menu(TUIMenu):
|
|
|
30336
31465
|
"""
|
|
30337
31466
|
No help available.
|
|
30338
31467
|
"""
|
|
31468
|
+
class set_optimized_les_numerics(TUIMethod):
|
|
31469
|
+
"""
|
|
31470
|
+
No help available.
|
|
31471
|
+
"""
|
|
30339
31472
|
class set_solution_methods_to_default(TUIMethod):
|
|
30340
31473
|
"""
|
|
30341
31474
|
No help available.
|
|
@@ -30376,6 +31509,7 @@ class main_menu(TUIMenu):
|
|
|
30376
31509
|
def __init__(self, service, version, mode, path):
|
|
30377
31510
|
self.casm_cutoff_multiplier = self.__class__.casm_cutoff_multiplier(service, version, mode, path + ["casm_cutoff_multiplier"])
|
|
30378
31511
|
self.convergence_acceleration_type = self.__class__.convergence_acceleration_type(service, version, mode, path + ["convergence_acceleration_type"])
|
|
31512
|
+
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30379
31513
|
super().__init__(service, version, mode, path)
|
|
30380
31514
|
class casm_cutoff_multiplier(TUIMethod):
|
|
30381
31515
|
"""
|
|
@@ -30385,6 +31519,10 @@ class main_menu(TUIMenu):
|
|
|
30385
31519
|
"""
|
|
30386
31520
|
No help available.
|
|
30387
31521
|
"""
|
|
31522
|
+
class enable(TUIMethod):
|
|
31523
|
+
"""
|
|
31524
|
+
No help available.
|
|
31525
|
+
"""
|
|
30388
31526
|
|
|
30389
31527
|
class divergence_prevention(TUIMenu):
|
|
30390
31528
|
"""
|
|
@@ -30408,73 +31546,52 @@ class main_menu(TUIMenu):
|
|
|
30408
31546
|
No help available.
|
|
30409
31547
|
"""
|
|
30410
31548
|
def __init__(self, service, version, mode, path):
|
|
30411
|
-
self.
|
|
30412
|
-
self.
|
|
31549
|
+
self.alternate_diffusion_for_porous_region_solids = self.__class__.alternate_diffusion_for_porous_region_solids(service, version, mode, path + ["alternate_diffusion_for_porous_region_solids"])
|
|
31550
|
+
self.disable_rhie_chow_flux = self.__class__.disable_rhie_chow_flux(service, version, mode, path + ["disable_rhie_chow_flux"])
|
|
31551
|
+
self.first_to_second_order_blending = self.__class__.first_to_second_order_blending(service, version, mode, path + ["first_to_second_order_blending"])
|
|
31552
|
+
self.implicit_bodyforce_treatment = self.__class__.implicit_bodyforce_treatment(service, version, mode, path + ["implicit_bodyforce_treatment"])
|
|
31553
|
+
self.physical_velocity_formulation = self.__class__.physical_velocity_formulation(service, version, mode, path + ["physical_velocity_formulation"])
|
|
31554
|
+
self.presto_pressure_scheme = self.__class__.presto_pressure_scheme(service, version, mode, path + ["presto_pressure_scheme"])
|
|
30413
31555
|
self.reaction_source_term_relaxation_factor = self.__class__.reaction_source_term_relaxation_factor(service, version, mode, path + ["reaction_source_term_relaxation_factor"])
|
|
30414
31556
|
self.reactions = self.__class__.reactions(service, version, mode, path + ["reactions"])
|
|
31557
|
+
self.velocity_formulation = self.__class__.velocity_formulation(service, version, mode, path + ["velocity_formulation"])
|
|
30415
31558
|
super().__init__(service, version, mode, path)
|
|
30416
|
-
class
|
|
31559
|
+
class alternate_diffusion_for_porous_region_solids(TUIMethod):
|
|
30417
31560
|
"""
|
|
30418
31561
|
No help available.
|
|
30419
31562
|
"""
|
|
30420
|
-
class
|
|
31563
|
+
class disable_rhie_chow_flux(TUIMethod):
|
|
30421
31564
|
"""
|
|
30422
31565
|
No help available.
|
|
30423
31566
|
"""
|
|
30424
|
-
|
|
30425
|
-
class numerics_dbns(TUIMenu):
|
|
31567
|
+
class first_to_second_order_blending(TUIMethod):
|
|
30426
31568
|
"""
|
|
30427
31569
|
No help available.
|
|
30428
31570
|
"""
|
|
30429
|
-
|
|
30430
|
-
|
|
30431
|
-
|
|
30432
|
-
|
|
30433
|
-
|
|
30434
|
-
|
|
30435
|
-
|
|
30436
|
-
|
|
30437
|
-
class
|
|
31571
|
+
class implicit_bodyforce_treatment(TUIMethod):
|
|
31572
|
+
"""
|
|
31573
|
+
No help available.
|
|
31574
|
+
"""
|
|
31575
|
+
class physical_velocity_formulation(TUIMethod):
|
|
31576
|
+
"""
|
|
31577
|
+
No help available.
|
|
31578
|
+
"""
|
|
31579
|
+
class presto_pressure_scheme(TUIMethod):
|
|
31580
|
+
"""
|
|
31581
|
+
No help available.
|
|
31582
|
+
"""
|
|
31583
|
+
class reaction_source_term_relaxation_factor(TUIMethod):
|
|
31584
|
+
"""
|
|
31585
|
+
No help available.
|
|
31586
|
+
"""
|
|
31587
|
+
class reactions(TUIMethod):
|
|
31588
|
+
"""
|
|
31589
|
+
No help available.
|
|
31590
|
+
"""
|
|
31591
|
+
class velocity_formulation(TUIMethod):
|
|
30438
31592
|
"""
|
|
30439
31593
|
No help available.
|
|
30440
31594
|
"""
|
|
30441
|
-
def __init__(self, service, version, mode, path):
|
|
30442
|
-
self.alternate_diffusion_for_porous_region_solids = self.__class__.alternate_diffusion_for_porous_region_solids(service, version, mode, path + ["alternate_diffusion_for_porous_region_solids"])
|
|
30443
|
-
self.disable_rhie_chow_flux = self.__class__.disable_rhie_chow_flux(service, version, mode, path + ["disable_rhie_chow_flux"])
|
|
30444
|
-
self.first_to_second_order_blending = self.__class__.first_to_second_order_blending(service, version, mode, path + ["first_to_second_order_blending"])
|
|
30445
|
-
self.implicit_bodyforce_treatment = self.__class__.implicit_bodyforce_treatment(service, version, mode, path + ["implicit_bodyforce_treatment"])
|
|
30446
|
-
self.physical_velocity_formulation = self.__class__.physical_velocity_formulation(service, version, mode, path + ["physical_velocity_formulation"])
|
|
30447
|
-
self.presto_pressure_scheme = self.__class__.presto_pressure_scheme(service, version, mode, path + ["presto_pressure_scheme"])
|
|
30448
|
-
self.velocity_formulation = self.__class__.velocity_formulation(service, version, mode, path + ["velocity_formulation"])
|
|
30449
|
-
super().__init__(service, version, mode, path)
|
|
30450
|
-
class alternate_diffusion_for_porous_region_solids(TUIMethod):
|
|
30451
|
-
"""
|
|
30452
|
-
No help available.
|
|
30453
|
-
"""
|
|
30454
|
-
class disable_rhie_chow_flux(TUIMethod):
|
|
30455
|
-
"""
|
|
30456
|
-
No help available.
|
|
30457
|
-
"""
|
|
30458
|
-
class first_to_second_order_blending(TUIMethod):
|
|
30459
|
-
"""
|
|
30460
|
-
No help available.
|
|
30461
|
-
"""
|
|
30462
|
-
class implicit_bodyforce_treatment(TUIMethod):
|
|
30463
|
-
"""
|
|
30464
|
-
No help available.
|
|
30465
|
-
"""
|
|
30466
|
-
class physical_velocity_formulation(TUIMethod):
|
|
30467
|
-
"""
|
|
30468
|
-
No help available.
|
|
30469
|
-
"""
|
|
30470
|
-
class presto_pressure_scheme(TUIMethod):
|
|
30471
|
-
"""
|
|
30472
|
-
No help available.
|
|
30473
|
-
"""
|
|
30474
|
-
class velocity_formulation(TUIMethod):
|
|
30475
|
-
"""
|
|
30476
|
-
No help available.
|
|
30477
|
-
"""
|
|
30478
31595
|
|
|
30479
31596
|
class high_order_term_relaxation(TUIMenu):
|
|
30480
31597
|
"""
|
|
@@ -30510,6 +31627,7 @@ class main_menu(TUIMenu):
|
|
|
30510
31627
|
def __init__(self, service, version, mode, path):
|
|
30511
31628
|
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30512
31629
|
self.expert = self.__class__.expert(service, version, mode, path + ["expert"])
|
|
31630
|
+
self.robust_fluxes = self.__class__.robust_fluxes(service, version, mode, path + ["robust_fluxes"])
|
|
30513
31631
|
self.visualize_pressure_discontinuity_sensor = self.__class__.visualize_pressure_discontinuity_sensor(service, version, mode, path + ["visualize_pressure_discontinuity_sensor"])
|
|
30514
31632
|
super().__init__(service, version, mode, path)
|
|
30515
31633
|
class enable(TUIMethod):
|
|
@@ -30520,6 +31638,10 @@ class main_menu(TUIMenu):
|
|
|
30520
31638
|
"""
|
|
30521
31639
|
No help available.
|
|
30522
31640
|
"""
|
|
31641
|
+
class robust_fluxes(TUIMethod):
|
|
31642
|
+
"""
|
|
31643
|
+
No help available.
|
|
31644
|
+
"""
|
|
30523
31645
|
class visualize_pressure_discontinuity_sensor(TUIMethod):
|
|
30524
31646
|
"""
|
|
30525
31647
|
No help available.
|
|
@@ -30827,7 +31949,7 @@ class main_menu(TUIMenu):
|
|
|
30827
31949
|
def __init__(self, service, version, mode, path):
|
|
30828
31950
|
self.old_default_of_operating_density_method = self.__class__.old_default_of_operating_density_method(service, version, mode, path + ["old_default_of_operating_density_method"])
|
|
30829
31951
|
self.old_default_of_volume_fraction_smoothing = self.__class__.old_default_of_volume_fraction_smoothing(service, version, mode, path + ["old_default_of_volume_fraction_smoothing"])
|
|
30830
|
-
self.
|
|
31952
|
+
self.old_variant_of_presto_for_cases_using_structured_mesh = self.__class__.old_variant_of_presto_for_cases_using_structured_mesh(service, version, mode, path + ["old_variant_of_presto_for_cases_using_structured_mesh"])
|
|
30831
31953
|
super().__init__(service, version, mode, path)
|
|
30832
31954
|
class old_default_of_operating_density_method(TUIMethod):
|
|
30833
31955
|
"""
|
|
@@ -30837,7 +31959,7 @@ class main_menu(TUIMenu):
|
|
|
30837
31959
|
"""
|
|
30838
31960
|
No help available.
|
|
30839
31961
|
"""
|
|
30840
|
-
class
|
|
31962
|
+
class old_variant_of_presto_for_cases_using_structured_mesh(TUIMethod):
|
|
30841
31963
|
"""
|
|
30842
31964
|
No help available.
|
|
30843
31965
|
"""
|
|
@@ -31334,7 +32456,7 @@ class main_menu(TUIMenu):
|
|
|
31334
32456
|
No help available.
|
|
31335
32457
|
"""
|
|
31336
32458
|
def __init__(self, service, version, mode, path):
|
|
31337
|
-
self.
|
|
32459
|
+
self.boundary_treatment = self.__class__.boundary_treatment(service, version, mode, path + ["boundary_treatment"])
|
|
31338
32460
|
self.density_func_options = self.__class__.density_func_options(service, version, mode, path + ["density_func_options"])
|
|
31339
32461
|
self.exponent_density_func = self.__class__.exponent_density_func(service, version, mode, path + ["exponent_density_func"])
|
|
31340
32462
|
self.exponent_smoothing_func = self.__class__.exponent_smoothing_func(service, version, mode, path + ["exponent_smoothing_func"])
|
|
@@ -31343,7 +32465,7 @@ class main_menu(TUIMenu):
|
|
|
31343
32465
|
self.sm_relax_factor = self.__class__.sm_relax_factor(service, version, mode, path + ["sm_relax_factor"])
|
|
31344
32466
|
self.viscous_func_options = self.__class__.viscous_func_options(service, version, mode, path + ["viscous_func_options"])
|
|
31345
32467
|
super().__init__(service, version, mode, path)
|
|
31346
|
-
class
|
|
32468
|
+
class boundary_treatment(TUIMethod):
|
|
31347
32469
|
"""
|
|
31348
32470
|
No help available.
|
|
31349
32471
|
"""
|
|
@@ -31640,23 +32762,6 @@ class main_menu(TUIMenu):
|
|
|
31640
32762
|
No help available.
|
|
31641
32763
|
"""
|
|
31642
32764
|
|
|
31643
|
-
class residual_smoothing(TUIMenu):
|
|
31644
|
-
"""
|
|
31645
|
-
No help available.
|
|
31646
|
-
"""
|
|
31647
|
-
def __init__(self, service, version, mode, path):
|
|
31648
|
-
self.residual_smoothing_factor = self.__class__.residual_smoothing_factor(service, version, mode, path + ["residual_smoothing_factor"])
|
|
31649
|
-
self.residual_smoothing_iter_count = self.__class__.residual_smoothing_iter_count(service, version, mode, path + ["residual_smoothing_iter_count"])
|
|
31650
|
-
super().__init__(service, version, mode, path)
|
|
31651
|
-
class residual_smoothing_factor(TUIMethod):
|
|
31652
|
-
"""
|
|
31653
|
-
No help available.
|
|
31654
|
-
"""
|
|
31655
|
-
class residual_smoothing_iter_count(TUIMethod):
|
|
31656
|
-
"""
|
|
31657
|
-
No help available.
|
|
31658
|
-
"""
|
|
31659
|
-
|
|
31660
32765
|
class spatial_discretization(TUIMenu):
|
|
31661
32766
|
"""
|
|
31662
32767
|
No help available.
|
|
@@ -31712,6 +32817,36 @@ class main_menu(TUIMenu):
|
|
|
31712
32817
|
No help available.
|
|
31713
32818
|
"""
|
|
31714
32819
|
|
|
32820
|
+
class spatial_discretization_parameters(TUIMenu):
|
|
32821
|
+
"""
|
|
32822
|
+
No help available.
|
|
32823
|
+
"""
|
|
32824
|
+
def __init__(self, service, version, mode, path):
|
|
32825
|
+
self.low_diffusion_central = self.__class__.low_diffusion_central(service, version, mode, path + ["low_diffusion_central"])
|
|
32826
|
+
self.bcd_boundedness = self.__class__.bcd_boundedness(service, version, mode, path + ["bcd_boundedness"])
|
|
32827
|
+
super().__init__(service, version, mode, path)
|
|
32828
|
+
class bcd_boundedness(TUIMethod):
|
|
32829
|
+
"""
|
|
32830
|
+
No help available.
|
|
32831
|
+
"""
|
|
32832
|
+
|
|
32833
|
+
class low_diffusion_central(TUIMenu):
|
|
32834
|
+
"""
|
|
32835
|
+
No help available.
|
|
32836
|
+
"""
|
|
32837
|
+
def __init__(self, service, version, mode, path):
|
|
32838
|
+
self.diffusion_coefficient = self.__class__.diffusion_coefficient(service, version, mode, path + ["diffusion_coefficient"])
|
|
32839
|
+
self.shield_bl_distance = self.__class__.shield_bl_distance(service, version, mode, path + ["shield_bl_distance"])
|
|
32840
|
+
super().__init__(service, version, mode, path)
|
|
32841
|
+
class diffusion_coefficient(TUIMethod):
|
|
32842
|
+
"""
|
|
32843
|
+
No help available.
|
|
32844
|
+
"""
|
|
32845
|
+
class shield_bl_distance(TUIMethod):
|
|
32846
|
+
"""
|
|
32847
|
+
No help available.
|
|
32848
|
+
"""
|
|
32849
|
+
|
|
31715
32850
|
class vof_numerics(TUIMenu):
|
|
31716
32851
|
"""
|
|
31717
32852
|
No help available.
|
|
@@ -31995,6 +33130,8 @@ class main_menu(TUIMenu):
|
|
|
31995
33130
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
31996
33131
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
31997
33132
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33133
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
33134
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
31998
33135
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
31999
33136
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
32000
33137
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -32006,6 +33143,14 @@ class main_menu(TUIMenu):
|
|
|
32006
33143
|
"""
|
|
32007
33144
|
No help available.
|
|
32008
33145
|
"""
|
|
33146
|
+
class auto_range_max(TUIMethod):
|
|
33147
|
+
"""
|
|
33148
|
+
No help available.
|
|
33149
|
+
"""
|
|
33150
|
+
class auto_range_min(TUIMethod):
|
|
33151
|
+
"""
|
|
33152
|
+
No help available.
|
|
33153
|
+
"""
|
|
32009
33154
|
class label(TUIMethod):
|
|
32010
33155
|
"""
|
|
32011
33156
|
No help available.
|
|
@@ -32036,13 +33181,28 @@ class main_menu(TUIMenu):
|
|
|
32036
33181
|
No help available.
|
|
32037
33182
|
"""
|
|
32038
33183
|
def __init__(self, service, version, mode, path):
|
|
33184
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32039
33185
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33186
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33187
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32040
33188
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32041
33189
|
super().__init__(service, version, mode, path)
|
|
33190
|
+
class auto_placement(TUIMethod):
|
|
33191
|
+
"""
|
|
33192
|
+
No help available.
|
|
33193
|
+
"""
|
|
32042
33194
|
class color(TUIMethod):
|
|
32043
33195
|
"""
|
|
32044
33196
|
No help available.
|
|
32045
33197
|
"""
|
|
33198
|
+
class distance(TUIMethod):
|
|
33199
|
+
"""
|
|
33200
|
+
No help available.
|
|
33201
|
+
"""
|
|
33202
|
+
class units_or_divisions(TUIMethod):
|
|
33203
|
+
"""
|
|
33204
|
+
No help available.
|
|
33205
|
+
"""
|
|
32046
33206
|
class weight(TUIMethod):
|
|
32047
33207
|
"""
|
|
32048
33208
|
No help available.
|
|
@@ -32053,13 +33213,28 @@ class main_menu(TUIMenu):
|
|
|
32053
33213
|
No help available.
|
|
32054
33214
|
"""
|
|
32055
33215
|
def __init__(self, service, version, mode, path):
|
|
33216
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32056
33217
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33218
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33219
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32057
33220
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32058
33221
|
super().__init__(service, version, mode, path)
|
|
33222
|
+
class auto_placement(TUIMethod):
|
|
33223
|
+
"""
|
|
33224
|
+
No help available.
|
|
33225
|
+
"""
|
|
32059
33226
|
class color(TUIMethod):
|
|
32060
33227
|
"""
|
|
32061
33228
|
No help available.
|
|
32062
33229
|
"""
|
|
33230
|
+
class distance(TUIMethod):
|
|
33231
|
+
"""
|
|
33232
|
+
No help available.
|
|
33233
|
+
"""
|
|
33234
|
+
class units_or_divisions(TUIMethod):
|
|
33235
|
+
"""
|
|
33236
|
+
No help available.
|
|
33237
|
+
"""
|
|
32063
33238
|
class weight(TUIMethod):
|
|
32064
33239
|
"""
|
|
32065
33240
|
No help available.
|
|
@@ -32091,6 +33266,8 @@ class main_menu(TUIMenu):
|
|
|
32091
33266
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
32092
33267
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
32093
33268
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33269
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
33270
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
32094
33271
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
32095
33272
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
32096
33273
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -32102,6 +33279,14 @@ class main_menu(TUIMenu):
|
|
|
32102
33279
|
"""
|
|
32103
33280
|
No help available.
|
|
32104
33281
|
"""
|
|
33282
|
+
class auto_range_max(TUIMethod):
|
|
33283
|
+
"""
|
|
33284
|
+
No help available.
|
|
33285
|
+
"""
|
|
33286
|
+
class auto_range_min(TUIMethod):
|
|
33287
|
+
"""
|
|
33288
|
+
No help available.
|
|
33289
|
+
"""
|
|
32105
33290
|
class label(TUIMethod):
|
|
32106
33291
|
"""
|
|
32107
33292
|
No help available.
|
|
@@ -32132,13 +33317,28 @@ class main_menu(TUIMenu):
|
|
|
32132
33317
|
No help available.
|
|
32133
33318
|
"""
|
|
32134
33319
|
def __init__(self, service, version, mode, path):
|
|
33320
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32135
33321
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33322
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33323
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32136
33324
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32137
33325
|
super().__init__(service, version, mode, path)
|
|
33326
|
+
class auto_placement(TUIMethod):
|
|
33327
|
+
"""
|
|
33328
|
+
No help available.
|
|
33329
|
+
"""
|
|
32138
33330
|
class color(TUIMethod):
|
|
32139
33331
|
"""
|
|
32140
33332
|
No help available.
|
|
32141
33333
|
"""
|
|
33334
|
+
class distance(TUIMethod):
|
|
33335
|
+
"""
|
|
33336
|
+
No help available.
|
|
33337
|
+
"""
|
|
33338
|
+
class units_or_divisions(TUIMethod):
|
|
33339
|
+
"""
|
|
33340
|
+
No help available.
|
|
33341
|
+
"""
|
|
32142
33342
|
class weight(TUIMethod):
|
|
32143
33343
|
"""
|
|
32144
33344
|
No help available.
|
|
@@ -32149,13 +33349,28 @@ class main_menu(TUIMenu):
|
|
|
32149
33349
|
No help available.
|
|
32150
33350
|
"""
|
|
32151
33351
|
def __init__(self, service, version, mode, path):
|
|
33352
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32152
33353
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33354
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33355
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32153
33356
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32154
33357
|
super().__init__(service, version, mode, path)
|
|
33358
|
+
class auto_placement(TUIMethod):
|
|
33359
|
+
"""
|
|
33360
|
+
No help available.
|
|
33361
|
+
"""
|
|
32155
33362
|
class color(TUIMethod):
|
|
32156
33363
|
"""
|
|
32157
33364
|
No help available.
|
|
32158
33365
|
"""
|
|
33366
|
+
class distance(TUIMethod):
|
|
33367
|
+
"""
|
|
33368
|
+
No help available.
|
|
33369
|
+
"""
|
|
33370
|
+
class units_or_divisions(TUIMethod):
|
|
33371
|
+
"""
|
|
33372
|
+
No help available.
|
|
33373
|
+
"""
|
|
32159
33374
|
class weight(TUIMethod):
|
|
32160
33375
|
"""
|
|
32161
33376
|
No help available.
|
|
@@ -33495,6 +34710,7 @@ class main_menu(TUIMenu):
|
|
|
33495
34710
|
self.solid_time_step_size = self.__class__.solid_time_step_size(service, version, mode, path + ["solid_time_step_size"])
|
|
33496
34711
|
self.duration_specification_method = self.__class__.duration_specification_method(service, version, mode, path + ["duration_specification_method"])
|
|
33497
34712
|
self.extrapolate_variables = self.__class__.extrapolate_variables(service, version, mode, path + ["extrapolate_variables"])
|
|
34713
|
+
self.flow_time = self.__class__.flow_time(service, version, mode, path + ["flow_time"])
|
|
33498
34714
|
self.incremental_time = self.__class__.incremental_time(service, version, mode, path + ["incremental_time"])
|
|
33499
34715
|
self.max_flow_time = self.__class__.max_flow_time(service, version, mode, path + ["max_flow_time"])
|
|
33500
34716
|
self.max_iter_per_time_step = self.__class__.max_iter_per_time_step(service, version, mode, path + ["max_iter_per_time_step"])
|
|
@@ -33520,6 +34736,10 @@ class main_menu(TUIMenu):
|
|
|
33520
34736
|
"""
|
|
33521
34737
|
No help available.
|
|
33522
34738
|
"""
|
|
34739
|
+
class flow_time(TUIMethod):
|
|
34740
|
+
"""
|
|
34741
|
+
No help available.
|
|
34742
|
+
"""
|
|
33523
34743
|
class incremental_time(TUIMethod):
|
|
33524
34744
|
"""
|
|
33525
34745
|
No help available.
|
|
@@ -35564,7 +36784,6 @@ class main_menu(TUIMenu):
|
|
|
35564
36784
|
self.contact_solution_controls = self.__class__.contact_solution_controls(service, version, mode, path + ["contact_solution_controls"])
|
|
35565
36785
|
self.data_sampling_options = self.__class__.data_sampling_options(service, version, mode, path + ["data_sampling_options"])
|
|
35566
36786
|
self.divergence_prevention = self.__class__.divergence_prevention(service, version, mode, path + ["divergence_prevention"])
|
|
35567
|
-
self.enhanced_les_numerics = self.__class__.enhanced_les_numerics(service, version, mode, path + ["enhanced_les_numerics"])
|
|
35568
36787
|
self.fast_transient_settings = self.__class__.fast_transient_settings(service, version, mode, path + ["fast_transient_settings"])
|
|
35569
36788
|
self.high_order_term_relaxation = self.__class__.high_order_term_relaxation(service, version, mode, path + ["high_order_term_relaxation"])
|
|
35570
36789
|
self.high_speed_numerics = self.__class__.high_speed_numerics(service, version, mode, path + ["high_speed_numerics"])
|
|
@@ -35637,6 +36856,7 @@ class main_menu(TUIMenu):
|
|
|
35637
36856
|
self.second_order_time_options = self.__class__.second_order_time_options(service, version, mode, path + ["second_order_time_options"])
|
|
35638
36857
|
self.set_all_species_together = self.__class__.set_all_species_together(service, version, mode, path + ["set_all_species_together"])
|
|
35639
36858
|
self.set_controls_to_default = self.__class__.set_controls_to_default(service, version, mode, path + ["set_controls_to_default"])
|
|
36859
|
+
self.set_optimized_les_numerics = self.__class__.set_optimized_les_numerics(service, version, mode, path + ["set_optimized_les_numerics"])
|
|
35640
36860
|
self.set_solution_methods_to_default = self.__class__.set_solution_methods_to_default(service, version, mode, path + ["set_solution_methods_to_default"])
|
|
35641
36861
|
self.set_solution_steering = self.__class__.set_solution_steering(service, version, mode, path + ["set_solution_steering"])
|
|
35642
36862
|
self.slope_limiter_set = self.__class__.slope_limiter_set(service, version, mode, path + ["slope_limiter_set"])
|
|
@@ -35877,6 +37097,10 @@ class main_menu(TUIMenu):
|
|
|
35877
37097
|
"""
|
|
35878
37098
|
Set controls to default values.
|
|
35879
37099
|
"""
|
|
37100
|
+
class set_optimized_les_numerics(TUIMethod):
|
|
37101
|
+
"""
|
|
37102
|
+
No help available.
|
|
37103
|
+
"""
|
|
35880
37104
|
class set_solution_methods_to_default(TUIMethod):
|
|
35881
37105
|
"""
|
|
35882
37106
|
Set solution methods to default values.
|
|
@@ -35969,6 +37193,7 @@ class main_menu(TUIMenu):
|
|
|
35969
37193
|
self.alternative_solver_defaults = self.__class__.alternative_solver_defaults(service, version, mode, path + ["alternative_solver_defaults"])
|
|
35970
37194
|
self.anisotropic_solid_heat_transfer = self.__class__.anisotropic_solid_heat_transfer(service, version, mode, path + ["anisotropic_solid_heat_transfer"])
|
|
35971
37195
|
self.continuity_transient_term_linearization = self.__class__.continuity_transient_term_linearization(service, version, mode, path + ["continuity_transient_term_linearization"])
|
|
37196
|
+
self.low_diffusion_central = self.__class__.low_diffusion_central(service, version, mode, path + ["low_diffusion_central"])
|
|
35972
37197
|
self.non_reflecting_boundary_treatment = self.__class__.non_reflecting_boundary_treatment(service, version, mode, path + ["non_reflecting_boundary_treatment"])
|
|
35973
37198
|
self.secondary_gradient_limiting = self.__class__.secondary_gradient_limiting(service, version, mode, path + ["secondary_gradient_limiting"])
|
|
35974
37199
|
self.turbomachinery_specific_numerics = self.__class__.turbomachinery_specific_numerics(service, version, mode, path + ["turbomachinery_specific_numerics"])
|
|
@@ -36133,6 +37358,23 @@ class main_menu(TUIMenu):
|
|
|
36133
37358
|
No help available.
|
|
36134
37359
|
"""
|
|
36135
37360
|
|
|
37361
|
+
class low_diffusion_central(TUIMenu):
|
|
37362
|
+
"""
|
|
37363
|
+
Enter the Low Diffusion Central advection scheme menu.
|
|
37364
|
+
"""
|
|
37365
|
+
def __init__(self, service, version, mode, path):
|
|
37366
|
+
self.diffusion_coefficient = self.__class__.diffusion_coefficient(service, version, mode, path + ["diffusion_coefficient"])
|
|
37367
|
+
self.shield_bl_distance = self.__class__.shield_bl_distance(service, version, mode, path + ["shield_bl_distance"])
|
|
37368
|
+
super().__init__(service, version, mode, path)
|
|
37369
|
+
class diffusion_coefficient(TUIMethod):
|
|
37370
|
+
"""
|
|
37371
|
+
No help available.
|
|
37372
|
+
"""
|
|
37373
|
+
class shield_bl_distance(TUIMethod):
|
|
37374
|
+
"""
|
|
37375
|
+
No help available.
|
|
37376
|
+
"""
|
|
37377
|
+
|
|
36136
37378
|
class non_reflecting_boundary_treatment(TUIMenu):
|
|
36137
37379
|
"""
|
|
36138
37380
|
Enter non reflecting boundary treatment using minimal pressure reflection approach menu.
|
|
@@ -36585,33 +37827,6 @@ class main_menu(TUIMenu):
|
|
|
36585
37827
|
Enable divergence prevention.
|
|
36586
37828
|
"""
|
|
36587
37829
|
|
|
36588
|
-
class enhanced_les_numerics(TUIMenu):
|
|
36589
|
-
"""
|
|
36590
|
-
Enter enhanced LES options menu.
|
|
36591
|
-
"""
|
|
36592
|
-
def __init__(self, service, version, mode, path):
|
|
36593
|
-
self.optimized_advection = self.__class__.optimized_advection(service, version, mode, path + ["optimized_advection"])
|
|
36594
|
-
self.optimized_algorithm = self.__class__.optimized_algorithm(service, version, mode, path + ["optimized_algorithm"])
|
|
36595
|
-
self.optimized_cd = self.__class__.optimized_cd(service, version, mode, path + ["optimized_cd"])
|
|
36596
|
-
self.optimized_les_numerics = self.__class__.optimized_les_numerics(service, version, mode, path + ["optimized_les_numerics"])
|
|
36597
|
-
super().__init__(service, version, mode, path)
|
|
36598
|
-
class optimized_advection(TUIMethod):
|
|
36599
|
-
"""
|
|
36600
|
-
Use advection scheme optimized for LES.
|
|
36601
|
-
"""
|
|
36602
|
-
class optimized_algorithm(TUIMethod):
|
|
36603
|
-
"""
|
|
36604
|
-
Use solver algorithm optimized for LES.
|
|
36605
|
-
"""
|
|
36606
|
-
class optimized_cd(TUIMethod):
|
|
36607
|
-
"""
|
|
36608
|
-
Use optimized central difference discretization.
|
|
36609
|
-
"""
|
|
36610
|
-
class optimized_les_numerics(TUIMethod):
|
|
36611
|
-
"""
|
|
36612
|
-
Use optimized LES numerics.
|
|
36613
|
-
"""
|
|
36614
|
-
|
|
36615
37830
|
class fast_transient_settings(TUIMenu):
|
|
36616
37831
|
"""
|
|
36617
37832
|
Enter the fast transient settings menu.
|
|
@@ -36679,6 +37894,7 @@ class main_menu(TUIMenu):
|
|
|
36679
37894
|
def __init__(self, service, version, mode, path):
|
|
36680
37895
|
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
36681
37896
|
self.expert = self.__class__.expert(service, version, mode, path + ["expert"])
|
|
37897
|
+
self.robust_fluxes = self.__class__.robust_fluxes(service, version, mode, path + ["robust_fluxes"])
|
|
36682
37898
|
self.visualize_pressure_discontinuity_sensor = self.__class__.visualize_pressure_discontinuity_sensor(service, version, mode, path + ["visualize_pressure_discontinuity_sensor"])
|
|
36683
37899
|
super().__init__(service, version, mode, path)
|
|
36684
37900
|
class enable(TUIMethod):
|
|
@@ -36689,6 +37905,10 @@ class main_menu(TUIMenu):
|
|
|
36689
37905
|
"""
|
|
36690
37906
|
Expert high-speed-numerics.
|
|
36691
37907
|
"""
|
|
37908
|
+
class robust_fluxes(TUIMethod):
|
|
37909
|
+
"""
|
|
37910
|
+
No help available.
|
|
37911
|
+
"""
|
|
36692
37912
|
class visualize_pressure_discontinuity_sensor(TUIMethod):
|
|
36693
37913
|
"""
|
|
36694
37914
|
No help available.
|
|
@@ -37949,6 +39169,7 @@ class main_menu(TUIMenu):
|
|
|
37949
39169
|
def __init__(self, service, version, mode, path):
|
|
37950
39170
|
self.delete_invalid_cells = self.__class__.delete_invalid_cells(service, version, mode, path + ["delete_invalid_cells"])
|
|
37951
39171
|
self.divergence_prevention = self.__class__.divergence_prevention(service, version, mode, path + ["divergence_prevention"])
|
|
39172
|
+
self.enhanced_limiter = self.__class__.enhanced_limiter(service, version, mode, path + ["enhanced_limiter"])
|
|
37952
39173
|
self.linear_solver_adjustment = self.__class__.linear_solver_adjustment(service, version, mode, path + ["linear_solver_adjustment"])
|
|
37953
39174
|
super().__init__(service, version, mode, path)
|
|
37954
39175
|
class delete_invalid_cells(TUIMethod):
|
|
@@ -37959,6 +39180,10 @@ class main_menu(TUIMenu):
|
|
|
37959
39180
|
"""
|
|
37960
39181
|
Adjust numerical settings when divergence pattern identified.
|
|
37961
39182
|
"""
|
|
39183
|
+
class enhanced_limiter(TUIMethod):
|
|
39184
|
+
"""
|
|
39185
|
+
Enable enhanced gradient limiting procedure to improve solver stability.
|
|
39186
|
+
"""
|
|
37962
39187
|
class linear_solver_adjustment(TUIMethod):
|
|
37963
39188
|
"""
|
|
37964
39189
|
Adjust linear solver settings for better robustness.
|
|
@@ -38314,8 +39539,8 @@ class main_menu(TUIMenu):
|
|
|
38314
39539
|
self.edit_surface = self.__class__.edit_surface(service, version, mode, path + ["edit_surface"])
|
|
38315
39540
|
self.ellipsoid_slice = self.__class__.ellipsoid_slice(service, version, mode, path + ["ellipsoid_slice"])
|
|
38316
39541
|
self.expression_volume = self.__class__.expression_volume(service, version, mode, path + ["expression_volume"])
|
|
39542
|
+
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
38317
39543
|
self.group_surfaces = self.__class__.group_surfaces(service, version, mode, path + ["group_surfaces"])
|
|
38318
|
-
self.import_surface = self.__class__.import_surface(service, version, mode, path + ["import_surface"])
|
|
38319
39544
|
self.imprint_surface = self.__class__.imprint_surface(service, version, mode, path + ["imprint_surface"])
|
|
38320
39545
|
self.iso_clip = self.__class__.iso_clip(service, version, mode, path + ["iso_clip"])
|
|
38321
39546
|
self.iso_clip_multiple = self.__class__.iso_clip_multiple(service, version, mode, path + ["iso_clip_multiple"])
|
|
@@ -38384,13 +39609,13 @@ class main_menu(TUIMenu):
|
|
|
38384
39609
|
"""
|
|
38385
39610
|
Create volume with boolean expression.
|
|
38386
39611
|
"""
|
|
38387
|
-
class
|
|
39612
|
+
class external_surface(TUIMethod):
|
|
38388
39613
|
"""
|
|
38389
|
-
|
|
39614
|
+
No help available.
|
|
38390
39615
|
"""
|
|
38391
|
-
class
|
|
39616
|
+
class group_surfaces(TUIMethod):
|
|
38392
39617
|
"""
|
|
38393
|
-
|
|
39618
|
+
Group a set of surfaces.
|
|
38394
39619
|
"""
|
|
38395
39620
|
class imprint_surface(TUIMethod):
|
|
38396
39621
|
"""
|
|
@@ -38510,7 +39735,7 @@ class main_menu(TUIMenu):
|
|
|
38510
39735
|
"""
|
|
38511
39736
|
class split_surface(TUIMethod):
|
|
38512
39737
|
"""
|
|
38513
|
-
|
|
39738
|
+
No help available.
|
|
38514
39739
|
"""
|
|
38515
39740
|
class structural_point_surface(TUIMethod):
|
|
38516
39741
|
"""
|
|
@@ -38901,6 +40126,7 @@ class main_menu(TUIMenu):
|
|
|
38901
40126
|
No help available.
|
|
38902
40127
|
"""
|
|
38903
40128
|
def __init__(self, service, version, mode, path):
|
|
40129
|
+
self.apply = self.__class__.apply(service, version, mode, path + ["apply"])
|
|
38904
40130
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
38905
40131
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
38906
40132
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
@@ -38911,10 +40137,13 @@ class main_menu(TUIMenu):
|
|
|
38911
40137
|
self.new = self.__class__.new(service, version, mode, path + ["new"])
|
|
38912
40138
|
self.read = self.__class__.read(service, version, mode, path + ["read"])
|
|
38913
40139
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
38914
|
-
self.restore_state = self.__class__.restore_state(service, version, mode, path + ["restore_state"])
|
|
38915
40140
|
self.use_active = self.__class__.use_active(service, version, mode, path + ["use_active"])
|
|
38916
40141
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
38917
40142
|
super().__init__(service, version, mode, path)
|
|
40143
|
+
class apply(TUIMethod):
|
|
40144
|
+
"""
|
|
40145
|
+
No help available.
|
|
40146
|
+
"""
|
|
38918
40147
|
class copy(TUIMethod):
|
|
38919
40148
|
"""
|
|
38920
40149
|
No help available.
|
|
@@ -38955,10 +40184,6 @@ class main_menu(TUIMenu):
|
|
|
38955
40184
|
"""
|
|
38956
40185
|
No help available.
|
|
38957
40186
|
"""
|
|
38958
|
-
class restore_state(TUIMethod):
|
|
38959
|
-
"""
|
|
38960
|
-
No help available.
|
|
38961
|
-
"""
|
|
38962
40187
|
class use_active(TUIMethod):
|
|
38963
40188
|
"""
|
|
38964
40189
|
No help available.
|