ansys-fluent-core 0.29.dev3__py3-none-any.whl → 0.30.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-fluent-core might be problematic. Click here for more details.
- ansys/fluent/core/__init__.py +31 -6
- ansys/fluent/core/_stand_alone_datamodel_client/_datamodel_client.py +22 -0
- ansys/fluent/core/_version.py +23 -1
- ansys/fluent/core/codegen/__init__.py +22 -0
- ansys/fluent/core/codegen/allapigen.py +38 -5
- ansys/fluent/core/codegen/builtin_settingsgen.py +22 -0
- ansys/fluent/core/codegen/data/__init__.py +21 -0
- ansys/fluent/core/codegen/data/fluent_gui_help_patch.py +22 -0
- ansys/fluent/core/codegen/data/meshing_utilities_examples.py +22 -0
- ansys/fluent/core/codegen/datamodelgen.py +40 -4
- ansys/fluent/core/codegen/print_fluent_version.py +22 -0
- ansys/fluent/core/codegen/settingsgen.py +67 -4
- ansys/fluent/core/codegen/tuigen.py +43 -5
- ansys/fluent/core/codegen/walk_api.py +22 -0
- ansys/fluent/core/codegen/write_settings_yaml.py +22 -0
- ansys/fluent/core/data_model_cache.py +22 -0
- ansys/fluent/core/examples/__init__.py +22 -0
- ansys/fluent/core/examples/downloads.py +22 -0
- ansys/fluent/core/exceptions.py +22 -0
- ansys/fluent/core/file_session.py +22 -0
- ansys/fluent/core/filereader/__init__.py +21 -0
- ansys/fluent/core/filereader/case_file.py +50 -6
- ansys/fluent/core/filereader/casereader.py +23 -1
- ansys/fluent/core/filereader/data_file.py +22 -0
- ansys/fluent/core/filereader/lispy.py +22 -0
- ansys/fluent/core/fluent_connection.py +24 -2
- ansys/fluent/core/generated/api_tree/api_objects.json +1 -1
- ansys/fluent/core/generated/datamodel_252/MeshingUtilities.py +16 -0
- ansys/fluent/core/generated/datamodel_252/meshing.py +41 -0
- ansys/fluent/core/generated/fluent_version_252.py +3 -3
- ansys/fluent/core/generated/meshing/tui_252.py +33 -5
- ansys/fluent/core/generated/solver/settings_222.py +0 -72
- ansys/fluent/core/generated/solver/settings_222.pyi +0 -307
- ansys/fluent/core/generated/solver/settings_231.py +0 -574
- ansys/fluent/core/generated/solver/settings_231.pyi +0 -561
- ansys/fluent/core/generated/solver/settings_232.py +0 -527
- ansys/fluent/core/generated/solver/settings_232.pyi +0 -2803
- ansys/fluent/core/generated/solver/settings_241.py +0 -478
- ansys/fluent/core/generated/solver/settings_241.pyi +0 -522
- ansys/fluent/core/generated/solver/settings_242.py +0 -361
- ansys/fluent/core/generated/solver/settings_242.pyi +0 -591
- ansys/fluent/core/generated/solver/settings_251.py +0 -399
- ansys/fluent/core/generated/solver/settings_251.pyi +0 -629
- ansys/fluent/core/generated/solver/settings_252.py +11896 -7129
- ansys/fluent/core/generated/solver/settings_252.pyi +9127 -4847
- ansys/fluent/core/generated/solver/tui_252.py +549 -179
- ansys/fluent/core/get_build_details.py +22 -0
- ansys/fluent/core/journaling.py +38 -0
- ansys/fluent/core/launcher/__init__.py +22 -0
- ansys/fluent/core/launcher/container_launcher.py +63 -55
- ansys/fluent/core/launcher/error_handler.py +22 -0
- ansys/fluent/core/launcher/fluent_container.py +23 -1
- ansys/fluent/core/launcher/launcher.py +52 -4
- ansys/fluent/core/launcher/launcher_utils.py +24 -2
- ansys/fluent/core/launcher/pim_launcher.py +120 -86
- ansys/fluent/core/launcher/process_launch_string.py +22 -0
- ansys/fluent/core/launcher/pyfluent_enums.py +22 -0
- ansys/fluent/core/launcher/server_info.py +22 -0
- ansys/fluent/core/launcher/slurm_launcher.py +23 -1
- ansys/fluent/core/launcher/standalone_launcher.py +68 -63
- ansys/fluent/core/launcher/watchdog.py +22 -0
- ansys/fluent/core/logging.py +22 -0
- ansys/fluent/core/meshing/meshing_workflow.py +22 -0
- ansys/fluent/core/parametric.py +22 -0
- ansys/fluent/core/post_objects/__init__.py +21 -0
- ansys/fluent/core/post_objects/check_in_notebook.py +22 -0
- ansys/fluent/core/post_objects/meta.py +28 -6
- ansys/fluent/core/post_objects/post_helper.py +22 -0
- ansys/fluent/core/post_objects/post_object_definitions.py +22 -0
- ansys/fluent/core/post_objects/post_objects_container.py +22 -0
- ansys/fluent/core/post_objects/singleton_meta.py +22 -0
- ansys/fluent/core/post_objects/timing_decorator.py +22 -0
- ansys/fluent/core/pyfluent_warnings.py +55 -0
- ansys/fluent/core/report.py +77 -0
- ansys/fluent/core/rpvars.py +22 -0
- ansys/fluent/core/scheduler/__init__.py +22 -0
- ansys/fluent/core/scheduler/load_machines.py +22 -0
- ansys/fluent/core/scheduler/machine_list.py +22 -0
- ansys/fluent/core/search.py +22 -0
- ansys/fluent/core/services/__init__.py +22 -0
- ansys/fluent/core/services/api_upgrade.py +22 -0
- ansys/fluent/core/services/app_utilities.py +38 -0
- ansys/fluent/core/services/batch_ops.py +22 -0
- ansys/fluent/core/services/datamodel_se.py +22 -2
- ansys/fluent/core/services/datamodel_tui.py +22 -0
- ansys/fluent/core/services/deprecated_field_data.py +24 -2
- ansys/fluent/core/services/events.py +22 -0
- ansys/fluent/core/services/field_data.py +46 -15
- ansys/fluent/core/services/health_check.py +22 -0
- ansys/fluent/core/services/interceptors.py +22 -0
- ansys/fluent/core/services/monitor.py +22 -0
- ansys/fluent/core/services/reduction.py +22 -0
- ansys/fluent/core/services/scheme_eval.py +22 -0
- ansys/fluent/core/services/settings.py +22 -0
- ansys/fluent/core/services/solution_variables.py +23 -1
- ansys/fluent/core/services/streaming.py +22 -0
- ansys/fluent/core/services/transcript.py +22 -0
- ansys/fluent/core/session.py +36 -1
- ansys/fluent/core/session_base_meshing.py +22 -0
- ansys/fluent/core/session_meshing.py +22 -0
- ansys/fluent/core/session_meshing.pyi +22 -0
- ansys/fluent/core/session_pure_meshing.py +22 -0
- ansys/fluent/core/session_pure_meshing.pyi +22 -0
- ansys/fluent/core/session_shared.py +22 -0
- ansys/fluent/core/session_solver.py +23 -1
- ansys/fluent/core/session_solver.pyi +22 -0
- ansys/fluent/core/session_solver_aero.py +22 -0
- ansys/fluent/core/session_solver_icing.py +22 -0
- ansys/fluent/core/session_solver_lite.py +22 -0
- ansys/fluent/core/solver/__init__.py +22 -0
- ansys/fluent/core/solver/error_message.py +22 -0
- ansys/fluent/core/solver/flobject.py +26 -1
- ansys/fluent/core/solver/flunits.py +22 -0
- ansys/fluent/core/solver/function/__init__.py +22 -0
- ansys/fluent/core/solver/function/reduction.py +22 -0
- ansys/fluent/core/solver/settings_builtin_bases.py +22 -0
- ansys/fluent/core/solver/settings_builtin_data.py +22 -0
- ansys/fluent/core/solver/settings_external.py +22 -0
- ansys/fluent/core/streaming_services/__init__.py +21 -0
- ansys/fluent/core/streaming_services/datamodel_event_streaming.py +22 -0
- ansys/fluent/core/streaming_services/datamodel_streaming.py +22 -0
- ansys/fluent/core/streaming_services/events_streaming.py +23 -1
- ansys/fluent/core/streaming_services/field_data_streaming.py +22 -0
- ansys/fluent/core/streaming_services/monitor_streaming.py +23 -1
- ansys/fluent/core/streaming_services/streaming.py +22 -0
- ansys/fluent/core/streaming_services/transcript_streaming.py +22 -0
- ansys/fluent/core/systemcoupling.py +22 -0
- ansys/fluent/core/utils/__init__.py +22 -0
- ansys/fluent/core/utils/data_transfer.py +22 -0
- ansys/fluent/core/utils/deprecate.py +25 -2
- ansys/fluent/core/utils/dictionary_operations.py +22 -0
- ansys/fluent/core/utils/dump_session_data.py +22 -0
- ansys/fluent/core/utils/event_loop.py +22 -0
- ansys/fluent/core/utils/execution.py +22 -0
- ansys/fluent/core/utils/file_transfer_service.py +26 -4
- ansys/fluent/core/utils/fix_doc.py +22 -0
- ansys/fluent/core/utils/fldoc.py +22 -0
- ansys/fluent/core/utils/fluent_version.py +22 -0
- ansys/fluent/core/utils/networking.py +22 -0
- ansys/fluent/core/utils/setup_for_fluent.py +22 -0
- ansys/fluent/core/workflow.py +26 -1
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/LICENSE +8 -8
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/METADATA +10 -8
- ansys_fluent_core-0.30.dev1.dist-info/RECORD +219 -0
- ansys/fluent/core/warnings.py +0 -33
- ansys_fluent_core-0.29.dev3.dist-info/RECORD +0 -218
- {ansys_fluent_core-0.29.dev3.dist-info → ansys_fluent_core-0.30.dev1.dist-info}/WHEEL +0 -0
|
@@ -775,68 +775,26 @@ class file(Group):
|
|
|
775
775
|
def read(self, file_type: str, file_name: str, pdf_file_name: str, lightweight_setup: bool):
|
|
776
776
|
"""
|
|
777
777
|
'read' command.
|
|
778
|
-
|
|
779
|
-
Parameters
|
|
780
|
-
----------
|
|
781
|
-
file_type : str
|
|
782
|
-
'file_type' child.
|
|
783
|
-
file_name_1 : str
|
|
784
|
-
'file_name' child.
|
|
785
|
-
pdf_file_name : str
|
|
786
|
-
'pdf_file_name' child.
|
|
787
|
-
lightweight_setup : bool
|
|
788
|
-
'lightweight_setup' child.
|
|
789
778
|
"""
|
|
790
779
|
def read_case(self, file_name: str, pdf_file_name: str):
|
|
791
780
|
"""
|
|
792
781
|
'read_case' command.
|
|
793
|
-
|
|
794
|
-
Parameters
|
|
795
|
-
----------
|
|
796
|
-
file_name_1 : str
|
|
797
|
-
'file_name' child.
|
|
798
|
-
pdf_file_name : str
|
|
799
|
-
'pdf_file_name' child.
|
|
800
782
|
"""
|
|
801
783
|
def read_case_data(self, file_name: str, pdf_file_name: str):
|
|
802
784
|
"""
|
|
803
785
|
'read_case_data' command.
|
|
804
|
-
|
|
805
|
-
Parameters
|
|
806
|
-
----------
|
|
807
|
-
file_name_1 : str
|
|
808
|
-
'file_name' child.
|
|
809
|
-
pdf_file_name : str
|
|
810
|
-
'pdf_file_name' child.
|
|
811
786
|
"""
|
|
812
787
|
def read_case_setting(self, file_name: str, pdf_file_name: str):
|
|
813
788
|
"""
|
|
814
789
|
'read_case_setting' command.
|
|
815
|
-
|
|
816
|
-
Parameters
|
|
817
|
-
----------
|
|
818
|
-
file_name_1 : str
|
|
819
|
-
'file_name' child.
|
|
820
|
-
pdf_file_name : str
|
|
821
|
-
'pdf_file_name' child.
|
|
822
790
|
"""
|
|
823
791
|
def read_data(self, file_name: str):
|
|
824
792
|
"""
|
|
825
793
|
'read_data' command.
|
|
826
|
-
|
|
827
|
-
Parameters
|
|
828
|
-
----------
|
|
829
|
-
file_name_1 : str
|
|
830
|
-
'file_name' child.
|
|
831
794
|
"""
|
|
832
795
|
def read_mesh(self, file_name: str):
|
|
833
796
|
"""
|
|
834
797
|
'read_mesh' command.
|
|
835
|
-
|
|
836
|
-
Parameters
|
|
837
|
-
----------
|
|
838
|
-
file_name_1 : str
|
|
839
|
-
'file_name' child.
|
|
840
798
|
"""
|
|
841
799
|
def read_surface_mesh(self, filename: str, unit: str):
|
|
842
800
|
"""
|
|
@@ -883,49 +841,22 @@ class file(Group):
|
|
|
883
841
|
def replace_mesh(self, file_name: str):
|
|
884
842
|
"""
|
|
885
843
|
'replace_mesh' command.
|
|
886
|
-
|
|
887
|
-
Parameters
|
|
888
|
-
----------
|
|
889
|
-
file_name_1 : str
|
|
890
|
-
'file_name' child.
|
|
891
844
|
"""
|
|
892
845
|
def write(self, file_type: str, file_name: str):
|
|
893
846
|
"""
|
|
894
847
|
'write' command.
|
|
895
|
-
|
|
896
|
-
Parameters
|
|
897
|
-
----------
|
|
898
|
-
file_type : str
|
|
899
|
-
'file_type' child.
|
|
900
|
-
file_name : str
|
|
901
|
-
'file_name' child.
|
|
902
848
|
"""
|
|
903
849
|
def write_case(self, file_name: str):
|
|
904
850
|
"""
|
|
905
851
|
'write_case' command.
|
|
906
|
-
|
|
907
|
-
Parameters
|
|
908
|
-
----------
|
|
909
|
-
file_name : str
|
|
910
|
-
'file_name' child.
|
|
911
852
|
"""
|
|
912
853
|
def write_data(self, file_name: str):
|
|
913
854
|
"""
|
|
914
855
|
'write_data' command.
|
|
915
|
-
|
|
916
|
-
Parameters
|
|
917
|
-
----------
|
|
918
|
-
file_name : str
|
|
919
|
-
'file_name' child.
|
|
920
856
|
"""
|
|
921
857
|
def write_case_data(self, file_name: str):
|
|
922
858
|
"""
|
|
923
859
|
'write_case_data' command.
|
|
924
|
-
|
|
925
|
-
Parameters
|
|
926
|
-
----------
|
|
927
|
-
file_name : str
|
|
928
|
-
'file_name' child.
|
|
929
860
|
"""
|
|
930
861
|
def read_settings(self, file_name: str):
|
|
931
862
|
"""
|
|
@@ -1855,15 +1786,6 @@ class polyhedra(Group):
|
|
|
1855
1786
|
def convert_skewed_cells(self, cell_thread_list: list[str], max_cell_skewness: float | str, convert_skewed_cells: bool):
|
|
1856
1787
|
"""
|
|
1857
1788
|
'convert_skewed_cells' command.
|
|
1858
|
-
|
|
1859
|
-
Parameters
|
|
1860
|
-
----------
|
|
1861
|
-
cell_thread_list : List
|
|
1862
|
-
Set zones where cells should be converted.
|
|
1863
|
-
max_cell_skewness : real
|
|
1864
|
-
Set target maximum cell skewness.
|
|
1865
|
-
convert_skewed_cells : bool
|
|
1866
|
-
'convert_skewed_cells' child.
|
|
1867
1789
|
"""
|
|
1868
1790
|
class wall_distance_method(String, AllowedValuesMixin):
|
|
1869
1791
|
version: str
|
|
@@ -1929,15 +1851,6 @@ class mesh(Group):
|
|
|
1929
1851
|
def scale(self, x_scale: float | str, y_scale: float | str, z_scale: float | str):
|
|
1930
1852
|
"""
|
|
1931
1853
|
'scale' command.
|
|
1932
|
-
|
|
1933
|
-
Parameters
|
|
1934
|
-
----------
|
|
1935
|
-
x_scale : real
|
|
1936
|
-
'x_scale' child.
|
|
1937
|
-
y_scale : real
|
|
1938
|
-
'y_scale' child.
|
|
1939
|
-
z_scale : real
|
|
1940
|
-
'z_scale' child.
|
|
1941
1854
|
"""
|
|
1942
1855
|
def size_info(self):
|
|
1943
1856
|
"""
|
|
@@ -7506,20 +7419,10 @@ class u_table(Group):
|
|
|
7506
7419
|
def write_table(self, file_name: str):
|
|
7507
7420
|
"""
|
|
7508
7421
|
2D table writting command.
|
|
7509
|
-
|
|
7510
|
-
Parameters
|
|
7511
|
-
----------
|
|
7512
|
-
file_name : str
|
|
7513
|
-
File name in 2D table writting.
|
|
7514
7422
|
"""
|
|
7515
7423
|
def read_table(self, file_name: str):
|
|
7516
7424
|
"""
|
|
7517
7425
|
2D table reading command.
|
|
7518
|
-
|
|
7519
|
-
Parameters
|
|
7520
|
-
----------
|
|
7521
|
-
file_name_1 : str
|
|
7522
|
-
File name in 2D table reading.
|
|
7523
7426
|
"""
|
|
7524
7427
|
def print_table(self):
|
|
7525
7428
|
"""
|
|
@@ -7545,20 +7448,10 @@ class y_table(Group):
|
|
|
7545
7448
|
def write_table(self, file_name: str):
|
|
7546
7449
|
"""
|
|
7547
7450
|
2D table writting command.
|
|
7548
|
-
|
|
7549
|
-
Parameters
|
|
7550
|
-
----------
|
|
7551
|
-
file_name : str
|
|
7552
|
-
File name in 2D table writting.
|
|
7553
7451
|
"""
|
|
7554
7452
|
def read_table(self, file_name: str):
|
|
7555
7453
|
"""
|
|
7556
7454
|
2D table reading command.
|
|
7557
|
-
|
|
7558
|
-
Parameters
|
|
7559
|
-
----------
|
|
7560
|
-
file_name_1 : str
|
|
7561
|
-
File name in 2D table reading.
|
|
7562
7455
|
"""
|
|
7563
7456
|
def print_table(self):
|
|
7564
7457
|
"""
|
|
@@ -7606,20 +7499,10 @@ class internal_resistance_table(ListObject[internal_resistance_table_child]):
|
|
|
7606
7499
|
def write_table(self, file_name: str):
|
|
7607
7500
|
"""
|
|
7608
7501
|
Writing 3D table command.
|
|
7609
|
-
|
|
7610
|
-
Parameters
|
|
7611
|
-
----------
|
|
7612
|
-
file_name : str
|
|
7613
|
-
Set file name in the 3D table-writing command.
|
|
7614
7502
|
"""
|
|
7615
7503
|
def read_table(self, file_name: str):
|
|
7616
7504
|
"""
|
|
7617
7505
|
3D Reading table command.
|
|
7618
|
-
|
|
7619
|
-
Parameters
|
|
7620
|
-
----------
|
|
7621
|
-
file_name_1 : str
|
|
7622
|
-
Set file name in the 3D table-reading command.
|
|
7623
7506
|
"""
|
|
7624
7507
|
def print_table(self):
|
|
7625
7508
|
"""
|
|
@@ -7676,20 +7559,10 @@ class limit_current_table(ListObject[limit_current_table_child]):
|
|
|
7676
7559
|
def write_table(self, file_name: str):
|
|
7677
7560
|
"""
|
|
7678
7561
|
Writing 3D table command.
|
|
7679
|
-
|
|
7680
|
-
Parameters
|
|
7681
|
-
----------
|
|
7682
|
-
file_name : str
|
|
7683
|
-
Set file name in the 3D table-writing command.
|
|
7684
7562
|
"""
|
|
7685
7563
|
def read_table(self, file_name: str):
|
|
7686
7564
|
"""
|
|
7687
7565
|
3D Reading table command.
|
|
7688
|
-
|
|
7689
|
-
Parameters
|
|
7690
|
-
----------
|
|
7691
|
-
file_name_1 : str
|
|
7692
|
-
Set file name in the 3D table-reading command.
|
|
7693
7566
|
"""
|
|
7694
7567
|
def print_table(self):
|
|
7695
7568
|
"""
|
|
@@ -7866,20 +7739,10 @@ class table_rs(Group):
|
|
|
7866
7739
|
def write_table(self, file_name: str):
|
|
7867
7740
|
"""
|
|
7868
7741
|
2D table writting command.
|
|
7869
|
-
|
|
7870
|
-
Parameters
|
|
7871
|
-
----------
|
|
7872
|
-
file_name : str
|
|
7873
|
-
File name in 2D table writting.
|
|
7874
7742
|
"""
|
|
7875
7743
|
def read_table(self, file_name: str):
|
|
7876
7744
|
"""
|
|
7877
7745
|
2D table reading command.
|
|
7878
|
-
|
|
7879
|
-
Parameters
|
|
7880
|
-
----------
|
|
7881
|
-
file_name_1 : str
|
|
7882
|
-
File name in 2D table reading.
|
|
7883
7746
|
"""
|
|
7884
7747
|
def print_table(self):
|
|
7885
7748
|
"""
|
|
@@ -7905,20 +7768,10 @@ class table_r1(Group):
|
|
|
7905
7768
|
def write_table(self, file_name: str):
|
|
7906
7769
|
"""
|
|
7907
7770
|
2D table writting command.
|
|
7908
|
-
|
|
7909
|
-
Parameters
|
|
7910
|
-
----------
|
|
7911
|
-
file_name : str
|
|
7912
|
-
File name in 2D table writting.
|
|
7913
7771
|
"""
|
|
7914
7772
|
def read_table(self, file_name: str):
|
|
7915
7773
|
"""
|
|
7916
7774
|
2D table reading command.
|
|
7917
|
-
|
|
7918
|
-
Parameters
|
|
7919
|
-
----------
|
|
7920
|
-
file_name_1 : str
|
|
7921
|
-
File name in 2D table reading.
|
|
7922
7775
|
"""
|
|
7923
7776
|
def print_table(self):
|
|
7924
7777
|
"""
|
|
@@ -7944,20 +7797,10 @@ class table_c1(Group):
|
|
|
7944
7797
|
def write_table(self, file_name: str):
|
|
7945
7798
|
"""
|
|
7946
7799
|
2D table writting command.
|
|
7947
|
-
|
|
7948
|
-
Parameters
|
|
7949
|
-
----------
|
|
7950
|
-
file_name : str
|
|
7951
|
-
File name in 2D table writting.
|
|
7952
7800
|
"""
|
|
7953
7801
|
def read_table(self, file_name: str):
|
|
7954
7802
|
"""
|
|
7955
7803
|
2D table reading command.
|
|
7956
|
-
|
|
7957
|
-
Parameters
|
|
7958
|
-
----------
|
|
7959
|
-
file_name_1 : str
|
|
7960
|
-
File name in 2D table reading.
|
|
7961
7804
|
"""
|
|
7962
7805
|
def print_table(self):
|
|
7963
7806
|
"""
|
|
@@ -7983,20 +7826,10 @@ class table_r2(Group):
|
|
|
7983
7826
|
def write_table(self, file_name: str):
|
|
7984
7827
|
"""
|
|
7985
7828
|
2D table writting command.
|
|
7986
|
-
|
|
7987
|
-
Parameters
|
|
7988
|
-
----------
|
|
7989
|
-
file_name : str
|
|
7990
|
-
File name in 2D table writting.
|
|
7991
7829
|
"""
|
|
7992
7830
|
def read_table(self, file_name: str):
|
|
7993
7831
|
"""
|
|
7994
7832
|
2D table reading command.
|
|
7995
|
-
|
|
7996
|
-
Parameters
|
|
7997
|
-
----------
|
|
7998
|
-
file_name_1 : str
|
|
7999
|
-
File name in 2D table reading.
|
|
8000
7833
|
"""
|
|
8001
7834
|
def print_table(self):
|
|
8002
7835
|
"""
|
|
@@ -8022,20 +7855,10 @@ class table_c2(Group):
|
|
|
8022
7855
|
def write_table(self, file_name: str):
|
|
8023
7856
|
"""
|
|
8024
7857
|
2D table writting command.
|
|
8025
|
-
|
|
8026
|
-
Parameters
|
|
8027
|
-
----------
|
|
8028
|
-
file_name : str
|
|
8029
|
-
File name in 2D table writting.
|
|
8030
7858
|
"""
|
|
8031
7859
|
def read_table(self, file_name: str):
|
|
8032
7860
|
"""
|
|
8033
7861
|
2D table reading command.
|
|
8034
|
-
|
|
8035
|
-
Parameters
|
|
8036
|
-
----------
|
|
8037
|
-
file_name_1 : str
|
|
8038
|
-
File name in 2D table reading.
|
|
8039
7862
|
"""
|
|
8040
7863
|
def print_table(self):
|
|
8041
7864
|
"""
|
|
@@ -8061,20 +7884,10 @@ class table_r3(Group):
|
|
|
8061
7884
|
def write_table(self, file_name: str):
|
|
8062
7885
|
"""
|
|
8063
7886
|
2D table writting command.
|
|
8064
|
-
|
|
8065
|
-
Parameters
|
|
8066
|
-
----------
|
|
8067
|
-
file_name : str
|
|
8068
|
-
File name in 2D table writting.
|
|
8069
7887
|
"""
|
|
8070
7888
|
def read_table(self, file_name: str):
|
|
8071
7889
|
"""
|
|
8072
7890
|
2D table reading command.
|
|
8073
|
-
|
|
8074
|
-
Parameters
|
|
8075
|
-
----------
|
|
8076
|
-
file_name_1 : str
|
|
8077
|
-
File name in 2D table reading.
|
|
8078
7891
|
"""
|
|
8079
7892
|
def print_table(self):
|
|
8080
7893
|
"""
|
|
@@ -8100,20 +7913,10 @@ class table_c3(Group):
|
|
|
8100
7913
|
def write_table(self, file_name: str):
|
|
8101
7914
|
"""
|
|
8102
7915
|
2D table writting command.
|
|
8103
|
-
|
|
8104
|
-
Parameters
|
|
8105
|
-
----------
|
|
8106
|
-
file_name : str
|
|
8107
|
-
File name in 2D table writting.
|
|
8108
7916
|
"""
|
|
8109
7917
|
def read_table(self, file_name: str):
|
|
8110
7918
|
"""
|
|
8111
7919
|
2D table reading command.
|
|
8112
|
-
|
|
8113
|
-
Parameters
|
|
8114
|
-
----------
|
|
8115
|
-
file_name_1 : str
|
|
8116
|
-
File name in 2D table reading.
|
|
8117
7920
|
"""
|
|
8118
7921
|
def print_table(self):
|
|
8119
7922
|
"""
|
|
@@ -8139,20 +7942,10 @@ class table_voc(Group):
|
|
|
8139
7942
|
def write_table(self, file_name: str):
|
|
8140
7943
|
"""
|
|
8141
7944
|
2D table writting command.
|
|
8142
|
-
|
|
8143
|
-
Parameters
|
|
8144
|
-
----------
|
|
8145
|
-
file_name : str
|
|
8146
|
-
File name in 2D table writting.
|
|
8147
7945
|
"""
|
|
8148
7946
|
def read_table(self, file_name: str):
|
|
8149
7947
|
"""
|
|
8150
7948
|
2D table reading command.
|
|
8151
|
-
|
|
8152
|
-
Parameters
|
|
8153
|
-
----------
|
|
8154
|
-
file_name_1 : str
|
|
8155
|
-
File name in 2D table reading.
|
|
8156
7949
|
"""
|
|
8157
7950
|
def print_table(self):
|
|
8158
7951
|
"""
|
|
@@ -8178,20 +7971,10 @@ class table_rs_c(Group):
|
|
|
8178
7971
|
def write_table(self, file_name: str):
|
|
8179
7972
|
"""
|
|
8180
7973
|
2D table writting command.
|
|
8181
|
-
|
|
8182
|
-
Parameters
|
|
8183
|
-
----------
|
|
8184
|
-
file_name : str
|
|
8185
|
-
File name in 2D table writting.
|
|
8186
7974
|
"""
|
|
8187
7975
|
def read_table(self, file_name: str):
|
|
8188
7976
|
"""
|
|
8189
7977
|
2D table reading command.
|
|
8190
|
-
|
|
8191
|
-
Parameters
|
|
8192
|
-
----------
|
|
8193
|
-
file_name_1 : str
|
|
8194
|
-
File name in 2D table reading.
|
|
8195
7978
|
"""
|
|
8196
7979
|
def print_table(self):
|
|
8197
7980
|
"""
|
|
@@ -8217,20 +8000,10 @@ class table_r1_c(Group):
|
|
|
8217
8000
|
def write_table(self, file_name: str):
|
|
8218
8001
|
"""
|
|
8219
8002
|
2D table writting command.
|
|
8220
|
-
|
|
8221
|
-
Parameters
|
|
8222
|
-
----------
|
|
8223
|
-
file_name : str
|
|
8224
|
-
File name in 2D table writting.
|
|
8225
8003
|
"""
|
|
8226
8004
|
def read_table(self, file_name: str):
|
|
8227
8005
|
"""
|
|
8228
8006
|
2D table reading command.
|
|
8229
|
-
|
|
8230
|
-
Parameters
|
|
8231
|
-
----------
|
|
8232
|
-
file_name_1 : str
|
|
8233
|
-
File name in 2D table reading.
|
|
8234
8007
|
"""
|
|
8235
8008
|
def print_table(self):
|
|
8236
8009
|
"""
|
|
@@ -8256,20 +8029,10 @@ class table_c1_c(Group):
|
|
|
8256
8029
|
def write_table(self, file_name: str):
|
|
8257
8030
|
"""
|
|
8258
8031
|
2D table writting command.
|
|
8259
|
-
|
|
8260
|
-
Parameters
|
|
8261
|
-
----------
|
|
8262
|
-
file_name : str
|
|
8263
|
-
File name in 2D table writting.
|
|
8264
8032
|
"""
|
|
8265
8033
|
def read_table(self, file_name: str):
|
|
8266
8034
|
"""
|
|
8267
8035
|
2D table reading command.
|
|
8268
|
-
|
|
8269
|
-
Parameters
|
|
8270
|
-
----------
|
|
8271
|
-
file_name_1 : str
|
|
8272
|
-
File name in 2D table reading.
|
|
8273
8036
|
"""
|
|
8274
8037
|
def print_table(self):
|
|
8275
8038
|
"""
|
|
@@ -8295,20 +8058,10 @@ class table_r2_c(Group):
|
|
|
8295
8058
|
def write_table(self, file_name: str):
|
|
8296
8059
|
"""
|
|
8297
8060
|
2D table writting command.
|
|
8298
|
-
|
|
8299
|
-
Parameters
|
|
8300
|
-
----------
|
|
8301
|
-
file_name : str
|
|
8302
|
-
File name in 2D table writting.
|
|
8303
8061
|
"""
|
|
8304
8062
|
def read_table(self, file_name: str):
|
|
8305
8063
|
"""
|
|
8306
8064
|
2D table reading command.
|
|
8307
|
-
|
|
8308
|
-
Parameters
|
|
8309
|
-
----------
|
|
8310
|
-
file_name_1 : str
|
|
8311
|
-
File name in 2D table reading.
|
|
8312
8065
|
"""
|
|
8313
8066
|
def print_table(self):
|
|
8314
8067
|
"""
|
|
@@ -8334,20 +8087,10 @@ class table_c2_c(Group):
|
|
|
8334
8087
|
def write_table(self, file_name: str):
|
|
8335
8088
|
"""
|
|
8336
8089
|
2D table writting command.
|
|
8337
|
-
|
|
8338
|
-
Parameters
|
|
8339
|
-
----------
|
|
8340
|
-
file_name : str
|
|
8341
|
-
File name in 2D table writting.
|
|
8342
8090
|
"""
|
|
8343
8091
|
def read_table(self, file_name: str):
|
|
8344
8092
|
"""
|
|
8345
8093
|
2D table reading command.
|
|
8346
|
-
|
|
8347
|
-
Parameters
|
|
8348
|
-
----------
|
|
8349
|
-
file_name_1 : str
|
|
8350
|
-
File name in 2D table reading.
|
|
8351
8094
|
"""
|
|
8352
8095
|
def print_table(self):
|
|
8353
8096
|
"""
|
|
@@ -8373,20 +8116,10 @@ class table_r3_c(Group):
|
|
|
8373
8116
|
def write_table(self, file_name: str):
|
|
8374
8117
|
"""
|
|
8375
8118
|
2D table writting command.
|
|
8376
|
-
|
|
8377
|
-
Parameters
|
|
8378
|
-
----------
|
|
8379
|
-
file_name : str
|
|
8380
|
-
File name in 2D table writting.
|
|
8381
8119
|
"""
|
|
8382
8120
|
def read_table(self, file_name: str):
|
|
8383
8121
|
"""
|
|
8384
8122
|
2D table reading command.
|
|
8385
|
-
|
|
8386
|
-
Parameters
|
|
8387
|
-
----------
|
|
8388
|
-
file_name_1 : str
|
|
8389
|
-
File name in 2D table reading.
|
|
8390
8123
|
"""
|
|
8391
8124
|
def print_table(self):
|
|
8392
8125
|
"""
|
|
@@ -8412,20 +8145,10 @@ class table_c3_c(Group):
|
|
|
8412
8145
|
def write_table(self, file_name: str):
|
|
8413
8146
|
"""
|
|
8414
8147
|
2D table writting command.
|
|
8415
|
-
|
|
8416
|
-
Parameters
|
|
8417
|
-
----------
|
|
8418
|
-
file_name : str
|
|
8419
|
-
File name in 2D table writting.
|
|
8420
8148
|
"""
|
|
8421
8149
|
def read_table(self, file_name: str):
|
|
8422
8150
|
"""
|
|
8423
8151
|
2D table reading command.
|
|
8424
|
-
|
|
8425
|
-
Parameters
|
|
8426
|
-
----------
|
|
8427
|
-
file_name_1 : str
|
|
8428
|
-
File name in 2D table reading.
|
|
8429
8152
|
"""
|
|
8430
8153
|
def print_table(self):
|
|
8431
8154
|
"""
|
|
@@ -8451,20 +8174,10 @@ class table_voc_c(Group):
|
|
|
8451
8174
|
def write_table(self, file_name: str):
|
|
8452
8175
|
"""
|
|
8453
8176
|
2D table writting command.
|
|
8454
|
-
|
|
8455
|
-
Parameters
|
|
8456
|
-
----------
|
|
8457
|
-
file_name : str
|
|
8458
|
-
File name in 2D table writting.
|
|
8459
8177
|
"""
|
|
8460
8178
|
def read_table(self, file_name: str):
|
|
8461
8179
|
"""
|
|
8462
8180
|
2D table reading command.
|
|
8463
|
-
|
|
8464
|
-
Parameters
|
|
8465
|
-
----------
|
|
8466
|
-
file_name_1 : str
|
|
8467
|
-
File name in 2D table reading.
|
|
8468
8181
|
"""
|
|
8469
8182
|
def print_table(self):
|
|
8470
8183
|
"""
|
|
@@ -9254,20 +8967,10 @@ class fast_charging_table(ListObject[fast_charging_table_child]):
|
|
|
9254
8967
|
def write_table(self, file_name: str):
|
|
9255
8968
|
"""
|
|
9256
8969
|
Writing 3D table command.
|
|
9257
|
-
|
|
9258
|
-
Parameters
|
|
9259
|
-
----------
|
|
9260
|
-
file_name : str
|
|
9261
|
-
Set file name in the 3D table-writing command.
|
|
9262
8970
|
"""
|
|
9263
8971
|
def read_table(self, file_name: str):
|
|
9264
8972
|
"""
|
|
9265
8973
|
3D Reading table command.
|
|
9266
|
-
|
|
9267
|
-
Parameters
|
|
9268
|
-
----------
|
|
9269
|
-
file_name_1 : str
|
|
9270
|
-
Set file name in the 3D table-reading command.
|
|
9271
8974
|
"""
|
|
9272
8975
|
def print_table(self):
|
|
9273
8976
|
"""
|
|
@@ -9380,20 +9083,10 @@ class heat_correct_table(Group):
|
|
|
9380
9083
|
def write_table(self, file_name: str):
|
|
9381
9084
|
"""
|
|
9382
9085
|
2D table writting command.
|
|
9383
|
-
|
|
9384
|
-
Parameters
|
|
9385
|
-
----------
|
|
9386
|
-
file_name : str
|
|
9387
|
-
File name in 2D table writting.
|
|
9388
9086
|
"""
|
|
9389
9087
|
def read_table(self, file_name: str):
|
|
9390
9088
|
"""
|
|
9391
9089
|
2D table reading command.
|
|
9392
|
-
|
|
9393
|
-
Parameters
|
|
9394
|
-
----------
|
|
9395
|
-
file_name_1 : str
|
|
9396
|
-
File name in 2D table reading.
|
|
9397
9090
|
"""
|
|
9398
9091
|
def print_table(self):
|
|
9399
9092
|
"""
|
|
@@ -9431,20 +9124,10 @@ class table_discharge(Group):
|
|
|
9431
9124
|
def write_table(self, file_name: str):
|
|
9432
9125
|
"""
|
|
9433
9126
|
2D table writting command.
|
|
9434
|
-
|
|
9435
|
-
Parameters
|
|
9436
|
-
----------
|
|
9437
|
-
file_name : str
|
|
9438
|
-
File name in 2D table writting.
|
|
9439
9127
|
"""
|
|
9440
9128
|
def read_table(self, file_name: str):
|
|
9441
9129
|
"""
|
|
9442
9130
|
2D table reading command.
|
|
9443
|
-
|
|
9444
|
-
Parameters
|
|
9445
|
-
----------
|
|
9446
|
-
file_name_1 : str
|
|
9447
|
-
File name in 2D table reading.
|
|
9448
9131
|
"""
|
|
9449
9132
|
def print_table(self):
|
|
9450
9133
|
"""
|
|
@@ -9470,20 +9153,10 @@ class table_charge(Group):
|
|
|
9470
9153
|
def write_table(self, file_name: str):
|
|
9471
9154
|
"""
|
|
9472
9155
|
2D table writting command.
|
|
9473
|
-
|
|
9474
|
-
Parameters
|
|
9475
|
-
----------
|
|
9476
|
-
file_name : str
|
|
9477
|
-
File name in 2D table writting.
|
|
9478
9156
|
"""
|
|
9479
9157
|
def read_table(self, file_name: str):
|
|
9480
9158
|
"""
|
|
9481
9159
|
2D table reading command.
|
|
9482
|
-
|
|
9483
|
-
Parameters
|
|
9484
|
-
----------
|
|
9485
|
-
file_name_1 : str
|
|
9486
|
-
File name in 2D table reading.
|
|
9487
9160
|
"""
|
|
9488
9161
|
def print_table(self):
|
|
9489
9162
|
"""
|
|
@@ -9725,20 +9398,10 @@ class rate_table(Group):
|
|
|
9725
9398
|
def write_table(self, file_name: str):
|
|
9726
9399
|
"""
|
|
9727
9400
|
2D table writting command.
|
|
9728
|
-
|
|
9729
|
-
Parameters
|
|
9730
|
-
----------
|
|
9731
|
-
file_name : str
|
|
9732
|
-
File name in 2D table writting.
|
|
9733
9401
|
"""
|
|
9734
9402
|
def read_table(self, file_name: str):
|
|
9735
9403
|
"""
|
|
9736
9404
|
2D table reading command.
|
|
9737
|
-
|
|
9738
|
-
Parameters
|
|
9739
|
-
----------
|
|
9740
|
-
file_name_1 : str
|
|
9741
|
-
File name in 2D table reading.
|
|
9742
9405
|
"""
|
|
9743
9406
|
def print_table(self):
|
|
9744
9407
|
"""
|
|
@@ -9982,20 +9645,10 @@ class capacity_fade_table(Group):
|
|
|
9982
9645
|
def write_table(self, file_name: str):
|
|
9983
9646
|
"""
|
|
9984
9647
|
2D table writting command.
|
|
9985
|
-
|
|
9986
|
-
Parameters
|
|
9987
|
-
----------
|
|
9988
|
-
file_name : str
|
|
9989
|
-
File name in 2D table writting.
|
|
9990
9648
|
"""
|
|
9991
9649
|
def read_table(self, file_name: str):
|
|
9992
9650
|
"""
|
|
9993
9651
|
2D table reading command.
|
|
9994
|
-
|
|
9995
|
-
Parameters
|
|
9996
|
-
----------
|
|
9997
|
-
file_name_1 : str
|
|
9998
|
-
File name in 2D table reading.
|
|
9999
9652
|
"""
|
|
10000
9653
|
def print_table(self):
|
|
10001
9654
|
"""
|
|
@@ -10069,20 +9722,10 @@ class cycle_life_table(Group):
|
|
|
10069
9722
|
def write_table(self, file_name: str):
|
|
10070
9723
|
"""
|
|
10071
9724
|
2D table writting command.
|
|
10072
|
-
|
|
10073
|
-
Parameters
|
|
10074
|
-
----------
|
|
10075
|
-
file_name : str
|
|
10076
|
-
File name in 2D table writting.
|
|
10077
9725
|
"""
|
|
10078
9726
|
def read_table(self, file_name: str):
|
|
10079
9727
|
"""
|
|
10080
9728
|
2D table reading command.
|
|
10081
|
-
|
|
10082
|
-
Parameters
|
|
10083
|
-
----------
|
|
10084
|
-
file_name_1 : str
|
|
10085
|
-
File name in 2D table reading.
|
|
10086
9729
|
"""
|
|
10087
9730
|
def print_table(self):
|
|
10088
9731
|
"""
|
|
@@ -10792,21 +10435,6 @@ class rom_data_creator_tool(Group):
|
|
|
10792
10435
|
def add_rom_parameter(self, parameter_type: str, entity_list: list[str], group_value: float | str, individual_or_group: bool, individual_value: bool, value_list: list[float | str]):
|
|
10793
10436
|
"""
|
|
10794
10437
|
Add parameter command.
|
|
10795
|
-
|
|
10796
|
-
Parameters
|
|
10797
|
-
----------
|
|
10798
|
-
parameter_type : str
|
|
10799
|
-
Set parameter type.
|
|
10800
|
-
entity_list : List
|
|
10801
|
-
Entity list name.
|
|
10802
|
-
group_value : real
|
|
10803
|
-
Set group value.
|
|
10804
|
-
individual_or_group : bool
|
|
10805
|
-
Set as-group option.
|
|
10806
|
-
individual_value : bool
|
|
10807
|
-
Set individual value for different entities in the group.
|
|
10808
|
-
value_list : List
|
|
10809
|
-
Set values for the different entities in the group.
|
|
10810
10438
|
"""
|
|
10811
10439
|
def rom_data_creator(self, rom_type: int):
|
|
10812
10440
|
"""
|
|
@@ -30973,11 +30601,6 @@ class perforated_wall(Group):
|
|
|
30973
30601
|
def read_input_file(self, file_name: str):
|
|
30974
30602
|
"""
|
|
30975
30603
|
'read_input_file' command.
|
|
30976
|
-
|
|
30977
|
-
Parameters
|
|
30978
|
-
----------
|
|
30979
|
-
file_name : str
|
|
30980
|
-
'file_name' child.
|
|
30981
30604
|
"""
|
|
30982
30605
|
class degassing_verbosity(Integer, AllowedValuesMixin):
|
|
30983
30606
|
version: str
|
|
@@ -31850,15 +31473,6 @@ class reference_values(Group):
|
|
|
31850
31473
|
def compute(self, from_zone_type: str, from_zone_name: str, phase: str):
|
|
31851
31474
|
"""
|
|
31852
31475
|
'compute' command.
|
|
31853
|
-
|
|
31854
|
-
Parameters
|
|
31855
|
-
----------
|
|
31856
|
-
from_zone_type : str
|
|
31857
|
-
'from_zone_type' child.
|
|
31858
|
-
from_zone_name : str
|
|
31859
|
-
'from_zone_name' child.
|
|
31860
|
-
phase : str
|
|
31861
|
-
'phase' child.
|
|
31862
31476
|
"""
|
|
31863
31477
|
def list_values(self):
|
|
31864
31478
|
"""
|
|
@@ -32197,11 +31811,6 @@ class named_expressions(NamedObject[named_expressions_child]):
|
|
|
32197
31811
|
def compute(self, names: list[str]):
|
|
32198
31812
|
"""
|
|
32199
31813
|
'compute' command.
|
|
32200
|
-
|
|
32201
|
-
Parameters
|
|
32202
|
-
----------
|
|
32203
|
-
names : List
|
|
32204
|
-
'names' child.
|
|
32205
31814
|
"""
|
|
32206
31815
|
child_object_type: named_expressions_child
|
|
32207
31816
|
class enabled_36(Boolean):
|
|
@@ -32395,11 +32004,6 @@ class faces(NamedObject[faces_child]):
|
|
|
32395
32004
|
def list_face(self, face_name: str):
|
|
32396
32005
|
"""
|
|
32397
32006
|
'list_face' command.
|
|
32398
|
-
|
|
32399
|
-
Parameters
|
|
32400
|
-
----------
|
|
32401
|
-
face_name : str
|
|
32402
|
-
'face_name' child.
|
|
32403
32007
|
"""
|
|
32404
32008
|
child_object_type: faces_child
|
|
32405
32009
|
class bodies_child(Group):
|
|
@@ -36232,28 +35836,10 @@ class profiles(Group):
|
|
|
36232
35836
|
def display_profile_surface(self, profile_name: str, field_contour: bool, field_variable: str):
|
|
36233
35837
|
"""
|
|
36234
35838
|
Display Profile Surface/field rendering command.
|
|
36235
|
-
|
|
36236
|
-
Parameters
|
|
36237
|
-
----------
|
|
36238
|
-
profile_name : str
|
|
36239
|
-
Profile name.
|
|
36240
|
-
field_contour : bool
|
|
36241
|
-
Field contour?.
|
|
36242
|
-
field_variable : str
|
|
36243
|
-
Field variable.
|
|
36244
35839
|
"""
|
|
36245
35840
|
def set_preference_profile_point_cloud_data(self, profile_point_marker: str, profile_point_marker_size: float | str, profile_point_marker_color: str):
|
|
36246
35841
|
"""
|
|
36247
35842
|
Profile Point attributes command.
|
|
36248
|
-
|
|
36249
|
-
Parameters
|
|
36250
|
-
----------
|
|
36251
|
-
profile_point_marker : str
|
|
36252
|
-
Profile point marker.
|
|
36253
|
-
profile_point_marker_size : real
|
|
36254
|
-
Profile point marker size.
|
|
36255
|
-
profile_point_marker_color : str
|
|
36256
|
-
Profile point marker color.
|
|
36257
35843
|
"""
|
|
36258
35844
|
def overlay_profile_point_cloud_data(self, overlay: bool, profile_name: str, graphics_object: str):
|
|
36259
35845
|
"""
|
|
@@ -36292,38 +35878,18 @@ class profiles(Group):
|
|
|
36292
35878
|
def list_profile_parameters(self, profile_name: str):
|
|
36293
35879
|
"""
|
|
36294
35880
|
List-profile-parameters-command.
|
|
36295
|
-
|
|
36296
|
-
Parameters
|
|
36297
|
-
----------
|
|
36298
|
-
profile_name : str
|
|
36299
|
-
Profile name.
|
|
36300
35881
|
"""
|
|
36301
35882
|
def list_profile_parameters_with_value(self, profile_name: str):
|
|
36302
35883
|
"""
|
|
36303
35884
|
List-profile-parameters-with-value-command.
|
|
36304
|
-
|
|
36305
|
-
Parameters
|
|
36306
|
-
----------
|
|
36307
|
-
profile_name : str
|
|
36308
|
-
Profile name.
|
|
36309
35885
|
"""
|
|
36310
35886
|
def list_profile_fields(self, profile_name: str):
|
|
36311
35887
|
"""
|
|
36312
35888
|
List-profile-fields-command.
|
|
36313
|
-
|
|
36314
|
-
Parameters
|
|
36315
|
-
----------
|
|
36316
|
-
profile_name : str
|
|
36317
|
-
Profile name.
|
|
36318
35889
|
"""
|
|
36319
35890
|
def delete(self, profile_name: str):
|
|
36320
35891
|
"""
|
|
36321
35892
|
Delete-profile-command.
|
|
36322
|
-
|
|
36323
|
-
Parameters
|
|
36324
|
-
----------
|
|
36325
|
-
profile_name : str
|
|
36326
|
-
Profile name.
|
|
36327
35893
|
"""
|
|
36328
35894
|
def delete_all(self):
|
|
36329
35895
|
"""
|
|
@@ -42141,58 +41707,26 @@ class execute_commands(Group):
|
|
|
42141
41707
|
def enable(self, command_name: str):
|
|
42142
41708
|
"""
|
|
42143
41709
|
Enable an execute-command.
|
|
42144
|
-
|
|
42145
|
-
Parameters
|
|
42146
|
-
----------
|
|
42147
|
-
command_name : str
|
|
42148
|
-
'command_name' child.
|
|
42149
41710
|
"""
|
|
42150
41711
|
def disable(self, command_name: str):
|
|
42151
41712
|
"""
|
|
42152
41713
|
Disable an execute-command.
|
|
42153
|
-
|
|
42154
|
-
Parameters
|
|
42155
|
-
----------
|
|
42156
|
-
command_name : str
|
|
42157
|
-
'command_name' child.
|
|
42158
41714
|
"""
|
|
42159
41715
|
def copy(self, command_name: str):
|
|
42160
41716
|
"""
|
|
42161
41717
|
Copy an execute-command.
|
|
42162
|
-
|
|
42163
|
-
Parameters
|
|
42164
|
-
----------
|
|
42165
|
-
command_name : str
|
|
42166
|
-
'command_name' child.
|
|
42167
41718
|
"""
|
|
42168
41719
|
def delete(self, command_name: str):
|
|
42169
41720
|
"""
|
|
42170
41721
|
Delete an execute-command.
|
|
42171
|
-
|
|
42172
|
-
Parameters
|
|
42173
|
-
----------
|
|
42174
|
-
command_name : str
|
|
42175
|
-
'command_name' child.
|
|
42176
41722
|
"""
|
|
42177
41723
|
def export(self, command_name: list[str], tsv_file_name: str):
|
|
42178
41724
|
"""
|
|
42179
41725
|
Export execute-commands to a TSV file.
|
|
42180
|
-
|
|
42181
|
-
Parameters
|
|
42182
|
-
----------
|
|
42183
|
-
command_name : List
|
|
42184
|
-
'command_name' child.
|
|
42185
|
-
tsv_file_name : str
|
|
42186
|
-
'tsv_file_name' child.
|
|
42187
41726
|
"""
|
|
42188
41727
|
def import_(self, tsv_file_name: str):
|
|
42189
41728
|
"""
|
|
42190
41729
|
Import execute-commands from a TSV file.
|
|
42191
|
-
|
|
42192
|
-
Parameters
|
|
42193
|
-
----------
|
|
42194
|
-
tsv_file_name_1 : str
|
|
42195
|
-
'tsv_file_name' child.
|
|
42196
41730
|
"""
|
|
42197
41731
|
class name_8(String):
|
|
42198
41732
|
version: str
|
|
@@ -42585,13 +42119,6 @@ class case_modification(Group):
|
|
|
42585
42119
|
def export_modifications(self, command_list: list[str], filename: str):
|
|
42586
42120
|
"""
|
|
42587
42121
|
Export all case modifications to a tsv file.
|
|
42588
|
-
|
|
42589
|
-
Parameters
|
|
42590
|
-
----------
|
|
42591
|
-
command_list : List
|
|
42592
|
-
'command_list' child.
|
|
42593
|
-
filename_2 : str
|
|
42594
|
-
'filename' child.
|
|
42595
42122
|
"""
|
|
42596
42123
|
def continue_strategy_execution(self):
|
|
42597
42124
|
"""
|
|
@@ -47627,11 +47154,6 @@ class picture(Group):
|
|
|
47627
47154
|
def save_picture(self, file_name: str):
|
|
47628
47155
|
"""
|
|
47629
47156
|
'save_picture' command.
|
|
47630
|
-
|
|
47631
|
-
Parameters
|
|
47632
|
-
----------
|
|
47633
|
-
file_name : str
|
|
47634
|
-
'file_name' child.
|
|
47635
47157
|
"""
|
|
47636
47158
|
def list_color_mode(self):
|
|
47637
47159
|
"""
|
|
@@ -47866,11 +47388,6 @@ class display_states(NamedObject[display_states_child]):
|
|
|
47866
47388
|
def use_active(self, state_name: str):
|
|
47867
47389
|
"""
|
|
47868
47390
|
'use_active' command.
|
|
47869
|
-
|
|
47870
|
-
Parameters
|
|
47871
|
-
----------
|
|
47872
|
-
state_name : str
|
|
47873
|
-
'state_name' child.
|
|
47874
47391
|
"""
|
|
47875
47392
|
def restore_state(self, state_name: str):
|
|
47876
47393
|
"""
|
|
@@ -48650,15 +48167,6 @@ class pulse(Group):
|
|
|
48650
48167
|
def write(self, object_name: str, write_format: str, file_name: str):
|
|
48651
48168
|
"""
|
|
48652
48169
|
'write' command.
|
|
48653
|
-
|
|
48654
|
-
Parameters
|
|
48655
|
-
----------
|
|
48656
|
-
object_name : str
|
|
48657
|
-
'object_name' child.
|
|
48658
|
-
write_format : str
|
|
48659
|
-
'write_format' child.
|
|
48660
|
-
file_name : str
|
|
48661
|
-
'file_name' child.
|
|
48662
48170
|
"""
|
|
48663
48171
|
class name_12(String, AllowedValuesMixin):
|
|
48664
48172
|
version: str
|
|
@@ -49653,11 +49161,6 @@ class scene_animation(Group):
|
|
|
49653
49161
|
def read_animation(self, file_name: str):
|
|
49654
49162
|
"""
|
|
49655
49163
|
'read_animation' command.
|
|
49656
|
-
|
|
49657
|
-
Parameters
|
|
49658
|
-
----------
|
|
49659
|
-
file_name_1 : str
|
|
49660
|
-
'file_name' child.
|
|
49661
49164
|
"""
|
|
49662
49165
|
def write_animation(self, format_name: str, file_name: str):
|
|
49663
49166
|
"""
|
|
@@ -49919,36 +49422,10 @@ class plot_write_sample(Group):
|
|
|
49919
49422
|
def plot_sample(self, sample: str, variable_to_sample: str, weighting_variable: str, correlation_variable: str, file_name: str):
|
|
49920
49423
|
"""
|
|
49921
49424
|
'plot_sample' command.
|
|
49922
|
-
|
|
49923
|
-
Parameters
|
|
49924
|
-
----------
|
|
49925
|
-
sample : str
|
|
49926
|
-
'sample' child.
|
|
49927
|
-
variable_to_sample : str
|
|
49928
|
-
'variable_to_sample' child.
|
|
49929
|
-
weighting_variable : str
|
|
49930
|
-
'weighting_variable' child.
|
|
49931
|
-
correlation_variable : str
|
|
49932
|
-
'correlation_variable' child.
|
|
49933
|
-
file_name : str
|
|
49934
|
-
'file_name' child.
|
|
49935
49425
|
"""
|
|
49936
49426
|
def write_sample(self, sample: str, variable_to_sample: str, weighting_variable: str, correlation_variable: str, file_name: str):
|
|
49937
49427
|
"""
|
|
49938
49428
|
'write_sample' command.
|
|
49939
|
-
|
|
49940
|
-
Parameters
|
|
49941
|
-
----------
|
|
49942
|
-
sample : str
|
|
49943
|
-
'sample' child.
|
|
49944
|
-
variable_to_sample : str
|
|
49945
|
-
'variable_to_sample' child.
|
|
49946
|
-
weighting_variable : str
|
|
49947
|
-
'weighting_variable' child.
|
|
49948
|
-
correlation_variable : str
|
|
49949
|
-
'correlation_variable' child.
|
|
49950
|
-
file_name : str
|
|
49951
|
-
'file_name' child.
|
|
49952
49429
|
"""
|
|
49953
49430
|
class use_weighting(Boolean):
|
|
49954
49431
|
version: str
|
|
@@ -50002,13 +49479,6 @@ class setup_reduction(Group):
|
|
|
50002
49479
|
def set_maximum(self, sample_var: str, max_val: float | str):
|
|
50003
49480
|
"""
|
|
50004
49481
|
'set_maximum' command.
|
|
50005
|
-
|
|
50006
|
-
Parameters
|
|
50007
|
-
----------
|
|
50008
|
-
sample_var : str
|
|
50009
|
-
'sample_var' child.
|
|
50010
|
-
max_val : real
|
|
50011
|
-
'max_val' child.
|
|
50012
49482
|
"""
|
|
50013
49483
|
def use_logarithmic(self, sample_var: str, enable_log: bool):
|
|
50014
49484
|
"""
|
|
@@ -50098,11 +49568,6 @@ class histogram_1(Group):
|
|
|
50098
49568
|
def delete_sample(self, sample: str):
|
|
50099
49569
|
"""
|
|
50100
49570
|
'delete_sample' command.
|
|
50101
|
-
|
|
50102
|
-
Parameters
|
|
50103
|
-
----------
|
|
50104
|
-
sample : str
|
|
50105
|
-
'sample' child.
|
|
50106
49571
|
"""
|
|
50107
49572
|
def list_samples(self):
|
|
50108
49573
|
"""
|
|
@@ -50147,44 +49612,10 @@ class sample_trajectories(Group):
|
|
|
50147
49612
|
def compute(self, injections: list[str], boundaries: list[str], lines: list[str], planes: list[str], op_udf: str, append_sample: bool, accumulate_rates: bool):
|
|
50148
49613
|
"""
|
|
50149
49614
|
'compute' command.
|
|
50150
|
-
|
|
50151
|
-
Parameters
|
|
50152
|
-
----------
|
|
50153
|
-
injections : List
|
|
50154
|
-
'injections' child.
|
|
50155
|
-
boundaries : List
|
|
50156
|
-
'boundaries' child.
|
|
50157
|
-
lines : List
|
|
50158
|
-
Select surface.
|
|
50159
|
-
planes : List
|
|
50160
|
-
Select surface.
|
|
50161
|
-
op_udf : str
|
|
50162
|
-
'op_udf' child.
|
|
50163
|
-
append_sample : bool
|
|
50164
|
-
'append_sample' child.
|
|
50165
|
-
accumulate_rates : bool
|
|
50166
|
-
'accumulate_rates' child.
|
|
50167
49615
|
"""
|
|
50168
49616
|
def start_file_write(self, injections: list[str], boundaries: list[str], lines: list[str], planes: list[str], op_udf: str, append_sample: bool, accumulate_rates: bool):
|
|
50169
49617
|
"""
|
|
50170
49618
|
'start_file_write' command.
|
|
50171
|
-
|
|
50172
|
-
Parameters
|
|
50173
|
-
----------
|
|
50174
|
-
injections : List
|
|
50175
|
-
'injections' child.
|
|
50176
|
-
boundaries : List
|
|
50177
|
-
'boundaries' child.
|
|
50178
|
-
lines : List
|
|
50179
|
-
Select surface.
|
|
50180
|
-
planes : List
|
|
50181
|
-
Select surface.
|
|
50182
|
-
op_udf : str
|
|
50183
|
-
'op_udf' child.
|
|
50184
|
-
append_sample : bool
|
|
50185
|
-
'append_sample' child.
|
|
50186
|
-
accumulate_rates : bool
|
|
50187
|
-
'accumulate_rates' child.
|
|
50188
49619
|
"""
|
|
50189
49620
|
def stop_file_write(self):
|
|
50190
49621
|
"""
|
|
@@ -51461,21 +50892,6 @@ class report_2(Group):
|
|
|
51461
50892
|
def vbm(self, output_quantity: str, rotor_name: str, scale_output: bool, write_to_file: bool, file_name: str, append: bool):
|
|
51462
50893
|
"""
|
|
51463
50894
|
'vbm' command.
|
|
51464
|
-
|
|
51465
|
-
Parameters
|
|
51466
|
-
----------
|
|
51467
|
-
output_quantity : str
|
|
51468
|
-
'output_quantity' child.
|
|
51469
|
-
rotor_name : str
|
|
51470
|
-
'rotor_name' child.
|
|
51471
|
-
scale_output : bool
|
|
51472
|
-
'scale_output' child.
|
|
51473
|
-
write_to_file : bool
|
|
51474
|
-
'write_to_file' child.
|
|
51475
|
-
file_name : str
|
|
51476
|
-
'file_name' child.
|
|
51477
|
-
append : bool
|
|
51478
|
-
'append' child.
|
|
51479
50895
|
"""
|
|
51480
50896
|
class results(Group):
|
|
51481
50897
|
version: str
|
|
@@ -55938,13 +55354,6 @@ class network_2(Group):
|
|
|
55938
55354
|
def kill_node(self, compute_node: int, invalidate_case: bool):
|
|
55939
55355
|
"""
|
|
55940
55356
|
'kill_node' command.
|
|
55941
|
-
|
|
55942
|
-
Parameters
|
|
55943
|
-
----------
|
|
55944
|
-
compute_node : int
|
|
55945
|
-
'compute_node' child.
|
|
55946
|
-
invalidate_case : bool
|
|
55947
|
-
'invalidate_case' child.
|
|
55948
55357
|
"""
|
|
55949
55358
|
def spawn_node(self, hostname: str, username: str):
|
|
55950
55359
|
"""
|