ansys-fluent-core 0.30.2__py3-none-any.whl → 0.30.3__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/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 +44 -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 +112 -30
- ansys/fluent/core/generated/solver/settings_252.py +7684 -3282
- ansys/fluent/core/generated/solver/settings_252.pyi +5276 -2283
- ansys/fluent/core/generated/solver/tui_252.py +1557 -322
- 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.3.dist-info}/METADATA +1 -1
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.3.dist-info}/RECORD +18 -18
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.3.dist-info}/LICENSE +0 -0
- {ansys_fluent_core-0.30.2.dist-info → ansys_fluent_core-0.30.3.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.
|
|
@@ -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
|
"""
|
|
@@ -11273,6 +11349,7 @@ class main_menu(TUIMenu):
|
|
|
11273
11349
|
self.rendering = self.__class__.rendering(service, version, mode, path + ["rendering"])
|
|
11274
11350
|
self.display_in_omniverse = self.__class__.display_in_omniverse(service, version, mode, path + ["display_in_omniverse"])
|
|
11275
11351
|
self.display_live_preview = self.__class__.display_live_preview(service, version, mode, path + ["display_live_preview"])
|
|
11352
|
+
self.usd_export_via_connector = self.__class__.usd_export_via_connector(service, version, mode, path + ["usd_export_via_connector"])
|
|
11276
11353
|
super().__init__(service, version, mode, path)
|
|
11277
11354
|
class display_in_omniverse(TUIMethod):
|
|
11278
11355
|
"""
|
|
@@ -11282,6 +11359,10 @@ class main_menu(TUIMenu):
|
|
|
11282
11359
|
"""
|
|
11283
11360
|
No help available.
|
|
11284
11361
|
"""
|
|
11362
|
+
class usd_export_via_connector(TUIMethod):
|
|
11363
|
+
"""
|
|
11364
|
+
No help available.
|
|
11365
|
+
"""
|
|
11285
11366
|
|
|
11286
11367
|
class background(TUIMenu):
|
|
11287
11368
|
"""
|
|
@@ -11505,7 +11586,7 @@ class main_menu(TUIMenu):
|
|
|
11505
11586
|
"""
|
|
11506
11587
|
class mesh_display_configuration(TUIMethod):
|
|
11507
11588
|
"""
|
|
11508
|
-
|
|
11589
|
+
No help available.
|
|
11509
11590
|
"""
|
|
11510
11591
|
class mesh_level(TUIMethod):
|
|
11511
11592
|
"""
|
|
@@ -11537,7 +11618,7 @@ class main_menu(TUIMenu):
|
|
|
11537
11618
|
"""
|
|
11538
11619
|
class overlays(TUIMethod):
|
|
11539
11620
|
"""
|
|
11540
|
-
|
|
11621
|
+
No help available.
|
|
11541
11622
|
"""
|
|
11542
11623
|
class periodic_instancing(TUIMethod):
|
|
11543
11624
|
"""
|
|
@@ -11553,7 +11634,7 @@ class main_menu(TUIMenu):
|
|
|
11553
11634
|
"""
|
|
11554
11635
|
class render_mesh(TUIMethod):
|
|
11555
11636
|
"""
|
|
11556
|
-
|
|
11637
|
+
No help available.
|
|
11557
11638
|
"""
|
|
11558
11639
|
class reset_graphics(TUIMethod):
|
|
11559
11640
|
"""
|
|
@@ -11574,6 +11655,7 @@ class main_menu(TUIMenu):
|
|
|
11574
11655
|
self.automatic_skip = self.__class__.automatic_skip(service, version, mode, path + ["automatic_skip"])
|
|
11575
11656
|
self.axis_faces = self.__class__.axis_faces(service, version, mode, path + ["axis_faces"])
|
|
11576
11657
|
self.background = self.__class__.background(service, version, mode, path + ["background"])
|
|
11658
|
+
self.color_by = self.__class__.color_by(service, version, mode, path + ["color_by"])
|
|
11577
11659
|
self.color_by_type = self.__class__.color_by_type(service, version, mode, path + ["color_by_type"])
|
|
11578
11660
|
self.far_field_faces = self.__class__.far_field_faces(service, version, mode, path + ["far_field_faces"])
|
|
11579
11661
|
self.foreground = self.__class__.foreground(service, version, mode, path + ["foreground"])
|
|
@@ -11613,6 +11695,10 @@ class main_menu(TUIMenu):
|
|
|
11613
11695
|
"""
|
|
11614
11696
|
Set the background (window) color.
|
|
11615
11697
|
"""
|
|
11698
|
+
class color_by(TUIMethod):
|
|
11699
|
+
"""
|
|
11700
|
+
Set the type to color the mesh.
|
|
11701
|
+
"""
|
|
11616
11702
|
class color_by_type(TUIMethod):
|
|
11617
11703
|
"""
|
|
11618
11704
|
Determine whether to color meshes by type or by surface (ID).
|
|
@@ -12750,7 +12836,7 @@ class main_menu(TUIMenu):
|
|
|
12750
12836
|
|
|
12751
12837
|
class titles(TUIMenu):
|
|
12752
12838
|
"""
|
|
12753
|
-
|
|
12839
|
+
No help available.
|
|
12754
12840
|
"""
|
|
12755
12841
|
def __init__(self, service, version, mode, path):
|
|
12756
12842
|
self.left_bottom = self.__class__.left_bottom(service, version, mode, path + ["left_bottom"])
|
|
@@ -12761,23 +12847,23 @@ class main_menu(TUIMenu):
|
|
|
12761
12847
|
super().__init__(service, version, mode, path)
|
|
12762
12848
|
class left_bottom(TUIMethod):
|
|
12763
12849
|
"""
|
|
12764
|
-
|
|
12850
|
+
No help available.
|
|
12765
12851
|
"""
|
|
12766
12852
|
class left_top(TUIMethod):
|
|
12767
12853
|
"""
|
|
12768
|
-
|
|
12854
|
+
No help available.
|
|
12769
12855
|
"""
|
|
12770
12856
|
class right_bottom(TUIMethod):
|
|
12771
12857
|
"""
|
|
12772
|
-
|
|
12858
|
+
No help available.
|
|
12773
12859
|
"""
|
|
12774
12860
|
class right_middle(TUIMethod):
|
|
12775
12861
|
"""
|
|
12776
|
-
|
|
12862
|
+
No help available.
|
|
12777
12863
|
"""
|
|
12778
12864
|
class right_top(TUIMethod):
|
|
12779
12865
|
"""
|
|
12780
|
-
|
|
12866
|
+
No help available.
|
|
12781
12867
|
"""
|
|
12782
12868
|
|
|
12783
12869
|
class velocity_vectors(TUIMenu):
|
|
@@ -13212,8 +13298,8 @@ class main_menu(TUIMenu):
|
|
|
13212
13298
|
self.edit_surface = self.__class__.edit_surface(service, version, mode, path + ["edit_surface"])
|
|
13213
13299
|
self.ellipsoid_slice = self.__class__.ellipsoid_slice(service, version, mode, path + ["ellipsoid_slice"])
|
|
13214
13300
|
self.expression_volume = self.__class__.expression_volume(service, version, mode, path + ["expression_volume"])
|
|
13301
|
+
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
13215
13302
|
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
13303
|
self.imprint_surface = self.__class__.imprint_surface(service, version, mode, path + ["imprint_surface"])
|
|
13218
13304
|
self.iso_clip = self.__class__.iso_clip(service, version, mode, path + ["iso_clip"])
|
|
13219
13305
|
self.iso_clip_multiple = self.__class__.iso_clip_multiple(service, version, mode, path + ["iso_clip_multiple"])
|
|
@@ -13282,13 +13368,13 @@ class main_menu(TUIMenu):
|
|
|
13282
13368
|
"""
|
|
13283
13369
|
Create volume with boolean expression.
|
|
13284
13370
|
"""
|
|
13285
|
-
class
|
|
13371
|
+
class external_surface(TUIMethod):
|
|
13286
13372
|
"""
|
|
13287
|
-
|
|
13373
|
+
No help available.
|
|
13288
13374
|
"""
|
|
13289
|
-
class
|
|
13375
|
+
class group_surfaces(TUIMethod):
|
|
13290
13376
|
"""
|
|
13291
|
-
|
|
13377
|
+
Group a set of surfaces.
|
|
13292
13378
|
"""
|
|
13293
13379
|
class imprint_surface(TUIMethod):
|
|
13294
13380
|
"""
|
|
@@ -13408,7 +13494,7 @@ class main_menu(TUIMenu):
|
|
|
13408
13494
|
"""
|
|
13409
13495
|
class split_surface(TUIMethod):
|
|
13410
13496
|
"""
|
|
13411
|
-
|
|
13497
|
+
No help available.
|
|
13412
13498
|
"""
|
|
13413
13499
|
class structural_point_surface(TUIMethod):
|
|
13414
13500
|
"""
|
|
@@ -13671,6 +13757,7 @@ class main_menu(TUIMenu):
|
|
|
13671
13757
|
No help available.
|
|
13672
13758
|
"""
|
|
13673
13759
|
def __init__(self, service, version, mode, path):
|
|
13760
|
+
self.apply = self.__class__.apply(service, version, mode, path + ["apply"])
|
|
13674
13761
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
13675
13762
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
13676
13763
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
@@ -13681,10 +13768,13 @@ class main_menu(TUIMenu):
|
|
|
13681
13768
|
self.new = self.__class__.new(service, version, mode, path + ["new"])
|
|
13682
13769
|
self.read = self.__class__.read(service, version, mode, path + ["read"])
|
|
13683
13770
|
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
13771
|
self.use_active = self.__class__.use_active(service, version, mode, path + ["use_active"])
|
|
13686
13772
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
13687
13773
|
super().__init__(service, version, mode, path)
|
|
13774
|
+
class apply(TUIMethod):
|
|
13775
|
+
"""
|
|
13776
|
+
No help available.
|
|
13777
|
+
"""
|
|
13688
13778
|
class copy(TUIMethod):
|
|
13689
13779
|
"""
|
|
13690
13780
|
No help available.
|
|
@@ -13725,10 +13815,6 @@ class main_menu(TUIMenu):
|
|
|
13725
13815
|
"""
|
|
13726
13816
|
No help available.
|
|
13727
13817
|
"""
|
|
13728
|
-
class restore_state(TUIMethod):
|
|
13729
|
-
"""
|
|
13730
|
-
No help available.
|
|
13731
|
-
"""
|
|
13732
13818
|
class use_active(TUIMethod):
|
|
13733
13819
|
"""
|
|
13734
13820
|
No help available.
|
|
@@ -14351,11 +14437,13 @@ class main_menu(TUIMenu):
|
|
|
14351
14437
|
self.dx = self.__class__.dx(service, version, mode, path + ["dx"])
|
|
14352
14438
|
self.ensight = self.__class__.ensight(service, version, mode, path + ["ensight"])
|
|
14353
14439
|
self.ensight_dvs = self.__class__.ensight_dvs(service, version, mode, path + ["ensight_dvs"])
|
|
14440
|
+
self.ensight_dvs_combined = self.__class__.ensight_dvs_combined(service, version, mode, path + ["ensight_dvs_combined"])
|
|
14354
14441
|
self.ensight_dvs_surfaces = self.__class__.ensight_dvs_surfaces(service, version, mode, path + ["ensight_dvs_surfaces"])
|
|
14355
14442
|
self.ensight_dvs_volume = self.__class__.ensight_dvs_volume(service, version, mode, path + ["ensight_dvs_volume"])
|
|
14356
14443
|
self.ensight_gold = self.__class__.ensight_gold(service, version, mode, path + ["ensight_gold"])
|
|
14357
14444
|
self.ensight_gold_parallel_surfaces = self.__class__.ensight_gold_parallel_surfaces(service, version, mode, path + ["ensight_gold_parallel_surfaces"])
|
|
14358
14445
|
self.ensight_gold_parallel_volume = self.__class__.ensight_gold_parallel_volume(service, version, mode, path + ["ensight_gold_parallel_volume"])
|
|
14446
|
+
self.ensight_gold_surface = self.__class__.ensight_gold_surface(service, version, mode, path + ["ensight_gold_surface"])
|
|
14359
14447
|
self.fast_mesh = self.__class__.fast_mesh(service, version, mode, path + ["fast_mesh"])
|
|
14360
14448
|
self.fast_scalar = self.__class__.fast_scalar(service, version, mode, path + ["fast_scalar"])
|
|
14361
14449
|
self.fast_solution = self.__class__.fast_solution(service, version, mode, path + ["fast_solution"])
|
|
@@ -14419,6 +14507,10 @@ class main_menu(TUIMenu):
|
|
|
14419
14507
|
"""
|
|
14420
14508
|
Write post-processing data (geometry, velocity and scalars) for cell and face zones using EnSight Dynamic Visualization Store Interface.
|
|
14421
14509
|
"""
|
|
14510
|
+
class ensight_dvs_combined(TUIMethod):
|
|
14511
|
+
"""
|
|
14512
|
+
Write post-processing data (geometry, velocity and scalars) for surfaces, cell zones and boundaries attached to them using EnSight Dynamic Visualization Store Interface.
|
|
14513
|
+
"""
|
|
14422
14514
|
class ensight_dvs_surfaces(TUIMethod):
|
|
14423
14515
|
"""
|
|
14424
14516
|
Write post-processing data (geometry, velocity and scalars) for surfaces using EnSight Dynamic Visualization Store Interface.
|
|
@@ -14439,6 +14531,10 @@ class main_menu(TUIMenu):
|
|
|
14439
14531
|
"""
|
|
14440
14532
|
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
14533
|
"""
|
|
14534
|
+
class ensight_gold_surface(TUIMethod):
|
|
14535
|
+
"""
|
|
14536
|
+
Write EnSight Gold geometry, velocity, and scalar files.
|
|
14537
|
+
"""
|
|
14442
14538
|
class fast_mesh(TUIMethod):
|
|
14443
14539
|
"""
|
|
14444
14540
|
No help available.
|
|
@@ -14933,7 +15029,7 @@ class main_menu(TUIMenu):
|
|
|
14933
15029
|
"""
|
|
14934
15030
|
class save(TUIMethod):
|
|
14935
15031
|
"""
|
|
14936
|
-
|
|
15032
|
+
No help available.
|
|
14937
15033
|
"""
|
|
14938
15034
|
class save_a_copy(TUIMethod):
|
|
14939
15035
|
"""
|
|
@@ -15066,6 +15162,7 @@ class main_menu(TUIMenu):
|
|
|
15066
15162
|
self.dx = self.__class__.dx(service, version, mode, path + ["dx"])
|
|
15067
15163
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
15068
15164
|
self.ensight_dvs = self.__class__.ensight_dvs(service, version, mode, path + ["ensight_dvs"])
|
|
15165
|
+
self.ensight_dvs_combined = self.__class__.ensight_dvs_combined(service, version, mode, path + ["ensight_dvs_combined"])
|
|
15069
15166
|
self.ensight_dvs_surfaces = self.__class__.ensight_dvs_surfaces(service, version, mode, path + ["ensight_dvs_surfaces"])
|
|
15070
15167
|
self.ensight_dvs_volume = self.__class__.ensight_dvs_volume(service, version, mode, path + ["ensight_dvs_volume"])
|
|
15071
15168
|
self.ensight_gold_from_existing_files = self.__class__.ensight_gold_from_existing_files(service, version, mode, path + ["ensight_gold_from_existing_files"])
|
|
@@ -15126,6 +15223,10 @@ class main_menu(TUIMenu):
|
|
|
15126
15223
|
"""
|
|
15127
15224
|
Write post-processing data (geometry, velocity and scalars) for cell and face zones using EnSight Dynamic Visualization Store Interface.
|
|
15128
15225
|
"""
|
|
15226
|
+
class ensight_dvs_combined(TUIMethod):
|
|
15227
|
+
"""
|
|
15228
|
+
Write post-processing data (geometry, velocity and scalars) for surfaces, cell zones and boundaries attached to them using EnSight Dynamic Visualization Store Interface.
|
|
15229
|
+
"""
|
|
15129
15230
|
class ensight_dvs_surfaces(TUIMethod):
|
|
15130
15231
|
"""
|
|
15131
15232
|
Write post-processing data (geometry, velocity and scalars) for surfaces using EnSight Dynamic Visualization Store Interface.
|
|
@@ -15885,6 +15986,7 @@ class main_menu(TUIMenu):
|
|
|
15885
15986
|
self.merge_zones = self.__class__.merge_zones(service, version, mode, path + ["merge_zones"])
|
|
15886
15987
|
self.mrf_to_sliding_mesh = self.__class__.mrf_to_sliding_mesh(service, version, mode, path + ["mrf_to_sliding_mesh"])
|
|
15887
15988
|
self.orient_face_zone = self.__class__.orient_face_zone(service, version, mode, path + ["orient_face_zone"])
|
|
15989
|
+
self.project_face_zones = self.__class__.project_face_zones(service, version, mode, path + ["project_face_zones"])
|
|
15888
15990
|
self.recreate_all_shells = self.__class__.recreate_all_shells(service, version, mode, path + ["recreate_all_shells"])
|
|
15889
15991
|
self.replace_zone = self.__class__.replace_zone(service, version, mode, path + ["replace_zone"])
|
|
15890
15992
|
self.rotate_zone = self.__class__.rotate_zone(service, version, mode, path + ["rotate_zone"])
|
|
@@ -16011,6 +16113,10 @@ class main_menu(TUIMenu):
|
|
|
16011
16113
|
"""
|
|
16012
16114
|
No help available.
|
|
16013
16115
|
"""
|
|
16116
|
+
class project_face_zones(TUIMethod):
|
|
16117
|
+
"""
|
|
16118
|
+
No help available.
|
|
16119
|
+
"""
|
|
16014
16120
|
class recreate_all_shells(TUIMethod):
|
|
16015
16121
|
"""
|
|
16016
16122
|
No help available.
|
|
@@ -17421,7 +17527,7 @@ class main_menu(TUIMenu):
|
|
|
17421
17527
|
"""
|
|
17422
17528
|
class use_mop(TUIMethod):
|
|
17423
17529
|
"""
|
|
17424
|
-
Set value
|
|
17530
|
+
Set value for Use MOP.
|
|
17425
17531
|
"""
|
|
17426
17532
|
class use_start_designs_only(TUIMethod):
|
|
17427
17533
|
"""
|
|
@@ -17571,11 +17677,11 @@ class main_menu(TUIMenu):
|
|
|
17571
17677
|
super().__init__(service, version, mode, path)
|
|
17572
17678
|
class export_design_table(TUIMethod):
|
|
17573
17679
|
"""
|
|
17574
|
-
|
|
17680
|
+
No help available.
|
|
17575
17681
|
"""
|
|
17576
17682
|
class import_design_table(TUIMethod):
|
|
17577
17683
|
"""
|
|
17578
|
-
|
|
17684
|
+
No help available.
|
|
17579
17685
|
"""
|
|
17580
17686
|
|
|
17581
17687
|
class study(TUIMenu):
|
|
@@ -17595,15 +17701,15 @@ class main_menu(TUIMenu):
|
|
|
17595
17701
|
super().__init__(service, version, mode, path)
|
|
17596
17702
|
class delete(TUIMethod):
|
|
17597
17703
|
"""
|
|
17598
|
-
|
|
17704
|
+
No help available.
|
|
17599
17705
|
"""
|
|
17600
17706
|
class duplicate(TUIMethod):
|
|
17601
17707
|
"""
|
|
17602
|
-
|
|
17708
|
+
No help available.
|
|
17603
17709
|
"""
|
|
17604
17710
|
class initialize(TUIMethod):
|
|
17605
17711
|
"""
|
|
17606
|
-
|
|
17712
|
+
Initialize Parametric Study.
|
|
17607
17713
|
"""
|
|
17608
17714
|
class list(TUIMethod):
|
|
17609
17715
|
"""
|
|
@@ -17615,11 +17721,11 @@ class main_menu(TUIMenu):
|
|
|
17615
17721
|
"""
|
|
17616
17722
|
class rename(TUIMethod):
|
|
17617
17723
|
"""
|
|
17618
|
-
|
|
17724
|
+
No help available.
|
|
17619
17725
|
"""
|
|
17620
17726
|
class set_as_current(TUIMethod):
|
|
17621
17727
|
"""
|
|
17622
|
-
|
|
17728
|
+
No help available.
|
|
17623
17729
|
"""
|
|
17624
17730
|
class use_base_data(TUIMethod):
|
|
17625
17731
|
"""
|
|
@@ -17991,7 +18097,7 @@ class main_menu(TUIMenu):
|
|
|
17991
18097
|
"""
|
|
17992
18098
|
class file_list(TUIMethod):
|
|
17993
18099
|
"""
|
|
17994
|
-
|
|
18100
|
+
No help available.
|
|
17995
18101
|
"""
|
|
17996
18102
|
class histogram(TUIMethod):
|
|
17997
18103
|
"""
|
|
@@ -17999,7 +18105,7 @@ class main_menu(TUIMenu):
|
|
|
17999
18105
|
"""
|
|
18000
18106
|
class label_alignment(TUIMethod):
|
|
18001
18107
|
"""
|
|
18002
|
-
|
|
18108
|
+
No help available.
|
|
18003
18109
|
"""
|
|
18004
18110
|
class plot(TUIMethod):
|
|
18005
18111
|
"""
|
|
@@ -18015,8 +18121,7 @@ class main_menu(TUIMenu):
|
|
|
18015
18121
|
"""
|
|
18016
18122
|
class set_boundary_val_off(TUIMethod):
|
|
18017
18123
|
"""
|
|
18018
|
-
|
|
18019
|
-
Note: This setting is valid for current Fluent session only.
|
|
18124
|
+
No help available.
|
|
18020
18125
|
"""
|
|
18021
18126
|
class solution(TUIMethod):
|
|
18022
18127
|
"""
|
|
@@ -18078,7 +18183,7 @@ class main_menu(TUIMenu):
|
|
|
18078
18183
|
"""
|
|
18079
18184
|
class list(TUIMethod):
|
|
18080
18185
|
"""
|
|
18081
|
-
List
|
|
18186
|
+
List the Cumulative Forces/Moments.
|
|
18082
18187
|
"""
|
|
18083
18188
|
class list_properties(TUIMethod):
|
|
18084
18189
|
"""
|
|
@@ -18176,6 +18281,7 @@ class main_menu(TUIMenu):
|
|
|
18176
18281
|
Enter the menu to set file plot parameters.
|
|
18177
18282
|
"""
|
|
18178
18283
|
def __init__(self, service, version, mode, path):
|
|
18284
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18179
18285
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18180
18286
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18181
18287
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18190,9 +18296,14 @@ class main_menu(TUIMenu):
|
|
|
18190
18296
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18191
18297
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18192
18298
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18299
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18193
18300
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18194
18301
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18195
18302
|
super().__init__(service, version, mode, path)
|
|
18303
|
+
class auto_limits(TUIMethod):
|
|
18304
|
+
"""
|
|
18305
|
+
Automatically compute x/y-axis extents?.
|
|
18306
|
+
"""
|
|
18196
18307
|
class auto_scale(TUIMethod):
|
|
18197
18308
|
"""
|
|
18198
18309
|
Automatically compute x/y-axis extents?.
|
|
@@ -18249,6 +18360,10 @@ class main_menu(TUIMenu):
|
|
|
18249
18360
|
"""
|
|
18250
18361
|
Set parameters for display of major and minor rules.
|
|
18251
18362
|
"""
|
|
18363
|
+
class rules_placement(TUIMethod):
|
|
18364
|
+
"""
|
|
18365
|
+
Set parameters for display of major and minor rules.
|
|
18366
|
+
"""
|
|
18252
18367
|
class windows(TUIMethod):
|
|
18253
18368
|
"""
|
|
18254
18369
|
X-Y plot window options.
|
|
@@ -18280,6 +18395,7 @@ class main_menu(TUIMenu):
|
|
|
18280
18395
|
Enter the menu to set histogram plot parameters.
|
|
18281
18396
|
"""
|
|
18282
18397
|
def __init__(self, service, version, mode, path):
|
|
18398
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18283
18399
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18284
18400
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18285
18401
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18294,9 +18410,14 @@ class main_menu(TUIMenu):
|
|
|
18294
18410
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18295
18411
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18296
18412
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18413
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18297
18414
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18298
18415
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18299
18416
|
super().__init__(service, version, mode, path)
|
|
18417
|
+
class auto_limits(TUIMethod):
|
|
18418
|
+
"""
|
|
18419
|
+
Automatically compute x/y-axis extents?.
|
|
18420
|
+
"""
|
|
18300
18421
|
class auto_scale(TUIMethod):
|
|
18301
18422
|
"""
|
|
18302
18423
|
Automatically compute x/y-axis extents?.
|
|
@@ -18353,6 +18474,10 @@ class main_menu(TUIMenu):
|
|
|
18353
18474
|
"""
|
|
18354
18475
|
Set parameters for display of major and minor rules.
|
|
18355
18476
|
"""
|
|
18477
|
+
class rules_placement(TUIMethod):
|
|
18478
|
+
"""
|
|
18479
|
+
Set parameters for display of major and minor rules.
|
|
18480
|
+
"""
|
|
18356
18481
|
class windows(TUIMethod):
|
|
18357
18482
|
"""
|
|
18358
18483
|
X-Y plot window options.
|
|
@@ -18367,6 +18492,7 @@ class main_menu(TUIMenu):
|
|
|
18367
18492
|
Enter the menu to set residual plot parameters.
|
|
18368
18493
|
"""
|
|
18369
18494
|
def __init__(self, service, version, mode, path):
|
|
18495
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18370
18496
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18371
18497
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18372
18498
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18381,9 +18507,14 @@ class main_menu(TUIMenu):
|
|
|
18381
18507
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18382
18508
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18383
18509
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18510
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18384
18511
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18385
18512
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18386
18513
|
super().__init__(service, version, mode, path)
|
|
18514
|
+
class auto_limits(TUIMethod):
|
|
18515
|
+
"""
|
|
18516
|
+
Automatically compute x/y-axis extents?.
|
|
18517
|
+
"""
|
|
18387
18518
|
class auto_scale(TUIMethod):
|
|
18388
18519
|
"""
|
|
18389
18520
|
Automatically compute x/y-axis extents?.
|
|
@@ -18440,6 +18571,10 @@ class main_menu(TUIMenu):
|
|
|
18440
18571
|
"""
|
|
18441
18572
|
Set parameters for display of major and minor rules.
|
|
18442
18573
|
"""
|
|
18574
|
+
class rules_placement(TUIMethod):
|
|
18575
|
+
"""
|
|
18576
|
+
Set parameters for display of major and minor rules.
|
|
18577
|
+
"""
|
|
18443
18578
|
class windows(TUIMethod):
|
|
18444
18579
|
"""
|
|
18445
18580
|
X-Y plot window options.
|
|
@@ -18454,6 +18589,7 @@ class main_menu(TUIMenu):
|
|
|
18454
18589
|
Enter the menu to set solution plot parameters.
|
|
18455
18590
|
"""
|
|
18456
18591
|
def __init__(self, service, version, mode, path):
|
|
18592
|
+
self.auto_limits = self.__class__.auto_limits(service, version, mode, path + ["auto_limits"])
|
|
18457
18593
|
self.auto_scale = self.__class__.auto_scale(service, version, mode, path + ["auto_scale"])
|
|
18458
18594
|
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
18459
18595
|
self.end_plot_to_file = self.__class__.end_plot_to_file(service, version, mode, path + ["end_plot_to_file"])
|
|
@@ -18468,9 +18604,14 @@ class main_menu(TUIMenu):
|
|
|
18468
18604
|
self.numbers = self.__class__.numbers(service, version, mode, path + ["numbers"])
|
|
18469
18605
|
self.plot_to_file = self.__class__.plot_to_file(service, version, mode, path + ["plot_to_file"])
|
|
18470
18606
|
self.rules = self.__class__.rules(service, version, mode, path + ["rules"])
|
|
18607
|
+
self.rules_placement = self.__class__.rules_placement(service, version, mode, path + ["rules_placement"])
|
|
18471
18608
|
self.windows = self.__class__.windows(service, version, mode, path + ["windows"])
|
|
18472
18609
|
self.xy_percent_y = self.__class__.xy_percent_y(service, version, mode, path + ["xy_percent_y"])
|
|
18473
18610
|
super().__init__(service, version, mode, path)
|
|
18611
|
+
class auto_limits(TUIMethod):
|
|
18612
|
+
"""
|
|
18613
|
+
Automatically compute x/y-axis extents?.
|
|
18614
|
+
"""
|
|
18474
18615
|
class auto_scale(TUIMethod):
|
|
18475
18616
|
"""
|
|
18476
18617
|
Automatically compute x/y-axis extents?.
|
|
@@ -18527,6 +18668,10 @@ class main_menu(TUIMenu):
|
|
|
18527
18668
|
"""
|
|
18528
18669
|
Set parameters for display of major and minor rules.
|
|
18529
18670
|
"""
|
|
18671
|
+
class rules_placement(TUIMethod):
|
|
18672
|
+
"""
|
|
18673
|
+
Set parameters for display of major and minor rules.
|
|
18674
|
+
"""
|
|
18530
18675
|
class windows(TUIMethod):
|
|
18531
18676
|
"""
|
|
18532
18677
|
X-Y plot window options.
|
|
@@ -18558,6 +18703,7 @@ class main_menu(TUIMenu):
|
|
|
18558
18703
|
Set preferences.
|
|
18559
18704
|
"""
|
|
18560
18705
|
def __init__(self, service, version, mode, path):
|
|
18706
|
+
self.ansys_cloud_burst = self.__class__.ansys_cloud_burst(service, version, mode, path + ["ansys_cloud_burst"])
|
|
18561
18707
|
self.appearance = self.__class__.appearance(service, version, mode, path + ["appearance"])
|
|
18562
18708
|
self.general = self.__class__.general(service, version, mode, path + ["general"])
|
|
18563
18709
|
self.gpuapp = self.__class__.gpuapp(service, version, mode, path + ["gpuapp"])
|
|
@@ -18573,6 +18719,18 @@ class main_menu(TUIMenu):
|
|
|
18573
18719
|
self.turbo_workflow = self.__class__.turbo_workflow(service, version, mode, path + ["turbo_workflow"])
|
|
18574
18720
|
super().__init__(service, version, mode, path)
|
|
18575
18721
|
|
|
18722
|
+
class ansys_cloud_burst(TUIMenu):
|
|
18723
|
+
"""
|
|
18724
|
+
No help available.
|
|
18725
|
+
"""
|
|
18726
|
+
def __init__(self, service, version, mode, path):
|
|
18727
|
+
self.authentication_method = self.__class__.authentication_method(service, version, mode, path + ["authentication_method"])
|
|
18728
|
+
super().__init__(service, version, mode, path)
|
|
18729
|
+
class authentication_method(TUIMethod):
|
|
18730
|
+
"""
|
|
18731
|
+
No help available.
|
|
18732
|
+
"""
|
|
18733
|
+
|
|
18576
18734
|
class appearance(TUIMenu):
|
|
18577
18735
|
"""
|
|
18578
18736
|
No help available.
|
|
@@ -20184,6 +20342,7 @@ class main_menu(TUIMenu):
|
|
|
20184
20342
|
No help available.
|
|
20185
20343
|
"""
|
|
20186
20344
|
def __init__(self, service, version, mode, path):
|
|
20345
|
+
self.cad_log_option = self.__class__.cad_log_option(service, version, mode, path + ["cad_log_option"])
|
|
20187
20346
|
self.draw_settings = self.__class__.draw_settings(service, version, mode, path + ["draw_settings"])
|
|
20188
20347
|
self.checkpointing_option = self.__class__.checkpointing_option(service, version, mode, path + ["checkpointing_option"])
|
|
20189
20348
|
self.save_checkpoint_files = self.__class__.save_checkpoint_files(service, version, mode, path + ["save_checkpoint_files"])
|
|
@@ -20217,6 +20376,28 @@ class main_menu(TUIMenu):
|
|
|
20217
20376
|
No help available.
|
|
20218
20377
|
"""
|
|
20219
20378
|
|
|
20379
|
+
class cad_log_option(TUIMenu):
|
|
20380
|
+
"""
|
|
20381
|
+
No help available.
|
|
20382
|
+
"""
|
|
20383
|
+
def __init__(self, service, version, mode, path):
|
|
20384
|
+
self.location = self.__class__.location(service, version, mode, path + ["location"])
|
|
20385
|
+
self.prefix = self.__class__.prefix(service, version, mode, path + ["prefix"])
|
|
20386
|
+
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
20387
|
+
super().__init__(service, version, mode, path)
|
|
20388
|
+
class location(TUIMethod):
|
|
20389
|
+
"""
|
|
20390
|
+
No help available.
|
|
20391
|
+
"""
|
|
20392
|
+
class prefix(TUIMethod):
|
|
20393
|
+
"""
|
|
20394
|
+
No help available.
|
|
20395
|
+
"""
|
|
20396
|
+
class write(TUIMethod):
|
|
20397
|
+
"""
|
|
20398
|
+
No help available.
|
|
20399
|
+
"""
|
|
20400
|
+
|
|
20220
20401
|
class draw_settings(TUIMenu):
|
|
20221
20402
|
"""
|
|
20222
20403
|
No help available.
|
|
@@ -20932,53 +21113,51 @@ class main_menu(TUIMenu):
|
|
|
20932
21113
|
super().__init__(service, version, mode, path)
|
|
20933
21114
|
class auto_range(TUIMethod):
|
|
20934
21115
|
"""
|
|
20935
|
-
|
|
21116
|
+
No help available.
|
|
20936
21117
|
"""
|
|
20937
21118
|
class correlation(TUIMethod):
|
|
20938
21119
|
"""
|
|
20939
|
-
|
|
21120
|
+
No help available.
|
|
20940
21121
|
"""
|
|
20941
21122
|
class cumulation_curve(TUIMethod):
|
|
20942
21123
|
"""
|
|
20943
|
-
|
|
21124
|
+
No help available.
|
|
20944
21125
|
"""
|
|
20945
21126
|
class diameter_statistics(TUIMethod):
|
|
20946
21127
|
"""
|
|
20947
|
-
|
|
20948
|
-
Requires specification of diameter as sampling variable.
|
|
21128
|
+
No help available.
|
|
20949
21129
|
"""
|
|
20950
21130
|
class histogram_mode(TUIMethod):
|
|
20951
21131
|
"""
|
|
20952
|
-
|
|
21132
|
+
No help available.
|
|
20953
21133
|
"""
|
|
20954
21134
|
class logarithmic(TUIMethod):
|
|
20955
21135
|
"""
|
|
20956
|
-
|
|
21136
|
+
No help available.
|
|
20957
21137
|
"""
|
|
20958
21138
|
class maximum(TUIMethod):
|
|
20959
21139
|
"""
|
|
20960
|
-
Specify maximum value of
|
|
21140
|
+
Specify the maximum value of the abscissa (histogram variable axis) for the histogram plot.
|
|
20961
21141
|
"""
|
|
20962
21142
|
class minimum(TUIMethod):
|
|
20963
21143
|
"""
|
|
20964
|
-
Specify
|
|
21144
|
+
Specify the minimum value of the abscissa (histogram variable axis) for the histogram plot.
|
|
20965
21145
|
"""
|
|
20966
21146
|
class number_of_bins(TUIMethod):
|
|
20967
21147
|
"""
|
|
20968
|
-
|
|
21148
|
+
No help available.
|
|
20969
21149
|
"""
|
|
20970
21150
|
class percentage(TUIMethod):
|
|
20971
21151
|
"""
|
|
20972
|
-
|
|
21152
|
+
No help available.
|
|
20973
21153
|
"""
|
|
20974
21154
|
class variable_power_3(TUIMethod):
|
|
20975
21155
|
"""
|
|
20976
|
-
|
|
20977
|
-
When the particle mass was not sampled, the diameter can be used instead.
|
|
21156
|
+
No help available.
|
|
20978
21157
|
"""
|
|
20979
21158
|
class weighting(TUIMethod):
|
|
20980
21159
|
"""
|
|
20981
|
-
|
|
21160
|
+
No help available.
|
|
20982
21161
|
"""
|
|
20983
21162
|
|
|
20984
21163
|
class setup_reduction(TUIMenu):
|
|
@@ -22005,7 +22184,6 @@ class main_menu(TUIMenu):
|
|
|
22005
22184
|
"""
|
|
22006
22185
|
def __init__(self, service, version, mode, path):
|
|
22007
22186
|
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
22187
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
22010
22188
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
22011
22189
|
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
@@ -22013,15 +22191,12 @@ class main_menu(TUIMenu):
|
|
|
22013
22191
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
22014
22192
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
22015
22193
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
22194
|
+
self.show_hide_annotations = self.__class__.show_hide_annotations(service, version, mode, path + ["show_hide_annotations"])
|
|
22016
22195
|
super().__init__(service, version, mode, path)
|
|
22017
22196
|
class annotate(TUIMethod):
|
|
22018
22197
|
"""
|
|
22019
22198
|
No help available.
|
|
22020
22199
|
"""
|
|
22021
|
-
class clear_annotations(TUIMethod):
|
|
22022
|
-
"""
|
|
22023
|
-
No help available.
|
|
22024
|
-
"""
|
|
22025
22200
|
class create(TUIMethod):
|
|
22026
22201
|
"""
|
|
22027
22202
|
No help available.
|
|
@@ -22050,6 +22225,10 @@ class main_menu(TUIMenu):
|
|
|
22050
22225
|
"""
|
|
22051
22226
|
No help available.
|
|
22052
22227
|
"""
|
|
22228
|
+
class show_hide_annotations(TUIMethod):
|
|
22229
|
+
"""
|
|
22230
|
+
No help available.
|
|
22231
|
+
"""
|
|
22053
22232
|
|
|
22054
22233
|
class custom_field_functions(TUIMenu):
|
|
22055
22234
|
"""
|
|
@@ -22179,23 +22358,31 @@ class main_menu(TUIMenu):
|
|
|
22179
22358
|
def __init__(self, service, version, mode, path):
|
|
22180
22359
|
self.by_surface = self.__class__.by_surface(service, version, mode, path + ["by_surface"])
|
|
22181
22360
|
self.by_type = self.__class__.by_type(service, version, mode, path + ["by_type"])
|
|
22361
|
+
self.titles = self.__class__.titles(service, version, mode, path + ["titles"])
|
|
22182
22362
|
self.automatic_skip = self.__class__.automatic_skip(service, version, mode, path + ["automatic_skip"])
|
|
22183
22363
|
self.axis_faces = self.__class__.axis_faces(service, version, mode, path + ["axis_faces"])
|
|
22184
22364
|
self.background = self.__class__.background(service, version, mode, path + ["background"])
|
|
22365
|
+
self.color_by = self.__class__.color_by(service, version, mode, path + ["color_by"])
|
|
22185
22366
|
self.color_by_type = self.__class__.color_by_type(service, version, mode, path + ["color_by_type"])
|
|
22367
|
+
self.colormap = self.__class__.colormap(service, version, mode, path + ["colormap"])
|
|
22186
22368
|
self.far_field_faces = self.__class__.far_field_faces(service, version, mode, path + ["far_field_faces"])
|
|
22187
22369
|
self.foreground = self.__class__.foreground(service, version, mode, path + ["foreground"])
|
|
22188
22370
|
self.free_surface_faces = self.__class__.free_surface_faces(service, version, mode, path + ["free_surface_faces"])
|
|
22371
|
+
self.graphics_color_theme = self.__class__.graphics_color_theme(service, version, mode, path + ["graphics_color_theme"])
|
|
22189
22372
|
self.inlet_faces = self.__class__.inlet_faces(service, version, mode, path + ["inlet_faces"])
|
|
22190
22373
|
self.interface_faces = self.__class__.interface_faces(service, version, mode, path + ["interface_faces"])
|
|
22191
22374
|
self.interior_faces = self.__class__.interior_faces(service, version, mode, path + ["interior_faces"])
|
|
22192
22375
|
self.internal_faces = self.__class__.internal_faces(service, version, mode, path + ["internal_faces"])
|
|
22193
22376
|
self.list_colors = self.__class__.list_colors(service, version, mode, path + ["list_colors"])
|
|
22377
|
+
self.mesh_display_configuration = self.__class__.mesh_display_configuration(service, version, mode, path + ["mesh_display_configuration"])
|
|
22194
22378
|
self.outlet_faces = self.__class__.outlet_faces(service, version, mode, path + ["outlet_faces"])
|
|
22379
|
+
self.overlays = self.__class__.overlays(service, version, mode, path + ["overlays"])
|
|
22195
22380
|
self.overset_faces = self.__class__.overset_faces(service, version, mode, path + ["overset_faces"])
|
|
22196
22381
|
self.periodic_faces = self.__class__.periodic_faces(service, version, mode, path + ["periodic_faces"])
|
|
22197
22382
|
self.rans_les_interface_faces = self.__class__.rans_les_interface_faces(service, version, mode, path + ["rans_les_interface_faces"])
|
|
22383
|
+
self.render_mesh = self.__class__.render_mesh(service, version, mode, path + ["render_mesh"])
|
|
22198
22384
|
self.reset_colors = self.__class__.reset_colors(service, version, mode, path + ["reset_colors"])
|
|
22385
|
+
self.reset_graphics = self.__class__.reset_graphics(service, version, mode, path + ["reset_graphics"])
|
|
22199
22386
|
self.skip_label = self.__class__.skip_label(service, version, mode, path + ["skip_label"])
|
|
22200
22387
|
self.surface = self.__class__.surface(service, version, mode, path + ["surface"])
|
|
22201
22388
|
self.symmetry_faces = self.__class__.symmetry_faces(service, version, mode, path + ["symmetry_faces"])
|
|
@@ -22214,10 +22401,18 @@ class main_menu(TUIMenu):
|
|
|
22214
22401
|
"""
|
|
22215
22402
|
No help available.
|
|
22216
22403
|
"""
|
|
22404
|
+
class color_by(TUIMethod):
|
|
22405
|
+
"""
|
|
22406
|
+
No help available.
|
|
22407
|
+
"""
|
|
22217
22408
|
class color_by_type(TUIMethod):
|
|
22218
22409
|
"""
|
|
22219
22410
|
No help available.
|
|
22220
22411
|
"""
|
|
22412
|
+
class colormap(TUIMethod):
|
|
22413
|
+
"""
|
|
22414
|
+
No help available.
|
|
22415
|
+
"""
|
|
22221
22416
|
class far_field_faces(TUIMethod):
|
|
22222
22417
|
"""
|
|
22223
22418
|
No help available.
|
|
@@ -22230,6 +22425,10 @@ class main_menu(TUIMenu):
|
|
|
22230
22425
|
"""
|
|
22231
22426
|
No help available.
|
|
22232
22427
|
"""
|
|
22428
|
+
class graphics_color_theme(TUIMethod):
|
|
22429
|
+
"""
|
|
22430
|
+
No help available.
|
|
22431
|
+
"""
|
|
22233
22432
|
class inlet_faces(TUIMethod):
|
|
22234
22433
|
"""
|
|
22235
22434
|
No help available.
|
|
@@ -22250,10 +22449,18 @@ class main_menu(TUIMenu):
|
|
|
22250
22449
|
"""
|
|
22251
22450
|
No help available.
|
|
22252
22451
|
"""
|
|
22452
|
+
class mesh_display_configuration(TUIMethod):
|
|
22453
|
+
"""
|
|
22454
|
+
No help available.
|
|
22455
|
+
"""
|
|
22253
22456
|
class outlet_faces(TUIMethod):
|
|
22254
22457
|
"""
|
|
22255
22458
|
No help available.
|
|
22256
22459
|
"""
|
|
22460
|
+
class overlays(TUIMethod):
|
|
22461
|
+
"""
|
|
22462
|
+
No help available.
|
|
22463
|
+
"""
|
|
22257
22464
|
class overset_faces(TUIMethod):
|
|
22258
22465
|
"""
|
|
22259
22466
|
No help available.
|
|
@@ -22266,10 +22473,18 @@ class main_menu(TUIMenu):
|
|
|
22266
22473
|
"""
|
|
22267
22474
|
No help available.
|
|
22268
22475
|
"""
|
|
22476
|
+
class render_mesh(TUIMethod):
|
|
22477
|
+
"""
|
|
22478
|
+
No help available.
|
|
22479
|
+
"""
|
|
22269
22480
|
class reset_colors(TUIMethod):
|
|
22270
22481
|
"""
|
|
22271
22482
|
No help available.
|
|
22272
22483
|
"""
|
|
22484
|
+
class reset_graphics(TUIMethod):
|
|
22485
|
+
"""
|
|
22486
|
+
No help available.
|
|
22487
|
+
"""
|
|
22273
22488
|
class skip_label(TUIMethod):
|
|
22274
22489
|
"""
|
|
22275
22490
|
No help available.
|
|
@@ -22296,6 +22511,7 @@ class main_menu(TUIMenu):
|
|
|
22296
22511
|
No help available.
|
|
22297
22512
|
"""
|
|
22298
22513
|
def __init__(self, service, version, mode, path):
|
|
22514
|
+
self.surface_name = self.__class__.surface_name(service, version, mode, path + ["surface_name"])
|
|
22299
22515
|
self.list_surfaces_by_color = self.__class__.list_surfaces_by_color(service, version, mode, path + ["list_surfaces_by_color"])
|
|
22300
22516
|
self.list_surfaces_by_material = self.__class__.list_surfaces_by_material(service, version, mode, path + ["list_surfaces_by_material"])
|
|
22301
22517
|
self.reset = self.__class__.reset(service, version, mode, path + ["reset"])
|
|
@@ -22323,6 +22539,48 @@ class main_menu(TUIMenu):
|
|
|
22323
22539
|
No help available.
|
|
22324
22540
|
"""
|
|
22325
22541
|
|
|
22542
|
+
class surface_name(TUIMenu):
|
|
22543
|
+
"""
|
|
22544
|
+
No help available.
|
|
22545
|
+
"""
|
|
22546
|
+
def __init__(self, service, version, mode, path):
|
|
22547
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
22548
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
22549
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
22550
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
22551
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
22552
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
22553
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
22554
|
+
super().__init__(service, version, mode, path)
|
|
22555
|
+
class create(TUIMethod):
|
|
22556
|
+
"""
|
|
22557
|
+
No help available.
|
|
22558
|
+
"""
|
|
22559
|
+
class delete(TUIMethod):
|
|
22560
|
+
"""
|
|
22561
|
+
No help available.
|
|
22562
|
+
"""
|
|
22563
|
+
class edit(TUIMethod):
|
|
22564
|
+
"""
|
|
22565
|
+
Edit surface-name object.
|
|
22566
|
+
"""
|
|
22567
|
+
class list(TUIMethod):
|
|
22568
|
+
"""
|
|
22569
|
+
No help available.
|
|
22570
|
+
"""
|
|
22571
|
+
class list_properties(TUIMethod):
|
|
22572
|
+
"""
|
|
22573
|
+
No help available.
|
|
22574
|
+
"""
|
|
22575
|
+
class make_a_copy(TUIMethod):
|
|
22576
|
+
"""
|
|
22577
|
+
No help available.
|
|
22578
|
+
"""
|
|
22579
|
+
class rename(TUIMethod):
|
|
22580
|
+
"""
|
|
22581
|
+
No help available.
|
|
22582
|
+
"""
|
|
22583
|
+
|
|
22326
22584
|
class by_type(TUIMenu):
|
|
22327
22585
|
"""
|
|
22328
22586
|
No help available.
|
|
@@ -22388,6 +22646,38 @@ class main_menu(TUIMenu):
|
|
|
22388
22646
|
No help available.
|
|
22389
22647
|
"""
|
|
22390
22648
|
|
|
22649
|
+
class titles(TUIMenu):
|
|
22650
|
+
"""
|
|
22651
|
+
No help available.
|
|
22652
|
+
"""
|
|
22653
|
+
def __init__(self, service, version, mode, path):
|
|
22654
|
+
self.left_bottom = self.__class__.left_bottom(service, version, mode, path + ["left_bottom"])
|
|
22655
|
+
self.left_top = self.__class__.left_top(service, version, mode, path + ["left_top"])
|
|
22656
|
+
self.right_bottom = self.__class__.right_bottom(service, version, mode, path + ["right_bottom"])
|
|
22657
|
+
self.right_middle = self.__class__.right_middle(service, version, mode, path + ["right_middle"])
|
|
22658
|
+
self.right_top = self.__class__.right_top(service, version, mode, path + ["right_top"])
|
|
22659
|
+
super().__init__(service, version, mode, path)
|
|
22660
|
+
class left_bottom(TUIMethod):
|
|
22661
|
+
"""
|
|
22662
|
+
No help available.
|
|
22663
|
+
"""
|
|
22664
|
+
class left_top(TUIMethod):
|
|
22665
|
+
"""
|
|
22666
|
+
No help available.
|
|
22667
|
+
"""
|
|
22668
|
+
class right_bottom(TUIMethod):
|
|
22669
|
+
"""
|
|
22670
|
+
No help available.
|
|
22671
|
+
"""
|
|
22672
|
+
class right_middle(TUIMethod):
|
|
22673
|
+
"""
|
|
22674
|
+
No help available.
|
|
22675
|
+
"""
|
|
22676
|
+
class right_top(TUIMethod):
|
|
22677
|
+
"""
|
|
22678
|
+
No help available.
|
|
22679
|
+
"""
|
|
22680
|
+
|
|
22391
22681
|
class contour(TUIMenu):
|
|
22392
22682
|
"""
|
|
22393
22683
|
No help available.
|
|
@@ -23174,6 +23464,7 @@ class main_menu(TUIMenu):
|
|
|
23174
23464
|
self.rendering = self.__class__.rendering(service, version, mode, path + ["rendering"])
|
|
23175
23465
|
self.display_in_omniverse = self.__class__.display_in_omniverse(service, version, mode, path + ["display_in_omniverse"])
|
|
23176
23466
|
self.display_live_preview = self.__class__.display_live_preview(service, version, mode, path + ["display_live_preview"])
|
|
23467
|
+
self.usd_export_via_connector = self.__class__.usd_export_via_connector(service, version, mode, path + ["usd_export_via_connector"])
|
|
23177
23468
|
super().__init__(service, version, mode, path)
|
|
23178
23469
|
class display_in_omniverse(TUIMethod):
|
|
23179
23470
|
"""
|
|
@@ -23183,6 +23474,10 @@ class main_menu(TUIMenu):
|
|
|
23183
23474
|
"""
|
|
23184
23475
|
No help available.
|
|
23185
23476
|
"""
|
|
23477
|
+
class usd_export_via_connector(TUIMethod):
|
|
23478
|
+
"""
|
|
23479
|
+
No help available.
|
|
23480
|
+
"""
|
|
23186
23481
|
|
|
23187
23482
|
class background(TUIMenu):
|
|
23188
23483
|
"""
|
|
@@ -23504,6 +23799,7 @@ class main_menu(TUIMenu):
|
|
|
23504
23799
|
No help available.
|
|
23505
23800
|
"""
|
|
23506
23801
|
def __init__(self, service, version, mode, path):
|
|
23802
|
+
self.apply = self.__class__.apply(service, version, mode, path + ["apply"])
|
|
23507
23803
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
23508
23804
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
23509
23805
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
@@ -23513,10 +23809,13 @@ class main_menu(TUIMenu):
|
|
|
23513
23809
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
23514
23810
|
self.read = self.__class__.read(service, version, mode, path + ["read"])
|
|
23515
23811
|
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
23812
|
self.use_active = self.__class__.use_active(service, version, mode, path + ["use_active"])
|
|
23518
23813
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
23519
23814
|
super().__init__(service, version, mode, path)
|
|
23815
|
+
class apply(TUIMethod):
|
|
23816
|
+
"""
|
|
23817
|
+
No help available.
|
|
23818
|
+
"""
|
|
23520
23819
|
class copy(TUIMethod):
|
|
23521
23820
|
"""
|
|
23522
23821
|
No help available.
|
|
@@ -23553,10 +23852,6 @@ class main_menu(TUIMenu):
|
|
|
23553
23852
|
"""
|
|
23554
23853
|
No help available.
|
|
23555
23854
|
"""
|
|
23556
|
-
class restore_state(TUIMethod):
|
|
23557
|
-
"""
|
|
23558
|
-
No help available.
|
|
23559
|
-
"""
|
|
23560
23855
|
class use_active(TUIMethod):
|
|
23561
23856
|
"""
|
|
23562
23857
|
No help available.
|
|
@@ -24137,13 +24432,16 @@ class main_menu(TUIMenu):
|
|
|
24137
24432
|
self.interpolated_data = self.__class__.interpolated_data(service, version, mode, path + ["interpolated_data"])
|
|
24138
24433
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
24139
24434
|
self.plot_from_file = self.__class__.plot_from_file(service, version, mode, path + ["plot_from_file"])
|
|
24435
|
+
self.plot_from_file_list = self.__class__.plot_from_file_list(service, version, mode, path + ["plot_from_file_list"])
|
|
24140
24436
|
self.profile_data = self.__class__.profile_data(service, version, mode, path + ["profile_data"])
|
|
24141
24437
|
self.solution_plot = self.__class__.solution_plot(service, version, mode, path + ["solution_plot"])
|
|
24142
24438
|
self.xy_plot = self.__class__.xy_plot(service, version, mode, path + ["xy_plot"])
|
|
24143
24439
|
self.circum_avg_axial = self.__class__.circum_avg_axial(service, version, mode, path + ["circum_avg_axial"])
|
|
24144
24440
|
self.circum_avg_radial = self.__class__.circum_avg_radial(service, version, mode, path + ["circum_avg_radial"])
|
|
24145
24441
|
self.fft = self.__class__.fft(service, version, mode, path + ["fft"])
|
|
24442
|
+
self.label_alignment = self.__class__.label_alignment(service, version, mode, path + ["label_alignment"])
|
|
24146
24443
|
self.plot_direction = self.__class__.plot_direction(service, version, mode, path + ["plot_direction"])
|
|
24444
|
+
self.set_boundary_val_off = self.__class__.set_boundary_val_off(service, version, mode, path + ["set_boundary_val_off"])
|
|
24147
24445
|
super().__init__(service, version, mode, path)
|
|
24148
24446
|
class circum_avg_axial(TUIMethod):
|
|
24149
24447
|
"""
|
|
@@ -24157,10 +24455,18 @@ class main_menu(TUIMenu):
|
|
|
24157
24455
|
"""
|
|
24158
24456
|
No help available.
|
|
24159
24457
|
"""
|
|
24458
|
+
class label_alignment(TUIMethod):
|
|
24459
|
+
"""
|
|
24460
|
+
No help available.
|
|
24461
|
+
"""
|
|
24160
24462
|
class plot_direction(TUIMethod):
|
|
24161
24463
|
"""
|
|
24162
24464
|
No help available.
|
|
24163
24465
|
"""
|
|
24466
|
+
class set_boundary_val_off(TUIMethod):
|
|
24467
|
+
"""
|
|
24468
|
+
No help available.
|
|
24469
|
+
"""
|
|
24164
24470
|
|
|
24165
24471
|
class cumulative_plot(TUIMenu):
|
|
24166
24472
|
"""
|
|
@@ -24174,6 +24480,7 @@ class main_menu(TUIMenu):
|
|
|
24174
24480
|
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
24175
24481
|
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
24176
24482
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
24483
|
+
self.print = self.__class__.print(service, version, mode, path + ["print"])
|
|
24177
24484
|
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
24178
24485
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
24179
24486
|
super().__init__(service, version, mode, path)
|
|
@@ -24205,6 +24512,10 @@ class main_menu(TUIMenu):
|
|
|
24205
24512
|
"""
|
|
24206
24513
|
No help available.
|
|
24207
24514
|
"""
|
|
24515
|
+
class print(TUIMethod):
|
|
24516
|
+
"""
|
|
24517
|
+
No help available.
|
|
24518
|
+
"""
|
|
24208
24519
|
class rename(TUIMethod):
|
|
24209
24520
|
"""
|
|
24210
24521
|
No help available.
|
|
@@ -24226,6 +24537,7 @@ class main_menu(TUIMenu):
|
|
|
24226
24537
|
self.maximum = self.__class__.maximum(service, version, mode, path + ["maximum"])
|
|
24227
24538
|
self.minimum = self.__class__.minimum(service, version, mode, path + ["minimum"])
|
|
24228
24539
|
self.num_divisions = self.__class__.num_divisions(service, version, mode, path + ["num_divisions"])
|
|
24540
|
+
self.physics = self.__class__.physics(service, version, mode, path + ["physics"])
|
|
24229
24541
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
24230
24542
|
self.print = self.__class__.print(service, version, mode, path + ["print"])
|
|
24231
24543
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
@@ -24251,6 +24563,10 @@ class main_menu(TUIMenu):
|
|
|
24251
24563
|
"""
|
|
24252
24564
|
No help available.
|
|
24253
24565
|
"""
|
|
24566
|
+
class physics(TUIMethod):
|
|
24567
|
+
"""
|
|
24568
|
+
No help available.
|
|
24569
|
+
"""
|
|
24254
24570
|
class plot(TUIMethod):
|
|
24255
24571
|
"""
|
|
24256
24572
|
No help available.
|
|
@@ -24291,6 +24607,8 @@ class main_menu(TUIMenu):
|
|
|
24291
24607
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24292
24608
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24293
24609
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24610
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24611
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24294
24612
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24295
24613
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24296
24614
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24302,6 +24620,14 @@ class main_menu(TUIMenu):
|
|
|
24302
24620
|
"""
|
|
24303
24621
|
No help available.
|
|
24304
24622
|
"""
|
|
24623
|
+
class auto_range_max(TUIMethod):
|
|
24624
|
+
"""
|
|
24625
|
+
No help available.
|
|
24626
|
+
"""
|
|
24627
|
+
class auto_range_min(TUIMethod):
|
|
24628
|
+
"""
|
|
24629
|
+
No help available.
|
|
24630
|
+
"""
|
|
24305
24631
|
class label(TUIMethod):
|
|
24306
24632
|
"""
|
|
24307
24633
|
No help available.
|
|
@@ -24332,13 +24658,28 @@ class main_menu(TUIMenu):
|
|
|
24332
24658
|
No help available.
|
|
24333
24659
|
"""
|
|
24334
24660
|
def __init__(self, service, version, mode, path):
|
|
24661
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24335
24662
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24663
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24664
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24336
24665
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24337
24666
|
super().__init__(service, version, mode, path)
|
|
24667
|
+
class auto_placement(TUIMethod):
|
|
24668
|
+
"""
|
|
24669
|
+
No help available.
|
|
24670
|
+
"""
|
|
24338
24671
|
class color(TUIMethod):
|
|
24339
24672
|
"""
|
|
24340
24673
|
No help available.
|
|
24341
24674
|
"""
|
|
24675
|
+
class distance(TUIMethod):
|
|
24676
|
+
"""
|
|
24677
|
+
No help available.
|
|
24678
|
+
"""
|
|
24679
|
+
class units_or_divisions(TUIMethod):
|
|
24680
|
+
"""
|
|
24681
|
+
No help available.
|
|
24682
|
+
"""
|
|
24342
24683
|
class weight(TUIMethod):
|
|
24343
24684
|
"""
|
|
24344
24685
|
No help available.
|
|
@@ -24349,13 +24690,28 @@ class main_menu(TUIMenu):
|
|
|
24349
24690
|
No help available.
|
|
24350
24691
|
"""
|
|
24351
24692
|
def __init__(self, service, version, mode, path):
|
|
24693
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24352
24694
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24695
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24696
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24353
24697
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24354
24698
|
super().__init__(service, version, mode, path)
|
|
24699
|
+
class auto_placement(TUIMethod):
|
|
24700
|
+
"""
|
|
24701
|
+
No help available.
|
|
24702
|
+
"""
|
|
24355
24703
|
class color(TUIMethod):
|
|
24356
24704
|
"""
|
|
24357
24705
|
No help available.
|
|
24358
24706
|
"""
|
|
24707
|
+
class distance(TUIMethod):
|
|
24708
|
+
"""
|
|
24709
|
+
No help available.
|
|
24710
|
+
"""
|
|
24711
|
+
class units_or_divisions(TUIMethod):
|
|
24712
|
+
"""
|
|
24713
|
+
No help available.
|
|
24714
|
+
"""
|
|
24359
24715
|
class weight(TUIMethod):
|
|
24360
24716
|
"""
|
|
24361
24717
|
No help available.
|
|
@@ -24387,6 +24743,8 @@ class main_menu(TUIMenu):
|
|
|
24387
24743
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24388
24744
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24389
24745
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24746
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24747
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24390
24748
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24391
24749
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24392
24750
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24398,6 +24756,14 @@ class main_menu(TUIMenu):
|
|
|
24398
24756
|
"""
|
|
24399
24757
|
No help available.
|
|
24400
24758
|
"""
|
|
24759
|
+
class auto_range_max(TUIMethod):
|
|
24760
|
+
"""
|
|
24761
|
+
No help available.
|
|
24762
|
+
"""
|
|
24763
|
+
class auto_range_min(TUIMethod):
|
|
24764
|
+
"""
|
|
24765
|
+
No help available.
|
|
24766
|
+
"""
|
|
24401
24767
|
class label(TUIMethod):
|
|
24402
24768
|
"""
|
|
24403
24769
|
No help available.
|
|
@@ -24428,13 +24794,28 @@ class main_menu(TUIMenu):
|
|
|
24428
24794
|
No help available.
|
|
24429
24795
|
"""
|
|
24430
24796
|
def __init__(self, service, version, mode, path):
|
|
24797
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24431
24798
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24799
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24800
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24432
24801
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24433
24802
|
super().__init__(service, version, mode, path)
|
|
24803
|
+
class auto_placement(TUIMethod):
|
|
24804
|
+
"""
|
|
24805
|
+
No help available.
|
|
24806
|
+
"""
|
|
24434
24807
|
class color(TUIMethod):
|
|
24435
24808
|
"""
|
|
24436
24809
|
No help available.
|
|
24437
24810
|
"""
|
|
24811
|
+
class distance(TUIMethod):
|
|
24812
|
+
"""
|
|
24813
|
+
No help available.
|
|
24814
|
+
"""
|
|
24815
|
+
class units_or_divisions(TUIMethod):
|
|
24816
|
+
"""
|
|
24817
|
+
No help available.
|
|
24818
|
+
"""
|
|
24438
24819
|
class weight(TUIMethod):
|
|
24439
24820
|
"""
|
|
24440
24821
|
No help available.
|
|
@@ -24445,13 +24826,28 @@ class main_menu(TUIMenu):
|
|
|
24445
24826
|
No help available.
|
|
24446
24827
|
"""
|
|
24447
24828
|
def __init__(self, service, version, mode, path):
|
|
24829
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24448
24830
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
24831
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
24832
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24449
24833
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24450
24834
|
super().__init__(service, version, mode, path)
|
|
24835
|
+
class auto_placement(TUIMethod):
|
|
24836
|
+
"""
|
|
24837
|
+
No help available.
|
|
24838
|
+
"""
|
|
24451
24839
|
class color(TUIMethod):
|
|
24452
24840
|
"""
|
|
24453
24841
|
No help available.
|
|
24454
24842
|
"""
|
|
24843
|
+
class distance(TUIMethod):
|
|
24844
|
+
"""
|
|
24845
|
+
No help available.
|
|
24846
|
+
"""
|
|
24847
|
+
class units_or_divisions(TUIMethod):
|
|
24848
|
+
"""
|
|
24849
|
+
No help available.
|
|
24850
|
+
"""
|
|
24455
24851
|
class weight(TUIMethod):
|
|
24456
24852
|
"""
|
|
24457
24853
|
No help available.
|
|
@@ -24548,6 +24944,8 @@ class main_menu(TUIMenu):
|
|
|
24548
24944
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24549
24945
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24550
24946
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
24947
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
24948
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24551
24949
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24552
24950
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24553
24951
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24559,6 +24957,14 @@ class main_menu(TUIMenu):
|
|
|
24559
24957
|
"""
|
|
24560
24958
|
No help available.
|
|
24561
24959
|
"""
|
|
24960
|
+
class auto_range_max(TUIMethod):
|
|
24961
|
+
"""
|
|
24962
|
+
No help available.
|
|
24963
|
+
"""
|
|
24964
|
+
class auto_range_min(TUIMethod):
|
|
24965
|
+
"""
|
|
24966
|
+
No help available.
|
|
24967
|
+
"""
|
|
24562
24968
|
class label(TUIMethod):
|
|
24563
24969
|
"""
|
|
24564
24970
|
No help available.
|
|
@@ -24589,13 +24995,28 @@ class main_menu(TUIMenu):
|
|
|
24589
24995
|
No help available.
|
|
24590
24996
|
"""
|
|
24591
24997
|
def __init__(self, service, version, mode, path):
|
|
24998
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24592
24999
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25000
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25001
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24593
25002
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24594
25003
|
super().__init__(service, version, mode, path)
|
|
25004
|
+
class auto_placement(TUIMethod):
|
|
25005
|
+
"""
|
|
25006
|
+
No help available.
|
|
25007
|
+
"""
|
|
24595
25008
|
class color(TUIMethod):
|
|
24596
25009
|
"""
|
|
24597
25010
|
No help available.
|
|
24598
25011
|
"""
|
|
25012
|
+
class distance(TUIMethod):
|
|
25013
|
+
"""
|
|
25014
|
+
No help available.
|
|
25015
|
+
"""
|
|
25016
|
+
class units_or_divisions(TUIMethod):
|
|
25017
|
+
"""
|
|
25018
|
+
No help available.
|
|
25019
|
+
"""
|
|
24599
25020
|
class weight(TUIMethod):
|
|
24600
25021
|
"""
|
|
24601
25022
|
No help available.
|
|
@@ -24606,13 +25027,28 @@ class main_menu(TUIMenu):
|
|
|
24606
25027
|
No help available.
|
|
24607
25028
|
"""
|
|
24608
25029
|
def __init__(self, service, version, mode, path):
|
|
25030
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24609
25031
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25032
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25033
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24610
25034
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24611
25035
|
super().__init__(service, version, mode, path)
|
|
25036
|
+
class auto_placement(TUIMethod):
|
|
25037
|
+
"""
|
|
25038
|
+
No help available.
|
|
25039
|
+
"""
|
|
24612
25040
|
class color(TUIMethod):
|
|
24613
25041
|
"""
|
|
24614
25042
|
No help available.
|
|
24615
25043
|
"""
|
|
25044
|
+
class distance(TUIMethod):
|
|
25045
|
+
"""
|
|
25046
|
+
No help available.
|
|
25047
|
+
"""
|
|
25048
|
+
class units_or_divisions(TUIMethod):
|
|
25049
|
+
"""
|
|
25050
|
+
No help available.
|
|
25051
|
+
"""
|
|
24616
25052
|
class weight(TUIMethod):
|
|
24617
25053
|
"""
|
|
24618
25054
|
No help available.
|
|
@@ -24644,6 +25080,8 @@ class main_menu(TUIMenu):
|
|
|
24644
25080
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24645
25081
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24646
25082
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25083
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25084
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24647
25085
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24648
25086
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24649
25087
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24655,6 +25093,14 @@ class main_menu(TUIMenu):
|
|
|
24655
25093
|
"""
|
|
24656
25094
|
No help available.
|
|
24657
25095
|
"""
|
|
25096
|
+
class auto_range_max(TUIMethod):
|
|
25097
|
+
"""
|
|
25098
|
+
No help available.
|
|
25099
|
+
"""
|
|
25100
|
+
class auto_range_min(TUIMethod):
|
|
25101
|
+
"""
|
|
25102
|
+
No help available.
|
|
25103
|
+
"""
|
|
24658
25104
|
class label(TUIMethod):
|
|
24659
25105
|
"""
|
|
24660
25106
|
No help available.
|
|
@@ -24685,13 +25131,28 @@ class main_menu(TUIMenu):
|
|
|
24685
25131
|
No help available.
|
|
24686
25132
|
"""
|
|
24687
25133
|
def __init__(self, service, version, mode, path):
|
|
25134
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24688
25135
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25136
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25137
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24689
25138
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24690
25139
|
super().__init__(service, version, mode, path)
|
|
25140
|
+
class auto_placement(TUIMethod):
|
|
25141
|
+
"""
|
|
25142
|
+
No help available.
|
|
25143
|
+
"""
|
|
24691
25144
|
class color(TUIMethod):
|
|
24692
25145
|
"""
|
|
24693
25146
|
No help available.
|
|
24694
25147
|
"""
|
|
25148
|
+
class distance(TUIMethod):
|
|
25149
|
+
"""
|
|
25150
|
+
No help available.
|
|
25151
|
+
"""
|
|
25152
|
+
class units_or_divisions(TUIMethod):
|
|
25153
|
+
"""
|
|
25154
|
+
No help available.
|
|
25155
|
+
"""
|
|
24695
25156
|
class weight(TUIMethod):
|
|
24696
25157
|
"""
|
|
24697
25158
|
No help available.
|
|
@@ -24702,13 +25163,28 @@ class main_menu(TUIMenu):
|
|
|
24702
25163
|
No help available.
|
|
24703
25164
|
"""
|
|
24704
25165
|
def __init__(self, service, version, mode, path):
|
|
25166
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24705
25167
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25168
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25169
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24706
25170
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24707
25171
|
super().__init__(service, version, mode, path)
|
|
25172
|
+
class auto_placement(TUIMethod):
|
|
25173
|
+
"""
|
|
25174
|
+
No help available.
|
|
25175
|
+
"""
|
|
24708
25176
|
class color(TUIMethod):
|
|
24709
25177
|
"""
|
|
24710
25178
|
No help available.
|
|
24711
25179
|
"""
|
|
25180
|
+
class distance(TUIMethod):
|
|
25181
|
+
"""
|
|
25182
|
+
No help available.
|
|
25183
|
+
"""
|
|
25184
|
+
class units_or_divisions(TUIMethod):
|
|
25185
|
+
"""
|
|
25186
|
+
No help available.
|
|
25187
|
+
"""
|
|
24712
25188
|
class weight(TUIMethod):
|
|
24713
25189
|
"""
|
|
24714
25190
|
No help available.
|
|
@@ -24790,6 +25266,8 @@ class main_menu(TUIMenu):
|
|
|
24790
25266
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24791
25267
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24792
25268
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25269
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25270
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24793
25271
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24794
25272
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24795
25273
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24801,6 +25279,14 @@ class main_menu(TUIMenu):
|
|
|
24801
25279
|
"""
|
|
24802
25280
|
No help available.
|
|
24803
25281
|
"""
|
|
25282
|
+
class auto_range_max(TUIMethod):
|
|
25283
|
+
"""
|
|
25284
|
+
No help available.
|
|
25285
|
+
"""
|
|
25286
|
+
class auto_range_min(TUIMethod):
|
|
25287
|
+
"""
|
|
25288
|
+
No help available.
|
|
25289
|
+
"""
|
|
24804
25290
|
class label(TUIMethod):
|
|
24805
25291
|
"""
|
|
24806
25292
|
No help available.
|
|
@@ -24831,13 +25317,28 @@ class main_menu(TUIMenu):
|
|
|
24831
25317
|
No help available.
|
|
24832
25318
|
"""
|
|
24833
25319
|
def __init__(self, service, version, mode, path):
|
|
25320
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24834
25321
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25322
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25323
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24835
25324
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24836
25325
|
super().__init__(service, version, mode, path)
|
|
25326
|
+
class auto_placement(TUIMethod):
|
|
25327
|
+
"""
|
|
25328
|
+
No help available.
|
|
25329
|
+
"""
|
|
24837
25330
|
class color(TUIMethod):
|
|
24838
25331
|
"""
|
|
24839
25332
|
No help available.
|
|
24840
25333
|
"""
|
|
25334
|
+
class distance(TUIMethod):
|
|
25335
|
+
"""
|
|
25336
|
+
No help available.
|
|
25337
|
+
"""
|
|
25338
|
+
class units_or_divisions(TUIMethod):
|
|
25339
|
+
"""
|
|
25340
|
+
No help available.
|
|
25341
|
+
"""
|
|
24841
25342
|
class weight(TUIMethod):
|
|
24842
25343
|
"""
|
|
24843
25344
|
No help available.
|
|
@@ -24848,13 +25349,28 @@ class main_menu(TUIMenu):
|
|
|
24848
25349
|
No help available.
|
|
24849
25350
|
"""
|
|
24850
25351
|
def __init__(self, service, version, mode, path):
|
|
25352
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24851
25353
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25354
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25355
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24852
25356
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24853
25357
|
super().__init__(service, version, mode, path)
|
|
25358
|
+
class auto_placement(TUIMethod):
|
|
25359
|
+
"""
|
|
25360
|
+
No help available.
|
|
25361
|
+
"""
|
|
24854
25362
|
class color(TUIMethod):
|
|
24855
25363
|
"""
|
|
24856
25364
|
No help available.
|
|
24857
25365
|
"""
|
|
25366
|
+
class distance(TUIMethod):
|
|
25367
|
+
"""
|
|
25368
|
+
No help available.
|
|
25369
|
+
"""
|
|
25370
|
+
class units_or_divisions(TUIMethod):
|
|
25371
|
+
"""
|
|
25372
|
+
No help available.
|
|
25373
|
+
"""
|
|
24858
25374
|
class weight(TUIMethod):
|
|
24859
25375
|
"""
|
|
24860
25376
|
No help available.
|
|
@@ -24886,6 +25402,8 @@ class main_menu(TUIMenu):
|
|
|
24886
25402
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
24887
25403
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
24888
25404
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25405
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25406
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
24889
25407
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
24890
25408
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
24891
25409
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -24897,6 +25415,14 @@ class main_menu(TUIMenu):
|
|
|
24897
25415
|
"""
|
|
24898
25416
|
No help available.
|
|
24899
25417
|
"""
|
|
25418
|
+
class auto_range_max(TUIMethod):
|
|
25419
|
+
"""
|
|
25420
|
+
No help available.
|
|
25421
|
+
"""
|
|
25422
|
+
class auto_range_min(TUIMethod):
|
|
25423
|
+
"""
|
|
25424
|
+
No help available.
|
|
25425
|
+
"""
|
|
24900
25426
|
class label(TUIMethod):
|
|
24901
25427
|
"""
|
|
24902
25428
|
No help available.
|
|
@@ -24927,13 +25453,28 @@ class main_menu(TUIMenu):
|
|
|
24927
25453
|
No help available.
|
|
24928
25454
|
"""
|
|
24929
25455
|
def __init__(self, service, version, mode, path):
|
|
25456
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24930
25457
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25458
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25459
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24931
25460
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24932
25461
|
super().__init__(service, version, mode, path)
|
|
25462
|
+
class auto_placement(TUIMethod):
|
|
25463
|
+
"""
|
|
25464
|
+
No help available.
|
|
25465
|
+
"""
|
|
24933
25466
|
class color(TUIMethod):
|
|
24934
25467
|
"""
|
|
24935
25468
|
No help available.
|
|
24936
25469
|
"""
|
|
25470
|
+
class distance(TUIMethod):
|
|
25471
|
+
"""
|
|
25472
|
+
No help available.
|
|
25473
|
+
"""
|
|
25474
|
+
class units_or_divisions(TUIMethod):
|
|
25475
|
+
"""
|
|
25476
|
+
No help available.
|
|
25477
|
+
"""
|
|
24937
25478
|
class weight(TUIMethod):
|
|
24938
25479
|
"""
|
|
24939
25480
|
No help available.
|
|
@@ -24944,13 +25485,28 @@ class main_menu(TUIMenu):
|
|
|
24944
25485
|
No help available.
|
|
24945
25486
|
"""
|
|
24946
25487
|
def __init__(self, service, version, mode, path):
|
|
25488
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
24947
25489
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25490
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25491
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
24948
25492
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
24949
25493
|
super().__init__(service, version, mode, path)
|
|
25494
|
+
class auto_placement(TUIMethod):
|
|
25495
|
+
"""
|
|
25496
|
+
No help available.
|
|
25497
|
+
"""
|
|
24950
25498
|
class color(TUIMethod):
|
|
24951
25499
|
"""
|
|
24952
25500
|
No help available.
|
|
24953
25501
|
"""
|
|
25502
|
+
class distance(TUIMethod):
|
|
25503
|
+
"""
|
|
25504
|
+
No help available.
|
|
25505
|
+
"""
|
|
25506
|
+
class units_or_divisions(TUIMethod):
|
|
25507
|
+
"""
|
|
25508
|
+
No help available.
|
|
25509
|
+
"""
|
|
24954
25510
|
class weight(TUIMethod):
|
|
24955
25511
|
"""
|
|
24956
25512
|
No help available.
|
|
@@ -25032,6 +25588,8 @@ class main_menu(TUIMenu):
|
|
|
25032
25588
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25033
25589
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25034
25590
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25591
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25592
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25035
25593
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25036
25594
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25037
25595
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25043,6 +25601,14 @@ class main_menu(TUIMenu):
|
|
|
25043
25601
|
"""
|
|
25044
25602
|
No help available.
|
|
25045
25603
|
"""
|
|
25604
|
+
class auto_range_max(TUIMethod):
|
|
25605
|
+
"""
|
|
25606
|
+
No help available.
|
|
25607
|
+
"""
|
|
25608
|
+
class auto_range_min(TUIMethod):
|
|
25609
|
+
"""
|
|
25610
|
+
No help available.
|
|
25611
|
+
"""
|
|
25046
25612
|
class label(TUIMethod):
|
|
25047
25613
|
"""
|
|
25048
25614
|
No help available.
|
|
@@ -25073,13 +25639,28 @@ class main_menu(TUIMenu):
|
|
|
25073
25639
|
No help available.
|
|
25074
25640
|
"""
|
|
25075
25641
|
def __init__(self, service, version, mode, path):
|
|
25642
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25076
25643
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25644
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25645
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25077
25646
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25078
25647
|
super().__init__(service, version, mode, path)
|
|
25648
|
+
class auto_placement(TUIMethod):
|
|
25649
|
+
"""
|
|
25650
|
+
No help available.
|
|
25651
|
+
"""
|
|
25079
25652
|
class color(TUIMethod):
|
|
25080
25653
|
"""
|
|
25081
25654
|
No help available.
|
|
25082
25655
|
"""
|
|
25656
|
+
class distance(TUIMethod):
|
|
25657
|
+
"""
|
|
25658
|
+
No help available.
|
|
25659
|
+
"""
|
|
25660
|
+
class units_or_divisions(TUIMethod):
|
|
25661
|
+
"""
|
|
25662
|
+
No help available.
|
|
25663
|
+
"""
|
|
25083
25664
|
class weight(TUIMethod):
|
|
25084
25665
|
"""
|
|
25085
25666
|
No help available.
|
|
@@ -25090,13 +25671,28 @@ class main_menu(TUIMenu):
|
|
|
25090
25671
|
No help available.
|
|
25091
25672
|
"""
|
|
25092
25673
|
def __init__(self, service, version, mode, path):
|
|
25674
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25093
25675
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25676
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25677
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25094
25678
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25095
25679
|
super().__init__(service, version, mode, path)
|
|
25680
|
+
class auto_placement(TUIMethod):
|
|
25681
|
+
"""
|
|
25682
|
+
No help available.
|
|
25683
|
+
"""
|
|
25096
25684
|
class color(TUIMethod):
|
|
25097
25685
|
"""
|
|
25098
25686
|
No help available.
|
|
25099
25687
|
"""
|
|
25688
|
+
class distance(TUIMethod):
|
|
25689
|
+
"""
|
|
25690
|
+
No help available.
|
|
25691
|
+
"""
|
|
25692
|
+
class units_or_divisions(TUIMethod):
|
|
25693
|
+
"""
|
|
25694
|
+
No help available.
|
|
25695
|
+
"""
|
|
25100
25696
|
class weight(TUIMethod):
|
|
25101
25697
|
"""
|
|
25102
25698
|
No help available.
|
|
@@ -25128,6 +25724,8 @@ class main_menu(TUIMenu):
|
|
|
25128
25724
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25129
25725
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25130
25726
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25727
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25728
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25131
25729
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25132
25730
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25133
25731
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25139,6 +25737,14 @@ class main_menu(TUIMenu):
|
|
|
25139
25737
|
"""
|
|
25140
25738
|
No help available.
|
|
25141
25739
|
"""
|
|
25740
|
+
class auto_range_max(TUIMethod):
|
|
25741
|
+
"""
|
|
25742
|
+
No help available.
|
|
25743
|
+
"""
|
|
25744
|
+
class auto_range_min(TUIMethod):
|
|
25745
|
+
"""
|
|
25746
|
+
No help available.
|
|
25747
|
+
"""
|
|
25142
25748
|
class label(TUIMethod):
|
|
25143
25749
|
"""
|
|
25144
25750
|
No help available.
|
|
@@ -25169,13 +25775,28 @@ class main_menu(TUIMenu):
|
|
|
25169
25775
|
No help available.
|
|
25170
25776
|
"""
|
|
25171
25777
|
def __init__(self, service, version, mode, path):
|
|
25778
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25172
25779
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25780
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25781
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25173
25782
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25174
25783
|
super().__init__(service, version, mode, path)
|
|
25784
|
+
class auto_placement(TUIMethod):
|
|
25785
|
+
"""
|
|
25786
|
+
No help available.
|
|
25787
|
+
"""
|
|
25175
25788
|
class color(TUIMethod):
|
|
25176
25789
|
"""
|
|
25177
25790
|
No help available.
|
|
25178
25791
|
"""
|
|
25792
|
+
class distance(TUIMethod):
|
|
25793
|
+
"""
|
|
25794
|
+
No help available.
|
|
25795
|
+
"""
|
|
25796
|
+
class units_or_divisions(TUIMethod):
|
|
25797
|
+
"""
|
|
25798
|
+
No help available.
|
|
25799
|
+
"""
|
|
25179
25800
|
class weight(TUIMethod):
|
|
25180
25801
|
"""
|
|
25181
25802
|
No help available.
|
|
@@ -25186,13 +25807,28 @@ class main_menu(TUIMenu):
|
|
|
25186
25807
|
No help available.
|
|
25187
25808
|
"""
|
|
25188
25809
|
def __init__(self, service, version, mode, path):
|
|
25810
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25189
25811
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25812
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25813
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25190
25814
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25191
25815
|
super().__init__(service, version, mode, path)
|
|
25816
|
+
class auto_placement(TUIMethod):
|
|
25817
|
+
"""
|
|
25818
|
+
No help available.
|
|
25819
|
+
"""
|
|
25192
25820
|
class color(TUIMethod):
|
|
25193
25821
|
"""
|
|
25194
25822
|
No help available.
|
|
25195
25823
|
"""
|
|
25824
|
+
class distance(TUIMethod):
|
|
25825
|
+
"""
|
|
25826
|
+
No help available.
|
|
25827
|
+
"""
|
|
25828
|
+
class units_or_divisions(TUIMethod):
|
|
25829
|
+
"""
|
|
25830
|
+
No help available.
|
|
25831
|
+
"""
|
|
25196
25832
|
class weight(TUIMethod):
|
|
25197
25833
|
"""
|
|
25198
25834
|
No help available.
|
|
@@ -25237,31 +25873,16 @@ class main_menu(TUIMenu):
|
|
|
25237
25873
|
No help available.
|
|
25238
25874
|
"""
|
|
25239
25875
|
|
|
25240
|
-
class
|
|
25876
|
+
class plot_from_file_list(TUIMenu):
|
|
25241
25877
|
"""
|
|
25242
25878
|
No help available.
|
|
25243
25879
|
"""
|
|
25244
25880
|
def __init__(self, service, version, mode, path):
|
|
25245
25881
|
self.axes = self.__class__.axes(service, version, mode, path + ["axes"])
|
|
25246
25882
|
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"])
|
|
25883
|
+
self.file_list = self.__class__.file_list(service, version, mode, path + ["file_list"])
|
|
25251
25884
|
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):
|
|
25885
|
+
class file_list(TUIMethod):
|
|
25265
25886
|
"""
|
|
25266
25887
|
No help available.
|
|
25267
25888
|
"""
|
|
@@ -25289,6 +25910,8 @@ class main_menu(TUIMenu):
|
|
|
25289
25910
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25290
25911
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25291
25912
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25913
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
25914
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25292
25915
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25293
25916
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25294
25917
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25300,6 +25923,14 @@ class main_menu(TUIMenu):
|
|
|
25300
25923
|
"""
|
|
25301
25924
|
No help available.
|
|
25302
25925
|
"""
|
|
25926
|
+
class auto_range_max(TUIMethod):
|
|
25927
|
+
"""
|
|
25928
|
+
No help available.
|
|
25929
|
+
"""
|
|
25930
|
+
class auto_range_min(TUIMethod):
|
|
25931
|
+
"""
|
|
25932
|
+
No help available.
|
|
25933
|
+
"""
|
|
25303
25934
|
class label(TUIMethod):
|
|
25304
25935
|
"""
|
|
25305
25936
|
No help available.
|
|
@@ -25330,13 +25961,28 @@ class main_menu(TUIMenu):
|
|
|
25330
25961
|
No help available.
|
|
25331
25962
|
"""
|
|
25332
25963
|
def __init__(self, service, version, mode, path):
|
|
25964
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25333
25965
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25966
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25967
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25334
25968
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25335
25969
|
super().__init__(service, version, mode, path)
|
|
25970
|
+
class auto_placement(TUIMethod):
|
|
25971
|
+
"""
|
|
25972
|
+
No help available.
|
|
25973
|
+
"""
|
|
25336
25974
|
class color(TUIMethod):
|
|
25337
25975
|
"""
|
|
25338
25976
|
No help available.
|
|
25339
25977
|
"""
|
|
25978
|
+
class distance(TUIMethod):
|
|
25979
|
+
"""
|
|
25980
|
+
No help available.
|
|
25981
|
+
"""
|
|
25982
|
+
class units_or_divisions(TUIMethod):
|
|
25983
|
+
"""
|
|
25984
|
+
No help available.
|
|
25985
|
+
"""
|
|
25340
25986
|
class weight(TUIMethod):
|
|
25341
25987
|
"""
|
|
25342
25988
|
No help available.
|
|
@@ -25347,13 +25993,28 @@ class main_menu(TUIMenu):
|
|
|
25347
25993
|
No help available.
|
|
25348
25994
|
"""
|
|
25349
25995
|
def __init__(self, service, version, mode, path):
|
|
25996
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25350
25997
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
25998
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
25999
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25351
26000
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25352
26001
|
super().__init__(service, version, mode, path)
|
|
26002
|
+
class auto_placement(TUIMethod):
|
|
26003
|
+
"""
|
|
26004
|
+
No help available.
|
|
26005
|
+
"""
|
|
25353
26006
|
class color(TUIMethod):
|
|
25354
26007
|
"""
|
|
25355
26008
|
No help available.
|
|
25356
26009
|
"""
|
|
26010
|
+
class distance(TUIMethod):
|
|
26011
|
+
"""
|
|
26012
|
+
No help available.
|
|
26013
|
+
"""
|
|
26014
|
+
class units_or_divisions(TUIMethod):
|
|
26015
|
+
"""
|
|
26016
|
+
No help available.
|
|
26017
|
+
"""
|
|
25357
26018
|
class weight(TUIMethod):
|
|
25358
26019
|
"""
|
|
25359
26020
|
No help available.
|
|
@@ -25385,6 +26046,8 @@ class main_menu(TUIMenu):
|
|
|
25385
26046
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25386
26047
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25387
26048
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26049
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26050
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25388
26051
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25389
26052
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25390
26053
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25396,6 +26059,14 @@ class main_menu(TUIMenu):
|
|
|
25396
26059
|
"""
|
|
25397
26060
|
No help available.
|
|
25398
26061
|
"""
|
|
26062
|
+
class auto_range_max(TUIMethod):
|
|
26063
|
+
"""
|
|
26064
|
+
No help available.
|
|
26065
|
+
"""
|
|
26066
|
+
class auto_range_min(TUIMethod):
|
|
26067
|
+
"""
|
|
26068
|
+
No help available.
|
|
26069
|
+
"""
|
|
25399
26070
|
class label(TUIMethod):
|
|
25400
26071
|
"""
|
|
25401
26072
|
No help available.
|
|
@@ -25426,13 +26097,28 @@ class main_menu(TUIMenu):
|
|
|
25426
26097
|
No help available.
|
|
25427
26098
|
"""
|
|
25428
26099
|
def __init__(self, service, version, mode, path):
|
|
26100
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25429
26101
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26102
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26103
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25430
26104
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25431
26105
|
super().__init__(service, version, mode, path)
|
|
26106
|
+
class auto_placement(TUIMethod):
|
|
26107
|
+
"""
|
|
26108
|
+
No help available.
|
|
26109
|
+
"""
|
|
25432
26110
|
class color(TUIMethod):
|
|
25433
26111
|
"""
|
|
25434
26112
|
No help available.
|
|
25435
26113
|
"""
|
|
26114
|
+
class distance(TUIMethod):
|
|
26115
|
+
"""
|
|
26116
|
+
No help available.
|
|
26117
|
+
"""
|
|
26118
|
+
class units_or_divisions(TUIMethod):
|
|
26119
|
+
"""
|
|
26120
|
+
No help available.
|
|
26121
|
+
"""
|
|
25436
26122
|
class weight(TUIMethod):
|
|
25437
26123
|
"""
|
|
25438
26124
|
No help available.
|
|
@@ -25443,13 +26129,365 @@ class main_menu(TUIMenu):
|
|
|
25443
26129
|
No help available.
|
|
25444
26130
|
"""
|
|
25445
26131
|
def __init__(self, service, version, mode, path):
|
|
26132
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25446
26133
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26134
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26135
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25447
26136
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25448
26137
|
super().__init__(service, version, mode, path)
|
|
26138
|
+
class auto_placement(TUIMethod):
|
|
26139
|
+
"""
|
|
26140
|
+
No help available.
|
|
26141
|
+
"""
|
|
25449
26142
|
class color(TUIMethod):
|
|
25450
26143
|
"""
|
|
25451
26144
|
No help available.
|
|
25452
26145
|
"""
|
|
26146
|
+
class distance(TUIMethod):
|
|
26147
|
+
"""
|
|
26148
|
+
No help available.
|
|
26149
|
+
"""
|
|
26150
|
+
class units_or_divisions(TUIMethod):
|
|
26151
|
+
"""
|
|
26152
|
+
No help available.
|
|
26153
|
+
"""
|
|
26154
|
+
class weight(TUIMethod):
|
|
26155
|
+
"""
|
|
26156
|
+
No help available.
|
|
26157
|
+
"""
|
|
26158
|
+
|
|
26159
|
+
class number_format(TUIMenu):
|
|
26160
|
+
"""
|
|
26161
|
+
No help available.
|
|
26162
|
+
"""
|
|
26163
|
+
def __init__(self, service, version, mode, path):
|
|
26164
|
+
self.format_type = self.__class__.format_type(service, version, mode, path + ["format_type"])
|
|
26165
|
+
self.precision = self.__class__.precision(service, version, mode, path + ["precision"])
|
|
26166
|
+
super().__init__(service, version, mode, path)
|
|
26167
|
+
class format_type(TUIMethod):
|
|
26168
|
+
"""
|
|
26169
|
+
No help available.
|
|
26170
|
+
"""
|
|
26171
|
+
class precision(TUIMethod):
|
|
26172
|
+
"""
|
|
26173
|
+
No help available.
|
|
26174
|
+
"""
|
|
26175
|
+
|
|
26176
|
+
class curves(TUIMenu):
|
|
26177
|
+
"""
|
|
26178
|
+
No help available.
|
|
26179
|
+
"""
|
|
26180
|
+
def __init__(self, service, version, mode, path):
|
|
26181
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
26182
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
26183
|
+
self.resize = self.__class__.resize(service, version, mode, path + ["resize"])
|
|
26184
|
+
super().__init__(service, version, mode, path)
|
|
26185
|
+
class edit(TUIMethod):
|
|
26186
|
+
"""
|
|
26187
|
+
Edit curves object.
|
|
26188
|
+
"""
|
|
26189
|
+
class list_properties(TUIMethod):
|
|
26190
|
+
"""
|
|
26191
|
+
No help available.
|
|
26192
|
+
"""
|
|
26193
|
+
class resize(TUIMethod):
|
|
26194
|
+
"""
|
|
26195
|
+
No help available.
|
|
26196
|
+
"""
|
|
26197
|
+
|
|
26198
|
+
class profile_data(TUIMenu):
|
|
26199
|
+
"""
|
|
26200
|
+
No help available.
|
|
26201
|
+
"""
|
|
26202
|
+
def __init__(self, service, version, mode, path):
|
|
26203
|
+
self.axes = self.__class__.axes(service, version, mode, path + ["axes"])
|
|
26204
|
+
self.curves = self.__class__.curves(service, version, mode, path + ["curves"])
|
|
26205
|
+
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
26206
|
+
self.profile = self.__class__.profile(service, version, mode, path + ["profile"])
|
|
26207
|
+
self.x_axis_function = self.__class__.x_axis_function(service, version, mode, path + ["x_axis_function"])
|
|
26208
|
+
self.y_axis_function = self.__class__.y_axis_function(service, version, mode, path + ["y_axis_function"])
|
|
26209
|
+
super().__init__(service, version, mode, path)
|
|
26210
|
+
class plot(TUIMethod):
|
|
26211
|
+
"""
|
|
26212
|
+
No help available.
|
|
26213
|
+
"""
|
|
26214
|
+
class profile(TUIMethod):
|
|
26215
|
+
"""
|
|
26216
|
+
No help available.
|
|
26217
|
+
"""
|
|
26218
|
+
class x_axis_function(TUIMethod):
|
|
26219
|
+
"""
|
|
26220
|
+
No help available.
|
|
26221
|
+
"""
|
|
26222
|
+
class y_axis_function(TUIMethod):
|
|
26223
|
+
"""
|
|
26224
|
+
No help available.
|
|
26225
|
+
"""
|
|
26226
|
+
|
|
26227
|
+
class axes(TUIMenu):
|
|
26228
|
+
"""
|
|
26229
|
+
No help available.
|
|
26230
|
+
"""
|
|
26231
|
+
def __init__(self, service, version, mode, path):
|
|
26232
|
+
self.x = self.__class__.x(service, version, mode, path + ["x"])
|
|
26233
|
+
self.y = self.__class__.y(service, version, mode, path + ["y"])
|
|
26234
|
+
self.background_color = self.__class__.background_color(service, version, mode, path + ["background_color"])
|
|
26235
|
+
super().__init__(service, version, mode, path)
|
|
26236
|
+
class background_color(TUIMethod):
|
|
26237
|
+
"""
|
|
26238
|
+
No help available.
|
|
26239
|
+
"""
|
|
26240
|
+
|
|
26241
|
+
class x(TUIMenu):
|
|
26242
|
+
"""
|
|
26243
|
+
No help available.
|
|
26244
|
+
"""
|
|
26245
|
+
def __init__(self, service, version, mode, path):
|
|
26246
|
+
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26247
|
+
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26248
|
+
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26249
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26250
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26251
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26252
|
+
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26253
|
+
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26254
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26255
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26256
|
+
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26257
|
+
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26258
|
+
super().__init__(service, version, mode, path)
|
|
26259
|
+
class auto_range(TUIMethod):
|
|
26260
|
+
"""
|
|
26261
|
+
No help available.
|
|
26262
|
+
"""
|
|
26263
|
+
class auto_range_max(TUIMethod):
|
|
26264
|
+
"""
|
|
26265
|
+
No help available.
|
|
26266
|
+
"""
|
|
26267
|
+
class auto_range_min(TUIMethod):
|
|
26268
|
+
"""
|
|
26269
|
+
No help available.
|
|
26270
|
+
"""
|
|
26271
|
+
class label(TUIMethod):
|
|
26272
|
+
"""
|
|
26273
|
+
No help available.
|
|
26274
|
+
"""
|
|
26275
|
+
class log_scale(TUIMethod):
|
|
26276
|
+
"""
|
|
26277
|
+
No help available.
|
|
26278
|
+
"""
|
|
26279
|
+
class max(TUIMethod):
|
|
26280
|
+
"""
|
|
26281
|
+
No help available.
|
|
26282
|
+
"""
|
|
26283
|
+
class min(TUIMethod):
|
|
26284
|
+
"""
|
|
26285
|
+
No help available.
|
|
26286
|
+
"""
|
|
26287
|
+
class show_major_gridlines(TUIMethod):
|
|
26288
|
+
"""
|
|
26289
|
+
No help available.
|
|
26290
|
+
"""
|
|
26291
|
+
class show_minor_gridlines(TUIMethod):
|
|
26292
|
+
"""
|
|
26293
|
+
No help available.
|
|
26294
|
+
"""
|
|
26295
|
+
|
|
26296
|
+
class major_gridlines(TUIMenu):
|
|
26297
|
+
"""
|
|
26298
|
+
No help available.
|
|
26299
|
+
"""
|
|
26300
|
+
def __init__(self, service, version, mode, path):
|
|
26301
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26302
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26303
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26304
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26305
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26306
|
+
super().__init__(service, version, mode, path)
|
|
26307
|
+
class auto_placement(TUIMethod):
|
|
26308
|
+
"""
|
|
26309
|
+
No help available.
|
|
26310
|
+
"""
|
|
26311
|
+
class color(TUIMethod):
|
|
26312
|
+
"""
|
|
26313
|
+
No help available.
|
|
26314
|
+
"""
|
|
26315
|
+
class distance(TUIMethod):
|
|
26316
|
+
"""
|
|
26317
|
+
No help available.
|
|
26318
|
+
"""
|
|
26319
|
+
class units_or_divisions(TUIMethod):
|
|
26320
|
+
"""
|
|
26321
|
+
No help available.
|
|
26322
|
+
"""
|
|
26323
|
+
class weight(TUIMethod):
|
|
26324
|
+
"""
|
|
26325
|
+
No help available.
|
|
26326
|
+
"""
|
|
26327
|
+
|
|
26328
|
+
class minor_gridlines(TUIMenu):
|
|
26329
|
+
"""
|
|
26330
|
+
No help available.
|
|
26331
|
+
"""
|
|
26332
|
+
def __init__(self, service, version, mode, path):
|
|
26333
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26334
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26335
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26336
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26337
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26338
|
+
super().__init__(service, version, mode, path)
|
|
26339
|
+
class auto_placement(TUIMethod):
|
|
26340
|
+
"""
|
|
26341
|
+
No help available.
|
|
26342
|
+
"""
|
|
26343
|
+
class color(TUIMethod):
|
|
26344
|
+
"""
|
|
26345
|
+
No help available.
|
|
26346
|
+
"""
|
|
26347
|
+
class distance(TUIMethod):
|
|
26348
|
+
"""
|
|
26349
|
+
No help available.
|
|
26350
|
+
"""
|
|
26351
|
+
class units_or_divisions(TUIMethod):
|
|
26352
|
+
"""
|
|
26353
|
+
No help available.
|
|
26354
|
+
"""
|
|
26355
|
+
class weight(TUIMethod):
|
|
26356
|
+
"""
|
|
26357
|
+
No help available.
|
|
26358
|
+
"""
|
|
26359
|
+
|
|
26360
|
+
class number_format(TUIMenu):
|
|
26361
|
+
"""
|
|
26362
|
+
No help available.
|
|
26363
|
+
"""
|
|
26364
|
+
def __init__(self, service, version, mode, path):
|
|
26365
|
+
self.format_type = self.__class__.format_type(service, version, mode, path + ["format_type"])
|
|
26366
|
+
self.precision = self.__class__.precision(service, version, mode, path + ["precision"])
|
|
26367
|
+
super().__init__(service, version, mode, path)
|
|
26368
|
+
class format_type(TUIMethod):
|
|
26369
|
+
"""
|
|
26370
|
+
No help available.
|
|
26371
|
+
"""
|
|
26372
|
+
class precision(TUIMethod):
|
|
26373
|
+
"""
|
|
26374
|
+
No help available.
|
|
26375
|
+
"""
|
|
26376
|
+
|
|
26377
|
+
class y(TUIMenu):
|
|
26378
|
+
"""
|
|
26379
|
+
No help available.
|
|
26380
|
+
"""
|
|
26381
|
+
def __init__(self, service, version, mode, path):
|
|
26382
|
+
self.major_gridlines = self.__class__.major_gridlines(service, version, mode, path + ["major_gridlines"])
|
|
26383
|
+
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
26384
|
+
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
26385
|
+
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26386
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26387
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
26388
|
+
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
26389
|
+
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
26390
|
+
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
26391
|
+
self.min = self.__class__.min(service, version, mode, path + ["min"])
|
|
26392
|
+
self.show_major_gridlines = self.__class__.show_major_gridlines(service, version, mode, path + ["show_major_gridlines"])
|
|
26393
|
+
self.show_minor_gridlines = self.__class__.show_minor_gridlines(service, version, mode, path + ["show_minor_gridlines"])
|
|
26394
|
+
super().__init__(service, version, mode, path)
|
|
26395
|
+
class auto_range(TUIMethod):
|
|
26396
|
+
"""
|
|
26397
|
+
No help available.
|
|
26398
|
+
"""
|
|
26399
|
+
class auto_range_max(TUIMethod):
|
|
26400
|
+
"""
|
|
26401
|
+
No help available.
|
|
26402
|
+
"""
|
|
26403
|
+
class auto_range_min(TUIMethod):
|
|
26404
|
+
"""
|
|
26405
|
+
No help available.
|
|
26406
|
+
"""
|
|
26407
|
+
class label(TUIMethod):
|
|
26408
|
+
"""
|
|
26409
|
+
No help available.
|
|
26410
|
+
"""
|
|
26411
|
+
class log_scale(TUIMethod):
|
|
26412
|
+
"""
|
|
26413
|
+
No help available.
|
|
26414
|
+
"""
|
|
26415
|
+
class max(TUIMethod):
|
|
26416
|
+
"""
|
|
26417
|
+
No help available.
|
|
26418
|
+
"""
|
|
26419
|
+
class min(TUIMethod):
|
|
26420
|
+
"""
|
|
26421
|
+
No help available.
|
|
26422
|
+
"""
|
|
26423
|
+
class show_major_gridlines(TUIMethod):
|
|
26424
|
+
"""
|
|
26425
|
+
No help available.
|
|
26426
|
+
"""
|
|
26427
|
+
class show_minor_gridlines(TUIMethod):
|
|
26428
|
+
"""
|
|
26429
|
+
No help available.
|
|
26430
|
+
"""
|
|
26431
|
+
|
|
26432
|
+
class major_gridlines(TUIMenu):
|
|
26433
|
+
"""
|
|
26434
|
+
No help available.
|
|
26435
|
+
"""
|
|
26436
|
+
def __init__(self, service, version, mode, path):
|
|
26437
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26438
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26439
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26440
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26441
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26442
|
+
super().__init__(service, version, mode, path)
|
|
26443
|
+
class auto_placement(TUIMethod):
|
|
26444
|
+
"""
|
|
26445
|
+
No help available.
|
|
26446
|
+
"""
|
|
26447
|
+
class color(TUIMethod):
|
|
26448
|
+
"""
|
|
26449
|
+
No help available.
|
|
26450
|
+
"""
|
|
26451
|
+
class distance(TUIMethod):
|
|
26452
|
+
"""
|
|
26453
|
+
No help available.
|
|
26454
|
+
"""
|
|
26455
|
+
class units_or_divisions(TUIMethod):
|
|
26456
|
+
"""
|
|
26457
|
+
No help available.
|
|
26458
|
+
"""
|
|
26459
|
+
class weight(TUIMethod):
|
|
26460
|
+
"""
|
|
26461
|
+
No help available.
|
|
26462
|
+
"""
|
|
26463
|
+
|
|
26464
|
+
class minor_gridlines(TUIMenu):
|
|
26465
|
+
"""
|
|
26466
|
+
No help available.
|
|
26467
|
+
"""
|
|
26468
|
+
def __init__(self, service, version, mode, path):
|
|
26469
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
26470
|
+
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26471
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26472
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
26473
|
+
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
26474
|
+
super().__init__(service, version, mode, path)
|
|
26475
|
+
class auto_placement(TUIMethod):
|
|
26476
|
+
"""
|
|
26477
|
+
No help available.
|
|
26478
|
+
"""
|
|
26479
|
+
class color(TUIMethod):
|
|
26480
|
+
"""
|
|
26481
|
+
No help available.
|
|
26482
|
+
"""
|
|
26483
|
+
class distance(TUIMethod):
|
|
26484
|
+
"""
|
|
26485
|
+
No help available.
|
|
26486
|
+
"""
|
|
26487
|
+
class units_or_divisions(TUIMethod):
|
|
26488
|
+
"""
|
|
26489
|
+
No help available.
|
|
26490
|
+
"""
|
|
25453
26491
|
class weight(TUIMethod):
|
|
25454
26492
|
"""
|
|
25455
26493
|
No help available.
|
|
@@ -25504,6 +26542,7 @@ class main_menu(TUIMenu):
|
|
|
25504
26542
|
self.field = self.__class__.field(service, version, mode, path + ["field"])
|
|
25505
26543
|
self.geometry = self.__class__.geometry(service, version, mode, path + ["geometry"])
|
|
25506
26544
|
self.node_values = self.__class__.node_values(service, version, mode, path + ["node_values"])
|
|
26545
|
+
self.physics = self.__class__.physics(service, version, mode, path + ["physics"])
|
|
25507
26546
|
self.plot = self.__class__.plot(service, version, mode, path + ["plot"])
|
|
25508
26547
|
self.surfaces = self.__class__.surfaces(service, version, mode, path + ["surfaces"])
|
|
25509
26548
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
@@ -25521,6 +26560,10 @@ class main_menu(TUIMenu):
|
|
|
25521
26560
|
"""
|
|
25522
26561
|
No help available.
|
|
25523
26562
|
"""
|
|
26563
|
+
class physics(TUIMethod):
|
|
26564
|
+
"""
|
|
26565
|
+
No help available.
|
|
26566
|
+
"""
|
|
25524
26567
|
class plot(TUIMethod):
|
|
25525
26568
|
"""
|
|
25526
26569
|
No help available.
|
|
@@ -25561,6 +26604,8 @@ class main_menu(TUIMenu):
|
|
|
25561
26604
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25562
26605
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25563
26606
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26607
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26608
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25564
26609
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25565
26610
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25566
26611
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25572,6 +26617,14 @@ class main_menu(TUIMenu):
|
|
|
25572
26617
|
"""
|
|
25573
26618
|
No help available.
|
|
25574
26619
|
"""
|
|
26620
|
+
class auto_range_max(TUIMethod):
|
|
26621
|
+
"""
|
|
26622
|
+
No help available.
|
|
26623
|
+
"""
|
|
26624
|
+
class auto_range_min(TUIMethod):
|
|
26625
|
+
"""
|
|
26626
|
+
No help available.
|
|
26627
|
+
"""
|
|
25575
26628
|
class label(TUIMethod):
|
|
25576
26629
|
"""
|
|
25577
26630
|
No help available.
|
|
@@ -25602,13 +26655,28 @@ class main_menu(TUIMenu):
|
|
|
25602
26655
|
No help available.
|
|
25603
26656
|
"""
|
|
25604
26657
|
def __init__(self, service, version, mode, path):
|
|
26658
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25605
26659
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26660
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26661
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25606
26662
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25607
26663
|
super().__init__(service, version, mode, path)
|
|
26664
|
+
class auto_placement(TUIMethod):
|
|
26665
|
+
"""
|
|
26666
|
+
No help available.
|
|
26667
|
+
"""
|
|
25608
26668
|
class color(TUIMethod):
|
|
25609
26669
|
"""
|
|
25610
26670
|
No help available.
|
|
25611
26671
|
"""
|
|
26672
|
+
class distance(TUIMethod):
|
|
26673
|
+
"""
|
|
26674
|
+
No help available.
|
|
26675
|
+
"""
|
|
26676
|
+
class units_or_divisions(TUIMethod):
|
|
26677
|
+
"""
|
|
26678
|
+
No help available.
|
|
26679
|
+
"""
|
|
25612
26680
|
class weight(TUIMethod):
|
|
25613
26681
|
"""
|
|
25614
26682
|
No help available.
|
|
@@ -25619,13 +26687,28 @@ class main_menu(TUIMenu):
|
|
|
25619
26687
|
No help available.
|
|
25620
26688
|
"""
|
|
25621
26689
|
def __init__(self, service, version, mode, path):
|
|
26690
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25622
26691
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26692
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26693
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25623
26694
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25624
26695
|
super().__init__(service, version, mode, path)
|
|
26696
|
+
class auto_placement(TUIMethod):
|
|
26697
|
+
"""
|
|
26698
|
+
No help available.
|
|
26699
|
+
"""
|
|
25625
26700
|
class color(TUIMethod):
|
|
25626
26701
|
"""
|
|
25627
26702
|
No help available.
|
|
25628
26703
|
"""
|
|
26704
|
+
class distance(TUIMethod):
|
|
26705
|
+
"""
|
|
26706
|
+
No help available.
|
|
26707
|
+
"""
|
|
26708
|
+
class units_or_divisions(TUIMethod):
|
|
26709
|
+
"""
|
|
26710
|
+
No help available.
|
|
26711
|
+
"""
|
|
25629
26712
|
class weight(TUIMethod):
|
|
25630
26713
|
"""
|
|
25631
26714
|
No help available.
|
|
@@ -25657,6 +26740,8 @@ class main_menu(TUIMenu):
|
|
|
25657
26740
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
25658
26741
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
25659
26742
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
26743
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
26744
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
25660
26745
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
25661
26746
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
25662
26747
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -25668,6 +26753,14 @@ class main_menu(TUIMenu):
|
|
|
25668
26753
|
"""
|
|
25669
26754
|
No help available.
|
|
25670
26755
|
"""
|
|
26756
|
+
class auto_range_max(TUIMethod):
|
|
26757
|
+
"""
|
|
26758
|
+
No help available.
|
|
26759
|
+
"""
|
|
26760
|
+
class auto_range_min(TUIMethod):
|
|
26761
|
+
"""
|
|
26762
|
+
No help available.
|
|
26763
|
+
"""
|
|
25671
26764
|
class label(TUIMethod):
|
|
25672
26765
|
"""
|
|
25673
26766
|
No help available.
|
|
@@ -25698,13 +26791,28 @@ class main_menu(TUIMenu):
|
|
|
25698
26791
|
No help available.
|
|
25699
26792
|
"""
|
|
25700
26793
|
def __init__(self, service, version, mode, path):
|
|
26794
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25701
26795
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26796
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26797
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25702
26798
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25703
26799
|
super().__init__(service, version, mode, path)
|
|
26800
|
+
class auto_placement(TUIMethod):
|
|
26801
|
+
"""
|
|
26802
|
+
No help available.
|
|
26803
|
+
"""
|
|
25704
26804
|
class color(TUIMethod):
|
|
25705
26805
|
"""
|
|
25706
26806
|
No help available.
|
|
25707
26807
|
"""
|
|
26808
|
+
class distance(TUIMethod):
|
|
26809
|
+
"""
|
|
26810
|
+
No help available.
|
|
26811
|
+
"""
|
|
26812
|
+
class units_or_divisions(TUIMethod):
|
|
26813
|
+
"""
|
|
26814
|
+
No help available.
|
|
26815
|
+
"""
|
|
25708
26816
|
class weight(TUIMethod):
|
|
25709
26817
|
"""
|
|
25710
26818
|
No help available.
|
|
@@ -25715,13 +26823,28 @@ class main_menu(TUIMenu):
|
|
|
25715
26823
|
No help available.
|
|
25716
26824
|
"""
|
|
25717
26825
|
def __init__(self, service, version, mode, path):
|
|
26826
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
25718
26827
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
26828
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
26829
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
25719
26830
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
25720
26831
|
super().__init__(service, version, mode, path)
|
|
26832
|
+
class auto_placement(TUIMethod):
|
|
26833
|
+
"""
|
|
26834
|
+
No help available.
|
|
26835
|
+
"""
|
|
25721
26836
|
class color(TUIMethod):
|
|
25722
26837
|
"""
|
|
25723
26838
|
No help available.
|
|
25724
26839
|
"""
|
|
26840
|
+
class distance(TUIMethod):
|
|
26841
|
+
"""
|
|
26842
|
+
No help available.
|
|
26843
|
+
"""
|
|
26844
|
+
class units_or_divisions(TUIMethod):
|
|
26845
|
+
"""
|
|
26846
|
+
No help available.
|
|
26847
|
+
"""
|
|
25725
26848
|
class weight(TUIMethod):
|
|
25726
26849
|
"""
|
|
25727
26850
|
No help available.
|
|
@@ -25932,14 +27055,20 @@ class main_menu(TUIMenu):
|
|
|
25932
27055
|
def __init__(self, service, version, mode, path):
|
|
25933
27056
|
self.histogram_options = self.__class__.histogram_options(service, version, mode, path + ["histogram_options"])
|
|
25934
27057
|
self.histogram_parameters = self.__class__.histogram_parameters(service, version, mode, path + ["histogram_parameters"])
|
|
25935
|
-
self.
|
|
27058
|
+
self.histogram_selections = self.__class__.histogram_selections(service, version, mode, path + ["histogram_selections"])
|
|
27059
|
+
self.plot_write_histogram = self.__class__.plot_write_histogram(service, version, mode, path + ["plot_write_histogram"])
|
|
25936
27060
|
self.reduction = self.__class__.reduction(service, version, mode, path + ["reduction"])
|
|
27061
|
+
self.compute_range = self.__class__.compute_range(service, version, mode, path + ["compute_range"])
|
|
25937
27062
|
self.compute_sample = self.__class__.compute_sample(service, version, mode, path + ["compute_sample"])
|
|
25938
27063
|
self.delete_sample = self.__class__.delete_sample(service, version, mode, path + ["delete_sample"])
|
|
25939
27064
|
self.dpm_sample_contour_plots = self.__class__.dpm_sample_contour_plots(service, version, mode, path + ["dpm_sample_contour_plots"])
|
|
25940
27065
|
self.list_samples = self.__class__.list_samples(service, version, mode, path + ["list_samples"])
|
|
25941
27066
|
self.read_sample_file = self.__class__.read_sample_file(service, version, mode, path + ["read_sample_file"])
|
|
25942
27067
|
super().__init__(service, version, mode, path)
|
|
27068
|
+
class compute_range(TUIMethod):
|
|
27069
|
+
"""
|
|
27070
|
+
No help available.
|
|
27071
|
+
"""
|
|
25943
27072
|
class compute_sample(TUIMethod):
|
|
25944
27073
|
"""
|
|
25945
27074
|
No help available.
|
|
@@ -25968,7 +27097,7 @@ class main_menu(TUIMenu):
|
|
|
25968
27097
|
def __init__(self, service, version, mode, path):
|
|
25969
27098
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
25970
27099
|
self.correlation = self.__class__.correlation(service, version, mode, path + ["correlation"])
|
|
25971
|
-
self.
|
|
27100
|
+
self.cumulative_curve = self.__class__.cumulative_curve(service, version, mode, path + ["cumulative_curve"])
|
|
25972
27101
|
self.diameter_statistics = self.__class__.diameter_statistics(service, version, mode, path + ["diameter_statistics"])
|
|
25973
27102
|
self.histogram_mode = self.__class__.histogram_mode(service, version, mode, path + ["histogram_mode"])
|
|
25974
27103
|
self.logarithmic = self.__class__.logarithmic(service, version, mode, path + ["logarithmic"])
|
|
@@ -25984,7 +27113,7 @@ class main_menu(TUIMenu):
|
|
|
25984
27113
|
"""
|
|
25985
27114
|
No help available.
|
|
25986
27115
|
"""
|
|
25987
|
-
class
|
|
27116
|
+
class cumulative_curve(TUIMethod):
|
|
25988
27117
|
"""
|
|
25989
27118
|
No help available.
|
|
25990
27119
|
"""
|
|
@@ -26035,19 +27164,56 @@ class main_menu(TUIMenu):
|
|
|
26035
27164
|
No help available.
|
|
26036
27165
|
"""
|
|
26037
27166
|
|
|
26038
|
-
class
|
|
27167
|
+
class histogram_selections(TUIMenu):
|
|
26039
27168
|
"""
|
|
26040
27169
|
No help available.
|
|
26041
27170
|
"""
|
|
26042
27171
|
def __init__(self, service, version, mode, path):
|
|
26043
|
-
self.
|
|
26044
|
-
self.
|
|
27172
|
+
self.correlation_variable = self.__class__.correlation_variable(service, version, mode, path + ["correlation_variable"])
|
|
27173
|
+
self.sample = self.__class__.sample(service, version, mode, path + ["sample"])
|
|
27174
|
+
self.variable_to_sample = self.__class__.variable_to_sample(service, version, mode, path + ["variable_to_sample"])
|
|
27175
|
+
self.weighting_variable = self.__class__.weighting_variable(service, version, mode, path + ["weighting_variable"])
|
|
26045
27176
|
super().__init__(service, version, mode, path)
|
|
26046
|
-
class
|
|
27177
|
+
class correlation_variable(TUIMethod):
|
|
26047
27178
|
"""
|
|
26048
27179
|
No help available.
|
|
26049
27180
|
"""
|
|
26050
|
-
class
|
|
27181
|
+
class sample(TUIMethod):
|
|
27182
|
+
"""
|
|
27183
|
+
No help available.
|
|
27184
|
+
"""
|
|
27185
|
+
class variable_to_sample(TUIMethod):
|
|
27186
|
+
"""
|
|
27187
|
+
No help available.
|
|
27188
|
+
"""
|
|
27189
|
+
class weighting_variable(TUIMethod):
|
|
27190
|
+
"""
|
|
27191
|
+
No help available.
|
|
27192
|
+
"""
|
|
27193
|
+
|
|
27194
|
+
class plot_write_histogram(TUIMenu):
|
|
27195
|
+
"""
|
|
27196
|
+
No help available.
|
|
27197
|
+
"""
|
|
27198
|
+
def __init__(self, service, version, mode, path):
|
|
27199
|
+
self.plot_hist_with_args = self.__class__.plot_hist_with_args(service, version, mode, path + ["plot_hist_with_args"])
|
|
27200
|
+
self.plot_histogram = self.__class__.plot_histogram(service, version, mode, path + ["plot_histogram"])
|
|
27201
|
+
self.write_hist_with_args = self.__class__.write_hist_with_args(service, version, mode, path + ["write_hist_with_args"])
|
|
27202
|
+
self.write_histogram = self.__class__.write_histogram(service, version, mode, path + ["write_histogram"])
|
|
27203
|
+
super().__init__(service, version, mode, path)
|
|
27204
|
+
class plot_hist_with_args(TUIMethod):
|
|
27205
|
+
"""
|
|
27206
|
+
No help available.
|
|
27207
|
+
"""
|
|
27208
|
+
class plot_histogram(TUIMethod):
|
|
27209
|
+
"""
|
|
27210
|
+
No help available.
|
|
27211
|
+
"""
|
|
27212
|
+
class write_hist_with_args(TUIMethod):
|
|
27213
|
+
"""
|
|
27214
|
+
No help available.
|
|
27215
|
+
"""
|
|
27216
|
+
class write_histogram(TUIMethod):
|
|
26051
27217
|
"""
|
|
26052
27218
|
No help available.
|
|
26053
27219
|
"""
|
|
@@ -26132,12 +27298,17 @@ class main_menu(TUIMenu):
|
|
|
26132
27298
|
No help available.
|
|
26133
27299
|
"""
|
|
26134
27300
|
def __init__(self, service, version, mode, path):
|
|
27301
|
+
self.accumulate_erosion_accretion_rates = self.__class__.accumulate_erosion_accretion_rates(service, version, mode, path + ["accumulate_erosion_accretion_rates"])
|
|
26135
27302
|
self.compute = self.__class__.compute(service, version, mode, path + ["compute"])
|
|
26136
27303
|
self.output_udf = self.__class__.output_udf(service, version, mode, path + ["output_udf"])
|
|
26137
27304
|
self.sort_sample_files = self.__class__.sort_sample_files(service, version, mode, path + ["sort_sample_files"])
|
|
26138
27305
|
self.start_file_write = self.__class__.start_file_write(service, version, mode, path + ["start_file_write"])
|
|
26139
27306
|
self.stop_file_write = self.__class__.stop_file_write(service, version, mode, path + ["stop_file_write"])
|
|
26140
27307
|
super().__init__(service, version, mode, path)
|
|
27308
|
+
class accumulate_erosion_accretion_rates(TUIMethod):
|
|
27309
|
+
"""
|
|
27310
|
+
No help available.
|
|
27311
|
+
"""
|
|
26141
27312
|
class compute(TUIMethod):
|
|
26142
27313
|
"""
|
|
26143
27314
|
No help available.
|
|
@@ -26769,8 +27940,10 @@ class main_menu(TUIMenu):
|
|
|
26769
27940
|
self.create_multiple_iso_surfaces = self.__class__.create_multiple_iso_surfaces(service, version, mode, path + ["create_multiple_iso_surfaces"])
|
|
26770
27941
|
self.create_multiple_plane_surfaces = self.__class__.create_multiple_plane_surfaces(service, version, mode, path + ["create_multiple_plane_surfaces"])
|
|
26771
27942
|
self.create_multiple_zone_surfaces = self.__class__.create_multiple_zone_surfaces(service, version, mode, path + ["create_multiple_zone_surfaces"])
|
|
27943
|
+
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
26772
27944
|
self.reset_zone_surfaces = self.__class__.reset_zone_surfaces(service, version, mode, path + ["reset_zone_surfaces"])
|
|
26773
27945
|
self.set_rendering_priority = self.__class__.set_rendering_priority(service, version, mode, path + ["set_rendering_priority"])
|
|
27946
|
+
self.split_surface = self.__class__.split_surface(service, version, mode, path + ["split_surface"])
|
|
26774
27947
|
self.ungroup_surfaces = self.__class__.ungroup_surfaces(service, version, mode, path + ["ungroup_surfaces"])
|
|
26775
27948
|
super().__init__(service, version, mode, path)
|
|
26776
27949
|
class create_group_surfaces(TUIMethod):
|
|
@@ -26789,6 +27962,10 @@ class main_menu(TUIMenu):
|
|
|
26789
27962
|
"""
|
|
26790
27963
|
No help available.
|
|
26791
27964
|
"""
|
|
27965
|
+
class external_surface(TUIMethod):
|
|
27966
|
+
"""
|
|
27967
|
+
No help available.
|
|
27968
|
+
"""
|
|
26792
27969
|
class reset_zone_surfaces(TUIMethod):
|
|
26793
27970
|
"""
|
|
26794
27971
|
No help available.
|
|
@@ -26797,6 +27974,10 @@ class main_menu(TUIMenu):
|
|
|
26797
27974
|
"""
|
|
26798
27975
|
No help available.
|
|
26799
27976
|
"""
|
|
27977
|
+
class split_surface(TUIMethod):
|
|
27978
|
+
"""
|
|
27979
|
+
No help available.
|
|
27980
|
+
"""
|
|
26800
27981
|
class ungroup_surfaces(TUIMethod):
|
|
26801
27982
|
"""
|
|
26802
27983
|
No help available.
|
|
@@ -28200,6 +29381,7 @@ class main_menu(TUIMenu):
|
|
|
28200
29381
|
self.pseudo_time_explicit_relaxation_factor = self.__class__.pseudo_time_explicit_relaxation_factor(service, version, mode, path + ["pseudo_time_explicit_relaxation_factor"])
|
|
28201
29382
|
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
29383
|
self.relaxation_factor = self.__class__.relaxation_factor(service, version, mode, path + ["relaxation_factor"])
|
|
29384
|
+
self.residual_smoothing = self.__class__.residual_smoothing(service, version, mode, path + ["residual_smoothing"])
|
|
28203
29385
|
self.under_relaxation = self.__class__.under_relaxation(service, version, mode, path + ["under_relaxation"])
|
|
28204
29386
|
self.zonal_pbns_solution_controls = self.__class__.zonal_pbns_solution_controls(service, version, mode, path + ["zonal_pbns_solution_controls"])
|
|
28205
29387
|
self.courant_number = self.__class__.courant_number(service, version, mode, path + ["courant_number"])
|
|
@@ -28462,7 +29644,49 @@ class main_menu(TUIMenu):
|
|
|
28462
29644
|
"""
|
|
28463
29645
|
class edit(TUIMethod):
|
|
28464
29646
|
"""
|
|
28465
|
-
Edit nci-secondary-gradient object.
|
|
29647
|
+
Edit nci-secondary-gradient object.
|
|
29648
|
+
"""
|
|
29649
|
+
class list(TUIMethod):
|
|
29650
|
+
"""
|
|
29651
|
+
No help available.
|
|
29652
|
+
"""
|
|
29653
|
+
class list_properties(TUIMethod):
|
|
29654
|
+
"""
|
|
29655
|
+
No help available.
|
|
29656
|
+
"""
|
|
29657
|
+
class make_a_copy(TUIMethod):
|
|
29658
|
+
"""
|
|
29659
|
+
No help available.
|
|
29660
|
+
"""
|
|
29661
|
+
class rename(TUIMethod):
|
|
29662
|
+
"""
|
|
29663
|
+
No help available.
|
|
29664
|
+
"""
|
|
29665
|
+
|
|
29666
|
+
class pseudo_time_method_usage(TUIMenu):
|
|
29667
|
+
"""
|
|
29668
|
+
No help available.
|
|
29669
|
+
"""
|
|
29670
|
+
def __init__(self, service, version, mode, path):
|
|
29671
|
+
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
29672
|
+
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
29673
|
+
self.edit = self.__class__.edit(service, version, mode, path + ["edit"])
|
|
29674
|
+
self.list = self.__class__.list(service, version, mode, path + ["list"])
|
|
29675
|
+
self.list_properties = self.__class__.list_properties(service, version, mode, path + ["list_properties"])
|
|
29676
|
+
self.make_a_copy = self.__class__.make_a_copy(service, version, mode, path + ["make_a_copy"])
|
|
29677
|
+
self.rename = self.__class__.rename(service, version, mode, path + ["rename"])
|
|
29678
|
+
super().__init__(service, version, mode, path)
|
|
29679
|
+
class create(TUIMethod):
|
|
29680
|
+
"""
|
|
29681
|
+
No help available.
|
|
29682
|
+
"""
|
|
29683
|
+
class delete(TUIMethod):
|
|
29684
|
+
"""
|
|
29685
|
+
No help available.
|
|
29686
|
+
"""
|
|
29687
|
+
class edit(TUIMethod):
|
|
29688
|
+
"""
|
|
29689
|
+
Edit pseudo-time-method-usage object.
|
|
28466
29690
|
"""
|
|
28467
29691
|
class list(TUIMethod):
|
|
28468
29692
|
"""
|
|
@@ -28481,99 +29705,6 @@ class main_menu(TUIMenu):
|
|
|
28481
29705
|
No help available.
|
|
28482
29706
|
"""
|
|
28483
29707
|
|
|
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
29708
|
class spatial_discretization_limiter(TUIMenu):
|
|
28578
29709
|
"""
|
|
28579
29710
|
No help available.
|
|
@@ -29618,6 +30749,23 @@ class main_menu(TUIMenu):
|
|
|
29618
30749
|
No help available.
|
|
29619
30750
|
"""
|
|
29620
30751
|
|
|
30752
|
+
class residual_smoothing(TUIMenu):
|
|
30753
|
+
"""
|
|
30754
|
+
No help available.
|
|
30755
|
+
"""
|
|
30756
|
+
def __init__(self, service, version, mode, path):
|
|
30757
|
+
self.residual_smoothing_factor = self.__class__.residual_smoothing_factor(service, version, mode, path + ["residual_smoothing_factor"])
|
|
30758
|
+
self.residual_smoothing_iter_count = self.__class__.residual_smoothing_iter_count(service, version, mode, path + ["residual_smoothing_iter_count"])
|
|
30759
|
+
super().__init__(service, version, mode, path)
|
|
30760
|
+
class residual_smoothing_factor(TUIMethod):
|
|
30761
|
+
"""
|
|
30762
|
+
No help available.
|
|
30763
|
+
"""
|
|
30764
|
+
class residual_smoothing_iter_count(TUIMethod):
|
|
30765
|
+
"""
|
|
30766
|
+
No help available.
|
|
30767
|
+
"""
|
|
30768
|
+
|
|
29621
30769
|
class under_relaxation(TUIMenu):
|
|
29622
30770
|
"""
|
|
29623
30771
|
No help available.
|
|
@@ -30301,29 +31449,24 @@ class main_menu(TUIMenu):
|
|
|
30301
31449
|
self.phase_based_vof_discretization = self.__class__.phase_based_vof_discretization(service, version, mode, path + ["phase_based_vof_discretization"])
|
|
30302
31450
|
self.pseudo_time_method = self.__class__.pseudo_time_method(service, version, mode, path + ["pseudo_time_method"])
|
|
30303
31451
|
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
31452
|
self.spatial_discretization = self.__class__.spatial_discretization(service, version, mode, path + ["spatial_discretization"])
|
|
31453
|
+
self.spatial_discretization_parameters = self.__class__.spatial_discretization_parameters(service, version, mode, path + ["spatial_discretization_parameters"])
|
|
30306
31454
|
self.vof_numerics = self.__class__.vof_numerics(service, version, mode, path + ["vof_numerics"])
|
|
30307
31455
|
self.warped_face_gradient_correction = self.__class__.warped_face_gradient_correction(service, version, mode, path + ["warped_face_gradient_correction"])
|
|
30308
31456
|
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
31457
|
self.frozen_flux = self.__class__.frozen_flux(service, version, mode, path + ["frozen_flux"])
|
|
30311
31458
|
self.nita = self.__class__.nita(service, version, mode, path + ["nita"])
|
|
30312
31459
|
self.reduced_rank_extrapolation = self.__class__.reduced_rank_extrapolation(service, version, mode, path + ["reduced_rank_extrapolation"])
|
|
31460
|
+
self.set_optimized_les_numerics = self.__class__.set_optimized_les_numerics(service, version, mode, path + ["set_optimized_les_numerics"])
|
|
30313
31461
|
self.set_solution_methods_to_default = self.__class__.set_solution_methods_to_default(service, version, mode, path + ["set_solution_methods_to_default"])
|
|
30314
31462
|
self.species_disc_together = self.__class__.species_disc_together(service, version, mode, path + ["species_disc_together"])
|
|
30315
31463
|
self.transient_formulation = self.__class__.transient_formulation(service, version, mode, path + ["transient_formulation"])
|
|
30316
|
-
self.unsteady_global_time = self.__class__.unsteady_global_time(service, version, mode, path + ["unsteady_global_time"])
|
|
30317
31464
|
self.use_limiter_in_time = self.__class__.use_limiter_in_time(service, version, mode, path + ["use_limiter_in_time"])
|
|
30318
31465
|
super().__init__(service, version, mode, path)
|
|
30319
31466
|
class accelerated_non_iterative_time_marching(TUIMethod):
|
|
30320
31467
|
"""
|
|
30321
31468
|
No help available.
|
|
30322
31469
|
"""
|
|
30323
|
-
class bcd_boundedness(TUIMethod):
|
|
30324
|
-
"""
|
|
30325
|
-
No help available.
|
|
30326
|
-
"""
|
|
30327
31470
|
class frozen_flux(TUIMethod):
|
|
30328
31471
|
"""
|
|
30329
31472
|
No help available.
|
|
@@ -30336,19 +31479,19 @@ class main_menu(TUIMenu):
|
|
|
30336
31479
|
"""
|
|
30337
31480
|
No help available.
|
|
30338
31481
|
"""
|
|
30339
|
-
class
|
|
31482
|
+
class set_optimized_les_numerics(TUIMethod):
|
|
30340
31483
|
"""
|
|
30341
31484
|
No help available.
|
|
30342
31485
|
"""
|
|
30343
|
-
class
|
|
31486
|
+
class set_solution_methods_to_default(TUIMethod):
|
|
30344
31487
|
"""
|
|
30345
31488
|
No help available.
|
|
30346
31489
|
"""
|
|
30347
|
-
class
|
|
31490
|
+
class species_disc_together(TUIMethod):
|
|
30348
31491
|
"""
|
|
30349
31492
|
No help available.
|
|
30350
31493
|
"""
|
|
30351
|
-
class
|
|
31494
|
+
class transient_formulation(TUIMethod):
|
|
30352
31495
|
"""
|
|
30353
31496
|
No help available.
|
|
30354
31497
|
"""
|
|
@@ -30376,6 +31519,7 @@ class main_menu(TUIMenu):
|
|
|
30376
31519
|
def __init__(self, service, version, mode, path):
|
|
30377
31520
|
self.casm_cutoff_multiplier = self.__class__.casm_cutoff_multiplier(service, version, mode, path + ["casm_cutoff_multiplier"])
|
|
30378
31521
|
self.convergence_acceleration_type = self.__class__.convergence_acceleration_type(service, version, mode, path + ["convergence_acceleration_type"])
|
|
31522
|
+
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30379
31523
|
super().__init__(service, version, mode, path)
|
|
30380
31524
|
class casm_cutoff_multiplier(TUIMethod):
|
|
30381
31525
|
"""
|
|
@@ -30385,6 +31529,10 @@ class main_menu(TUIMenu):
|
|
|
30385
31529
|
"""
|
|
30386
31530
|
No help available.
|
|
30387
31531
|
"""
|
|
31532
|
+
class enable(TUIMethod):
|
|
31533
|
+
"""
|
|
31534
|
+
No help available.
|
|
31535
|
+
"""
|
|
30388
31536
|
|
|
30389
31537
|
class divergence_prevention(TUIMenu):
|
|
30390
31538
|
"""
|
|
@@ -30408,73 +31556,52 @@ class main_menu(TUIMenu):
|
|
|
30408
31556
|
No help available.
|
|
30409
31557
|
"""
|
|
30410
31558
|
def __init__(self, service, version, mode, path):
|
|
30411
|
-
self.
|
|
30412
|
-
self.
|
|
31559
|
+
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"])
|
|
31560
|
+
self.disable_rhie_chow_flux = self.__class__.disable_rhie_chow_flux(service, version, mode, path + ["disable_rhie_chow_flux"])
|
|
31561
|
+
self.first_to_second_order_blending = self.__class__.first_to_second_order_blending(service, version, mode, path + ["first_to_second_order_blending"])
|
|
31562
|
+
self.implicit_bodyforce_treatment = self.__class__.implicit_bodyforce_treatment(service, version, mode, path + ["implicit_bodyforce_treatment"])
|
|
31563
|
+
self.physical_velocity_formulation = self.__class__.physical_velocity_formulation(service, version, mode, path + ["physical_velocity_formulation"])
|
|
31564
|
+
self.presto_pressure_scheme = self.__class__.presto_pressure_scheme(service, version, mode, path + ["presto_pressure_scheme"])
|
|
30413
31565
|
self.reaction_source_term_relaxation_factor = self.__class__.reaction_source_term_relaxation_factor(service, version, mode, path + ["reaction_source_term_relaxation_factor"])
|
|
30414
31566
|
self.reactions = self.__class__.reactions(service, version, mode, path + ["reactions"])
|
|
31567
|
+
self.velocity_formulation = self.__class__.velocity_formulation(service, version, mode, path + ["velocity_formulation"])
|
|
30415
31568
|
super().__init__(service, version, mode, path)
|
|
30416
|
-
class
|
|
31569
|
+
class alternate_diffusion_for_porous_region_solids(TUIMethod):
|
|
30417
31570
|
"""
|
|
30418
31571
|
No help available.
|
|
30419
31572
|
"""
|
|
30420
|
-
class
|
|
31573
|
+
class disable_rhie_chow_flux(TUIMethod):
|
|
30421
31574
|
"""
|
|
30422
31575
|
No help available.
|
|
30423
31576
|
"""
|
|
30424
|
-
|
|
30425
|
-
class numerics_dbns(TUIMenu):
|
|
31577
|
+
class first_to_second_order_blending(TUIMethod):
|
|
30426
31578
|
"""
|
|
30427
31579
|
No help available.
|
|
30428
31580
|
"""
|
|
30429
|
-
|
|
30430
|
-
|
|
30431
|
-
|
|
30432
|
-
|
|
30433
|
-
|
|
30434
|
-
|
|
30435
|
-
|
|
30436
|
-
|
|
30437
|
-
class
|
|
31581
|
+
class implicit_bodyforce_treatment(TUIMethod):
|
|
31582
|
+
"""
|
|
31583
|
+
No help available.
|
|
31584
|
+
"""
|
|
31585
|
+
class physical_velocity_formulation(TUIMethod):
|
|
31586
|
+
"""
|
|
31587
|
+
No help available.
|
|
31588
|
+
"""
|
|
31589
|
+
class presto_pressure_scheme(TUIMethod):
|
|
31590
|
+
"""
|
|
31591
|
+
No help available.
|
|
31592
|
+
"""
|
|
31593
|
+
class reaction_source_term_relaxation_factor(TUIMethod):
|
|
31594
|
+
"""
|
|
31595
|
+
No help available.
|
|
31596
|
+
"""
|
|
31597
|
+
class reactions(TUIMethod):
|
|
31598
|
+
"""
|
|
31599
|
+
No help available.
|
|
31600
|
+
"""
|
|
31601
|
+
class velocity_formulation(TUIMethod):
|
|
30438
31602
|
"""
|
|
30439
31603
|
No help available.
|
|
30440
31604
|
"""
|
|
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
31605
|
|
|
30479
31606
|
class high_order_term_relaxation(TUIMenu):
|
|
30480
31607
|
"""
|
|
@@ -30510,6 +31637,7 @@ class main_menu(TUIMenu):
|
|
|
30510
31637
|
def __init__(self, service, version, mode, path):
|
|
30511
31638
|
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
30512
31639
|
self.expert = self.__class__.expert(service, version, mode, path + ["expert"])
|
|
31640
|
+
self.robust_fluxes = self.__class__.robust_fluxes(service, version, mode, path + ["robust_fluxes"])
|
|
30513
31641
|
self.visualize_pressure_discontinuity_sensor = self.__class__.visualize_pressure_discontinuity_sensor(service, version, mode, path + ["visualize_pressure_discontinuity_sensor"])
|
|
30514
31642
|
super().__init__(service, version, mode, path)
|
|
30515
31643
|
class enable(TUIMethod):
|
|
@@ -30520,6 +31648,10 @@ class main_menu(TUIMenu):
|
|
|
30520
31648
|
"""
|
|
30521
31649
|
No help available.
|
|
30522
31650
|
"""
|
|
31651
|
+
class robust_fluxes(TUIMethod):
|
|
31652
|
+
"""
|
|
31653
|
+
No help available.
|
|
31654
|
+
"""
|
|
30523
31655
|
class visualize_pressure_discontinuity_sensor(TUIMethod):
|
|
30524
31656
|
"""
|
|
30525
31657
|
No help available.
|
|
@@ -30827,7 +31959,7 @@ class main_menu(TUIMenu):
|
|
|
30827
31959
|
def __init__(self, service, version, mode, path):
|
|
30828
31960
|
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
31961
|
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.
|
|
31962
|
+
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
31963
|
super().__init__(service, version, mode, path)
|
|
30832
31964
|
class old_default_of_operating_density_method(TUIMethod):
|
|
30833
31965
|
"""
|
|
@@ -30837,7 +31969,7 @@ class main_menu(TUIMenu):
|
|
|
30837
31969
|
"""
|
|
30838
31970
|
No help available.
|
|
30839
31971
|
"""
|
|
30840
|
-
class
|
|
31972
|
+
class old_variant_of_presto_for_cases_using_structured_mesh(TUIMethod):
|
|
30841
31973
|
"""
|
|
30842
31974
|
No help available.
|
|
30843
31975
|
"""
|
|
@@ -31334,7 +32466,7 @@ class main_menu(TUIMenu):
|
|
|
31334
32466
|
No help available.
|
|
31335
32467
|
"""
|
|
31336
32468
|
def __init__(self, service, version, mode, path):
|
|
31337
|
-
self.
|
|
32469
|
+
self.boundary_treatment = self.__class__.boundary_treatment(service, version, mode, path + ["boundary_treatment"])
|
|
31338
32470
|
self.density_func_options = self.__class__.density_func_options(service, version, mode, path + ["density_func_options"])
|
|
31339
32471
|
self.exponent_density_func = self.__class__.exponent_density_func(service, version, mode, path + ["exponent_density_func"])
|
|
31340
32472
|
self.exponent_smoothing_func = self.__class__.exponent_smoothing_func(service, version, mode, path + ["exponent_smoothing_func"])
|
|
@@ -31343,7 +32475,7 @@ class main_menu(TUIMenu):
|
|
|
31343
32475
|
self.sm_relax_factor = self.__class__.sm_relax_factor(service, version, mode, path + ["sm_relax_factor"])
|
|
31344
32476
|
self.viscous_func_options = self.__class__.viscous_func_options(service, version, mode, path + ["viscous_func_options"])
|
|
31345
32477
|
super().__init__(service, version, mode, path)
|
|
31346
|
-
class
|
|
32478
|
+
class boundary_treatment(TUIMethod):
|
|
31347
32479
|
"""
|
|
31348
32480
|
No help available.
|
|
31349
32481
|
"""
|
|
@@ -31640,23 +32772,6 @@ class main_menu(TUIMenu):
|
|
|
31640
32772
|
No help available.
|
|
31641
32773
|
"""
|
|
31642
32774
|
|
|
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
32775
|
class spatial_discretization(TUIMenu):
|
|
31661
32776
|
"""
|
|
31662
32777
|
No help available.
|
|
@@ -31712,6 +32827,36 @@ class main_menu(TUIMenu):
|
|
|
31712
32827
|
No help available.
|
|
31713
32828
|
"""
|
|
31714
32829
|
|
|
32830
|
+
class spatial_discretization_parameters(TUIMenu):
|
|
32831
|
+
"""
|
|
32832
|
+
No help available.
|
|
32833
|
+
"""
|
|
32834
|
+
def __init__(self, service, version, mode, path):
|
|
32835
|
+
self.low_diffusion_central = self.__class__.low_diffusion_central(service, version, mode, path + ["low_diffusion_central"])
|
|
32836
|
+
self.bcd_boundedness = self.__class__.bcd_boundedness(service, version, mode, path + ["bcd_boundedness"])
|
|
32837
|
+
super().__init__(service, version, mode, path)
|
|
32838
|
+
class bcd_boundedness(TUIMethod):
|
|
32839
|
+
"""
|
|
32840
|
+
No help available.
|
|
32841
|
+
"""
|
|
32842
|
+
|
|
32843
|
+
class low_diffusion_central(TUIMenu):
|
|
32844
|
+
"""
|
|
32845
|
+
No help available.
|
|
32846
|
+
"""
|
|
32847
|
+
def __init__(self, service, version, mode, path):
|
|
32848
|
+
self.diffusion_coefficient = self.__class__.diffusion_coefficient(service, version, mode, path + ["diffusion_coefficient"])
|
|
32849
|
+
self.shield_bl_distance = self.__class__.shield_bl_distance(service, version, mode, path + ["shield_bl_distance"])
|
|
32850
|
+
super().__init__(service, version, mode, path)
|
|
32851
|
+
class diffusion_coefficient(TUIMethod):
|
|
32852
|
+
"""
|
|
32853
|
+
No help available.
|
|
32854
|
+
"""
|
|
32855
|
+
class shield_bl_distance(TUIMethod):
|
|
32856
|
+
"""
|
|
32857
|
+
No help available.
|
|
32858
|
+
"""
|
|
32859
|
+
|
|
31715
32860
|
class vof_numerics(TUIMenu):
|
|
31716
32861
|
"""
|
|
31717
32862
|
No help available.
|
|
@@ -31995,6 +33140,8 @@ class main_menu(TUIMenu):
|
|
|
31995
33140
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
31996
33141
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
31997
33142
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33143
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
33144
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
31998
33145
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
31999
33146
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
32000
33147
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -32006,6 +33153,14 @@ class main_menu(TUIMenu):
|
|
|
32006
33153
|
"""
|
|
32007
33154
|
No help available.
|
|
32008
33155
|
"""
|
|
33156
|
+
class auto_range_max(TUIMethod):
|
|
33157
|
+
"""
|
|
33158
|
+
No help available.
|
|
33159
|
+
"""
|
|
33160
|
+
class auto_range_min(TUIMethod):
|
|
33161
|
+
"""
|
|
33162
|
+
No help available.
|
|
33163
|
+
"""
|
|
32009
33164
|
class label(TUIMethod):
|
|
32010
33165
|
"""
|
|
32011
33166
|
No help available.
|
|
@@ -32036,13 +33191,28 @@ class main_menu(TUIMenu):
|
|
|
32036
33191
|
No help available.
|
|
32037
33192
|
"""
|
|
32038
33193
|
def __init__(self, service, version, mode, path):
|
|
33194
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32039
33195
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33196
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33197
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32040
33198
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32041
33199
|
super().__init__(service, version, mode, path)
|
|
33200
|
+
class auto_placement(TUIMethod):
|
|
33201
|
+
"""
|
|
33202
|
+
No help available.
|
|
33203
|
+
"""
|
|
32042
33204
|
class color(TUIMethod):
|
|
32043
33205
|
"""
|
|
32044
33206
|
No help available.
|
|
32045
33207
|
"""
|
|
33208
|
+
class distance(TUIMethod):
|
|
33209
|
+
"""
|
|
33210
|
+
No help available.
|
|
33211
|
+
"""
|
|
33212
|
+
class units_or_divisions(TUIMethod):
|
|
33213
|
+
"""
|
|
33214
|
+
No help available.
|
|
33215
|
+
"""
|
|
32046
33216
|
class weight(TUIMethod):
|
|
32047
33217
|
"""
|
|
32048
33218
|
No help available.
|
|
@@ -32053,13 +33223,28 @@ class main_menu(TUIMenu):
|
|
|
32053
33223
|
No help available.
|
|
32054
33224
|
"""
|
|
32055
33225
|
def __init__(self, service, version, mode, path):
|
|
33226
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32056
33227
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33228
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33229
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32057
33230
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32058
33231
|
super().__init__(service, version, mode, path)
|
|
33232
|
+
class auto_placement(TUIMethod):
|
|
33233
|
+
"""
|
|
33234
|
+
No help available.
|
|
33235
|
+
"""
|
|
32059
33236
|
class color(TUIMethod):
|
|
32060
33237
|
"""
|
|
32061
33238
|
No help available.
|
|
32062
33239
|
"""
|
|
33240
|
+
class distance(TUIMethod):
|
|
33241
|
+
"""
|
|
33242
|
+
No help available.
|
|
33243
|
+
"""
|
|
33244
|
+
class units_or_divisions(TUIMethod):
|
|
33245
|
+
"""
|
|
33246
|
+
No help available.
|
|
33247
|
+
"""
|
|
32063
33248
|
class weight(TUIMethod):
|
|
32064
33249
|
"""
|
|
32065
33250
|
No help available.
|
|
@@ -32091,6 +33276,8 @@ class main_menu(TUIMenu):
|
|
|
32091
33276
|
self.minor_gridlines = self.__class__.minor_gridlines(service, version, mode, path + ["minor_gridlines"])
|
|
32092
33277
|
self.number_format = self.__class__.number_format(service, version, mode, path + ["number_format"])
|
|
32093
33278
|
self.auto_range = self.__class__.auto_range(service, version, mode, path + ["auto_range"])
|
|
33279
|
+
self.auto_range_max = self.__class__.auto_range_max(service, version, mode, path + ["auto_range_max"])
|
|
33280
|
+
self.auto_range_min = self.__class__.auto_range_min(service, version, mode, path + ["auto_range_min"])
|
|
32094
33281
|
self.label = self.__class__.label(service, version, mode, path + ["label"])
|
|
32095
33282
|
self.log_scale = self.__class__.log_scale(service, version, mode, path + ["log_scale"])
|
|
32096
33283
|
self.max = self.__class__.max(service, version, mode, path + ["max"])
|
|
@@ -32102,6 +33289,14 @@ class main_menu(TUIMenu):
|
|
|
32102
33289
|
"""
|
|
32103
33290
|
No help available.
|
|
32104
33291
|
"""
|
|
33292
|
+
class auto_range_max(TUIMethod):
|
|
33293
|
+
"""
|
|
33294
|
+
No help available.
|
|
33295
|
+
"""
|
|
33296
|
+
class auto_range_min(TUIMethod):
|
|
33297
|
+
"""
|
|
33298
|
+
No help available.
|
|
33299
|
+
"""
|
|
32105
33300
|
class label(TUIMethod):
|
|
32106
33301
|
"""
|
|
32107
33302
|
No help available.
|
|
@@ -32132,13 +33327,28 @@ class main_menu(TUIMenu):
|
|
|
32132
33327
|
No help available.
|
|
32133
33328
|
"""
|
|
32134
33329
|
def __init__(self, service, version, mode, path):
|
|
33330
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32135
33331
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33332
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33333
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32136
33334
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32137
33335
|
super().__init__(service, version, mode, path)
|
|
33336
|
+
class auto_placement(TUIMethod):
|
|
33337
|
+
"""
|
|
33338
|
+
No help available.
|
|
33339
|
+
"""
|
|
32138
33340
|
class color(TUIMethod):
|
|
32139
33341
|
"""
|
|
32140
33342
|
No help available.
|
|
32141
33343
|
"""
|
|
33344
|
+
class distance(TUIMethod):
|
|
33345
|
+
"""
|
|
33346
|
+
No help available.
|
|
33347
|
+
"""
|
|
33348
|
+
class units_or_divisions(TUIMethod):
|
|
33349
|
+
"""
|
|
33350
|
+
No help available.
|
|
33351
|
+
"""
|
|
32142
33352
|
class weight(TUIMethod):
|
|
32143
33353
|
"""
|
|
32144
33354
|
No help available.
|
|
@@ -32149,13 +33359,28 @@ class main_menu(TUIMenu):
|
|
|
32149
33359
|
No help available.
|
|
32150
33360
|
"""
|
|
32151
33361
|
def __init__(self, service, version, mode, path):
|
|
33362
|
+
self.auto_placement = self.__class__.auto_placement(service, version, mode, path + ["auto_placement"])
|
|
32152
33363
|
self.color = self.__class__.color(service, version, mode, path + ["color"])
|
|
33364
|
+
self.distance = self.__class__.distance(service, version, mode, path + ["distance"])
|
|
33365
|
+
self.units_or_divisions = self.__class__.units_or_divisions(service, version, mode, path + ["units_or_divisions"])
|
|
32153
33366
|
self.weight = self.__class__.weight(service, version, mode, path + ["weight"])
|
|
32154
33367
|
super().__init__(service, version, mode, path)
|
|
33368
|
+
class auto_placement(TUIMethod):
|
|
33369
|
+
"""
|
|
33370
|
+
No help available.
|
|
33371
|
+
"""
|
|
32155
33372
|
class color(TUIMethod):
|
|
32156
33373
|
"""
|
|
32157
33374
|
No help available.
|
|
32158
33375
|
"""
|
|
33376
|
+
class distance(TUIMethod):
|
|
33377
|
+
"""
|
|
33378
|
+
No help available.
|
|
33379
|
+
"""
|
|
33380
|
+
class units_or_divisions(TUIMethod):
|
|
33381
|
+
"""
|
|
33382
|
+
No help available.
|
|
33383
|
+
"""
|
|
32159
33384
|
class weight(TUIMethod):
|
|
32160
33385
|
"""
|
|
32161
33386
|
No help available.
|
|
@@ -33495,6 +34720,7 @@ class main_menu(TUIMenu):
|
|
|
33495
34720
|
self.solid_time_step_size = self.__class__.solid_time_step_size(service, version, mode, path + ["solid_time_step_size"])
|
|
33496
34721
|
self.duration_specification_method = self.__class__.duration_specification_method(service, version, mode, path + ["duration_specification_method"])
|
|
33497
34722
|
self.extrapolate_variables = self.__class__.extrapolate_variables(service, version, mode, path + ["extrapolate_variables"])
|
|
34723
|
+
self.flow_time = self.__class__.flow_time(service, version, mode, path + ["flow_time"])
|
|
33498
34724
|
self.incremental_time = self.__class__.incremental_time(service, version, mode, path + ["incremental_time"])
|
|
33499
34725
|
self.max_flow_time = self.__class__.max_flow_time(service, version, mode, path + ["max_flow_time"])
|
|
33500
34726
|
self.max_iter_per_time_step = self.__class__.max_iter_per_time_step(service, version, mode, path + ["max_iter_per_time_step"])
|
|
@@ -33520,6 +34746,10 @@ class main_menu(TUIMenu):
|
|
|
33520
34746
|
"""
|
|
33521
34747
|
No help available.
|
|
33522
34748
|
"""
|
|
34749
|
+
class flow_time(TUIMethod):
|
|
34750
|
+
"""
|
|
34751
|
+
No help available.
|
|
34752
|
+
"""
|
|
33523
34753
|
class incremental_time(TUIMethod):
|
|
33524
34754
|
"""
|
|
33525
34755
|
No help available.
|
|
@@ -35564,7 +36794,6 @@ class main_menu(TUIMenu):
|
|
|
35564
36794
|
self.contact_solution_controls = self.__class__.contact_solution_controls(service, version, mode, path + ["contact_solution_controls"])
|
|
35565
36795
|
self.data_sampling_options = self.__class__.data_sampling_options(service, version, mode, path + ["data_sampling_options"])
|
|
35566
36796
|
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
36797
|
self.fast_transient_settings = self.__class__.fast_transient_settings(service, version, mode, path + ["fast_transient_settings"])
|
|
35569
36798
|
self.high_order_term_relaxation = self.__class__.high_order_term_relaxation(service, version, mode, path + ["high_order_term_relaxation"])
|
|
35570
36799
|
self.high_speed_numerics = self.__class__.high_speed_numerics(service, version, mode, path + ["high_speed_numerics"])
|
|
@@ -35637,6 +36866,7 @@ class main_menu(TUIMenu):
|
|
|
35637
36866
|
self.second_order_time_options = self.__class__.second_order_time_options(service, version, mode, path + ["second_order_time_options"])
|
|
35638
36867
|
self.set_all_species_together = self.__class__.set_all_species_together(service, version, mode, path + ["set_all_species_together"])
|
|
35639
36868
|
self.set_controls_to_default = self.__class__.set_controls_to_default(service, version, mode, path + ["set_controls_to_default"])
|
|
36869
|
+
self.set_optimized_les_numerics = self.__class__.set_optimized_les_numerics(service, version, mode, path + ["set_optimized_les_numerics"])
|
|
35640
36870
|
self.set_solution_methods_to_default = self.__class__.set_solution_methods_to_default(service, version, mode, path + ["set_solution_methods_to_default"])
|
|
35641
36871
|
self.set_solution_steering = self.__class__.set_solution_steering(service, version, mode, path + ["set_solution_steering"])
|
|
35642
36872
|
self.slope_limiter_set = self.__class__.slope_limiter_set(service, version, mode, path + ["slope_limiter_set"])
|
|
@@ -35877,6 +37107,10 @@ class main_menu(TUIMenu):
|
|
|
35877
37107
|
"""
|
|
35878
37108
|
Set controls to default values.
|
|
35879
37109
|
"""
|
|
37110
|
+
class set_optimized_les_numerics(TUIMethod):
|
|
37111
|
+
"""
|
|
37112
|
+
No help available.
|
|
37113
|
+
"""
|
|
35880
37114
|
class set_solution_methods_to_default(TUIMethod):
|
|
35881
37115
|
"""
|
|
35882
37116
|
Set solution methods to default values.
|
|
@@ -35969,6 +37203,7 @@ class main_menu(TUIMenu):
|
|
|
35969
37203
|
self.alternative_solver_defaults = self.__class__.alternative_solver_defaults(service, version, mode, path + ["alternative_solver_defaults"])
|
|
35970
37204
|
self.anisotropic_solid_heat_transfer = self.__class__.anisotropic_solid_heat_transfer(service, version, mode, path + ["anisotropic_solid_heat_transfer"])
|
|
35971
37205
|
self.continuity_transient_term_linearization = self.__class__.continuity_transient_term_linearization(service, version, mode, path + ["continuity_transient_term_linearization"])
|
|
37206
|
+
self.low_diffusion_central = self.__class__.low_diffusion_central(service, version, mode, path + ["low_diffusion_central"])
|
|
35972
37207
|
self.non_reflecting_boundary_treatment = self.__class__.non_reflecting_boundary_treatment(service, version, mode, path + ["non_reflecting_boundary_treatment"])
|
|
35973
37208
|
self.secondary_gradient_limiting = self.__class__.secondary_gradient_limiting(service, version, mode, path + ["secondary_gradient_limiting"])
|
|
35974
37209
|
self.turbomachinery_specific_numerics = self.__class__.turbomachinery_specific_numerics(service, version, mode, path + ["turbomachinery_specific_numerics"])
|
|
@@ -36133,6 +37368,23 @@ class main_menu(TUIMenu):
|
|
|
36133
37368
|
No help available.
|
|
36134
37369
|
"""
|
|
36135
37370
|
|
|
37371
|
+
class low_diffusion_central(TUIMenu):
|
|
37372
|
+
"""
|
|
37373
|
+
Enter the Low Diffusion Central advection scheme menu.
|
|
37374
|
+
"""
|
|
37375
|
+
def __init__(self, service, version, mode, path):
|
|
37376
|
+
self.diffusion_coefficient = self.__class__.diffusion_coefficient(service, version, mode, path + ["diffusion_coefficient"])
|
|
37377
|
+
self.shield_bl_distance = self.__class__.shield_bl_distance(service, version, mode, path + ["shield_bl_distance"])
|
|
37378
|
+
super().__init__(service, version, mode, path)
|
|
37379
|
+
class diffusion_coefficient(TUIMethod):
|
|
37380
|
+
"""
|
|
37381
|
+
No help available.
|
|
37382
|
+
"""
|
|
37383
|
+
class shield_bl_distance(TUIMethod):
|
|
37384
|
+
"""
|
|
37385
|
+
No help available.
|
|
37386
|
+
"""
|
|
37387
|
+
|
|
36136
37388
|
class non_reflecting_boundary_treatment(TUIMenu):
|
|
36137
37389
|
"""
|
|
36138
37390
|
Enter non reflecting boundary treatment using minimal pressure reflection approach menu.
|
|
@@ -36585,33 +37837,6 @@ class main_menu(TUIMenu):
|
|
|
36585
37837
|
Enable divergence prevention.
|
|
36586
37838
|
"""
|
|
36587
37839
|
|
|
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
37840
|
class fast_transient_settings(TUIMenu):
|
|
36616
37841
|
"""
|
|
36617
37842
|
Enter the fast transient settings menu.
|
|
@@ -36679,6 +37904,7 @@ class main_menu(TUIMenu):
|
|
|
36679
37904
|
def __init__(self, service, version, mode, path):
|
|
36680
37905
|
self.enable = self.__class__.enable(service, version, mode, path + ["enable"])
|
|
36681
37906
|
self.expert = self.__class__.expert(service, version, mode, path + ["expert"])
|
|
37907
|
+
self.robust_fluxes = self.__class__.robust_fluxes(service, version, mode, path + ["robust_fluxes"])
|
|
36682
37908
|
self.visualize_pressure_discontinuity_sensor = self.__class__.visualize_pressure_discontinuity_sensor(service, version, mode, path + ["visualize_pressure_discontinuity_sensor"])
|
|
36683
37909
|
super().__init__(service, version, mode, path)
|
|
36684
37910
|
class enable(TUIMethod):
|
|
@@ -36689,6 +37915,10 @@ class main_menu(TUIMenu):
|
|
|
36689
37915
|
"""
|
|
36690
37916
|
Expert high-speed-numerics.
|
|
36691
37917
|
"""
|
|
37918
|
+
class robust_fluxes(TUIMethod):
|
|
37919
|
+
"""
|
|
37920
|
+
No help available.
|
|
37921
|
+
"""
|
|
36692
37922
|
class visualize_pressure_discontinuity_sensor(TUIMethod):
|
|
36693
37923
|
"""
|
|
36694
37924
|
No help available.
|
|
@@ -37949,6 +39179,7 @@ class main_menu(TUIMenu):
|
|
|
37949
39179
|
def __init__(self, service, version, mode, path):
|
|
37950
39180
|
self.delete_invalid_cells = self.__class__.delete_invalid_cells(service, version, mode, path + ["delete_invalid_cells"])
|
|
37951
39181
|
self.divergence_prevention = self.__class__.divergence_prevention(service, version, mode, path + ["divergence_prevention"])
|
|
39182
|
+
self.enhanced_limiter = self.__class__.enhanced_limiter(service, version, mode, path + ["enhanced_limiter"])
|
|
37952
39183
|
self.linear_solver_adjustment = self.__class__.linear_solver_adjustment(service, version, mode, path + ["linear_solver_adjustment"])
|
|
37953
39184
|
super().__init__(service, version, mode, path)
|
|
37954
39185
|
class delete_invalid_cells(TUIMethod):
|
|
@@ -37959,6 +39190,10 @@ class main_menu(TUIMenu):
|
|
|
37959
39190
|
"""
|
|
37960
39191
|
Adjust numerical settings when divergence pattern identified.
|
|
37961
39192
|
"""
|
|
39193
|
+
class enhanced_limiter(TUIMethod):
|
|
39194
|
+
"""
|
|
39195
|
+
Enable enhanced gradient limiting procedure to improve solver stability.
|
|
39196
|
+
"""
|
|
37962
39197
|
class linear_solver_adjustment(TUIMethod):
|
|
37963
39198
|
"""
|
|
37964
39199
|
Adjust linear solver settings for better robustness.
|
|
@@ -38314,8 +39549,8 @@ class main_menu(TUIMenu):
|
|
|
38314
39549
|
self.edit_surface = self.__class__.edit_surface(service, version, mode, path + ["edit_surface"])
|
|
38315
39550
|
self.ellipsoid_slice = self.__class__.ellipsoid_slice(service, version, mode, path + ["ellipsoid_slice"])
|
|
38316
39551
|
self.expression_volume = self.__class__.expression_volume(service, version, mode, path + ["expression_volume"])
|
|
39552
|
+
self.external_surface = self.__class__.external_surface(service, version, mode, path + ["external_surface"])
|
|
38317
39553
|
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
39554
|
self.imprint_surface = self.__class__.imprint_surface(service, version, mode, path + ["imprint_surface"])
|
|
38320
39555
|
self.iso_clip = self.__class__.iso_clip(service, version, mode, path + ["iso_clip"])
|
|
38321
39556
|
self.iso_clip_multiple = self.__class__.iso_clip_multiple(service, version, mode, path + ["iso_clip_multiple"])
|
|
@@ -38384,13 +39619,13 @@ class main_menu(TUIMenu):
|
|
|
38384
39619
|
"""
|
|
38385
39620
|
Create volume with boolean expression.
|
|
38386
39621
|
"""
|
|
38387
|
-
class
|
|
39622
|
+
class external_surface(TUIMethod):
|
|
38388
39623
|
"""
|
|
38389
|
-
|
|
39624
|
+
No help available.
|
|
38390
39625
|
"""
|
|
38391
|
-
class
|
|
39626
|
+
class group_surfaces(TUIMethod):
|
|
38392
39627
|
"""
|
|
38393
|
-
|
|
39628
|
+
Group a set of surfaces.
|
|
38394
39629
|
"""
|
|
38395
39630
|
class imprint_surface(TUIMethod):
|
|
38396
39631
|
"""
|
|
@@ -38510,7 +39745,7 @@ class main_menu(TUIMenu):
|
|
|
38510
39745
|
"""
|
|
38511
39746
|
class split_surface(TUIMethod):
|
|
38512
39747
|
"""
|
|
38513
|
-
|
|
39748
|
+
No help available.
|
|
38514
39749
|
"""
|
|
38515
39750
|
class structural_point_surface(TUIMethod):
|
|
38516
39751
|
"""
|
|
@@ -38901,6 +40136,7 @@ class main_menu(TUIMenu):
|
|
|
38901
40136
|
No help available.
|
|
38902
40137
|
"""
|
|
38903
40138
|
def __init__(self, service, version, mode, path):
|
|
40139
|
+
self.apply = self.__class__.apply(service, version, mode, path + ["apply"])
|
|
38904
40140
|
self.copy = self.__class__.copy(service, version, mode, path + ["copy"])
|
|
38905
40141
|
self.create = self.__class__.create(service, version, mode, path + ["create"])
|
|
38906
40142
|
self.delete = self.__class__.delete(service, version, mode, path + ["delete"])
|
|
@@ -38911,10 +40147,13 @@ class main_menu(TUIMenu):
|
|
|
38911
40147
|
self.new = self.__class__.new(service, version, mode, path + ["new"])
|
|
38912
40148
|
self.read = self.__class__.read(service, version, mode, path + ["read"])
|
|
38913
40149
|
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
40150
|
self.use_active = self.__class__.use_active(service, version, mode, path + ["use_active"])
|
|
38916
40151
|
self.write = self.__class__.write(service, version, mode, path + ["write"])
|
|
38917
40152
|
super().__init__(service, version, mode, path)
|
|
40153
|
+
class apply(TUIMethod):
|
|
40154
|
+
"""
|
|
40155
|
+
No help available.
|
|
40156
|
+
"""
|
|
38918
40157
|
class copy(TUIMethod):
|
|
38919
40158
|
"""
|
|
38920
40159
|
No help available.
|
|
@@ -38955,10 +40194,6 @@ class main_menu(TUIMenu):
|
|
|
38955
40194
|
"""
|
|
38956
40195
|
No help available.
|
|
38957
40196
|
"""
|
|
38958
|
-
class restore_state(TUIMethod):
|
|
38959
|
-
"""
|
|
38960
|
-
No help available.
|
|
38961
|
-
"""
|
|
38962
40197
|
class use_active(TUIMethod):
|
|
38963
40198
|
"""
|
|
38964
40199
|
No help available.
|