ansys-systemcoupling-core 0.7.0__py3-none-any.whl → 0.9.0__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-systemcoupling-core might be problematic. Click here for more details.

Files changed (166) hide show
  1. ansys/systemcoupling/core/__init__.py +2 -2
  2. ansys/systemcoupling/core/_version.py +1 -1
  3. ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +2 -0
  4. ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +62 -10
  5. ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py +20 -0
  6. ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py +1 -1
  7. ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +15 -15
  8. ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py +80 -0
  9. ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +13 -0
  10. ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +13 -0
  11. ansys/systemcoupling/core/adaptor/api_25_2/abort.py +39 -0
  12. ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +46 -0
  13. ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +43 -0
  14. ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +190 -0
  15. ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py +191 -0
  16. ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +61 -0
  17. ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +32 -0
  18. ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +43 -0
  19. ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +77 -0
  20. ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py +78 -0
  21. ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +42 -0
  22. ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +32 -0
  23. ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +162 -0
  24. ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +40 -0
  25. ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +43 -0
  26. ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
  27. ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +303 -0
  28. ansys/systemcoupling/core/adaptor/api_25_2/apip.py +33 -0
  29. ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +44 -0
  30. ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
  31. ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +64 -0
  32. ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +46 -0
  33. ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +40 -0
  34. ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +56 -0
  35. ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +62 -0
  36. ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +18 -0
  37. ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +41 -0
  38. ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +20 -0
  39. ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +42 -0
  40. ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +23 -0
  41. ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +272 -0
  42. ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +29 -0
  43. ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +20 -0
  44. ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +187 -0
  45. ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +28 -0
  46. ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +42 -0
  47. ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +96 -0
  48. ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +256 -0
  49. ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +24 -0
  50. ansys/systemcoupling/core/adaptor/api_25_2/expression.py +20 -0
  51. ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +36 -0
  52. ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +20 -0
  53. ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +46 -0
  54. ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +24 -0
  55. ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +77 -0
  56. ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +20 -0
  57. ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +164 -0
  58. ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +41 -0
  59. ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +29 -0
  60. ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
  61. ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +13 -0
  62. ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +29 -0
  63. ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +31 -0
  64. ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +25 -0
  65. ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +52 -0
  66. ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +13 -0
  67. ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +32 -0
  68. ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +43 -0
  69. ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +155 -0
  70. ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +36 -0
  71. ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +36 -0
  72. ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +27 -0
  73. ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +25 -0
  74. ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +114 -0
  75. ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +39 -0
  76. ansys/systemcoupling/core/adaptor/api_25_2/library.py +37 -0
  77. ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +20 -0
  78. ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +100 -0
  79. ansys/systemcoupling/core/adaptor/api_25_2/map.py +19 -0
  80. ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +249 -0
  81. ansys/systemcoupling/core/adaptor/api_25_2/open.py +102 -0
  82. ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +56 -0
  83. ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +37 -0
  84. ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +134 -0
  85. ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +20 -0
  86. ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +60 -0
  87. ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +138 -0
  88. ansys/systemcoupling/core/adaptor/api_25_2/properties.py +36 -0
  89. ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +46 -0
  90. ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +20 -0
  91. ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +71 -0
  92. ansys/systemcoupling/core/adaptor/api_25_2/region.py +20 -0
  93. ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +71 -0
  94. ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +14 -0
  95. ansys/systemcoupling/core/adaptor/api_25_2/results.py +89 -0
  96. ansys/systemcoupling/core/adaptor/api_25_2/save.py +51 -0
  97. ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +54 -0
  98. ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +259 -0
  99. ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +75 -0
  100. ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +25 -0
  101. ansys/systemcoupling/core/adaptor/api_25_2/side.py +20 -0
  102. ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +56 -0
  103. ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +117 -0
  104. ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +134 -0
  105. ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
  106. ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +157 -0
  107. ansys/systemcoupling/core/adaptor/api_25_2/step.py +57 -0
  108. ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +21 -0
  109. ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +62 -0
  110. ansys/systemcoupling/core/adaptor/api_25_2/type.py +39 -0
  111. ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +158 -0
  112. ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +43 -0
  113. ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +19 -0
  114. ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +61 -0
  115. ansys/systemcoupling/core/adaptor/api_25_2/variable.py +20 -0
  116. ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +231 -0
  117. ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +21 -0
  118. ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +46 -0
  119. ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +32 -0
  120. ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +1 -1
  121. ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +1 -1
  122. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +5 -4
  123. ansys/systemcoupling/core/adaptor/impl/root_source.py +1 -1
  124. ansys/systemcoupling/core/adaptor/impl/static_info.py +13 -6
  125. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +1 -1
  126. ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +1 -1
  127. ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
  128. ansys/systemcoupling/core/charts/chart_datatypes.py +1 -1
  129. ansys/systemcoupling/core/charts/csv_chartdata.py +18 -4
  130. ansys/systemcoupling/core/charts/live_csv_datasource.py +1 -1
  131. ansys/systemcoupling/core/charts/message_dispatcher.py +1 -1
  132. ansys/systemcoupling/core/charts/plot_functions.py +1 -1
  133. ansys/systemcoupling/core/charts/plotdefinition_manager.py +1 -1
  134. ansys/systemcoupling/core/charts/plotter.py +1 -1
  135. ansys/systemcoupling/core/client/grpc_client.py +13 -4
  136. ansys/systemcoupling/core/client/services/command_query.py +4 -13
  137. ansys/systemcoupling/core/client/services/handle_rpc_error.py +64 -0
  138. ansys/systemcoupling/core/client/services/output_stream.py +1 -1
  139. ansys/systemcoupling/core/client/services/process.py +1 -1
  140. ansys/systemcoupling/core/client/services/solution.py +4 -13
  141. ansys/systemcoupling/core/client/syc_container.py +4 -1
  142. ansys/systemcoupling/core/client/syc_process.py +5 -1
  143. ansys/systemcoupling/core/client/variant.py +1 -1
  144. ansys/systemcoupling/core/examples/__init__.py +1 -1
  145. ansys/systemcoupling/core/examples/downloads.py +1 -1
  146. ansys/systemcoupling/core/native_api/__init__.py +1 -1
  147. ansys/systemcoupling/core/native_api/command_metadata.py +1 -1
  148. ansys/systemcoupling/core/native_api/datamodel_metadata.py +1 -1
  149. ansys/systemcoupling/core/native_api/meta_wrapper.py +1 -1
  150. ansys/systemcoupling/core/native_api/native_api.py +1 -1
  151. ansys/systemcoupling/core/native_api/object_path.py +1 -1
  152. ansys/systemcoupling/core/participant/manager.py +1 -1
  153. ansys/systemcoupling/core/participant/mapdl.py +1 -1
  154. ansys/systemcoupling/core/participant/protocol.py +1 -1
  155. ansys/systemcoupling/core/session.py +10 -3
  156. ansys/systemcoupling/core/syc_version.py +3 -3
  157. ansys/systemcoupling/core/util/file_transfer.py +22 -5
  158. ansys/systemcoupling/core/util/logging.py +1 -1
  159. ansys/systemcoupling/core/util/name_util.py +1 -1
  160. ansys/systemcoupling/core/util/pathstr.py +1 -1
  161. ansys/systemcoupling/core/util/state_keys.py +1 -1
  162. ansys/systemcoupling/core/util/yaml_helper.py +1 -1
  163. {ansys_systemcoupling_core-0.7.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/METADATA +35 -21
  164. {ansys_systemcoupling_core-0.7.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/RECORD +166 -53
  165. {ansys_systemcoupling_core-0.7.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/WHEEL +1 -1
  166. {ansys_systemcoupling_core-0.7.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info/licenses}/LICENSE +7 -7
@@ -0,0 +1,44 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class ascii_output(Container):
9
+ """
10
+ Output interface data as ASCII.
11
+ """
12
+
13
+ syc_name = "AsciiOutput"
14
+
15
+ property_names_types = [("option", "Option", "str"), ("format", "Format", "str")]
16
+
17
+ @property
18
+ def option(self) -> str:
19
+ """Control ASCII interface data output.
20
+
21
+ Allowed values:
22
+
23
+ - \"Off\"
24
+ - \"EveryStep\" (for step-based analyses)
25
+ - \"EveryIteration\" (for iteration-based analyses)"""
26
+ return self.get_property_state("option")
27
+
28
+ @option.setter
29
+ def option(self, value: str):
30
+ self.set_property_state("option", value)
31
+
32
+ @property
33
+ def format(self) -> str:
34
+ """ASCII output format type.
35
+
36
+ Allowed values:
37
+
38
+ - \"Axdt\"
39
+ - \"Csv\" """
40
+ return self.get_property_state("format")
41
+
42
+ @format.setter
43
+ def format(self, value: str):
44
+ self.set_property_state("format", value)
@@ -0,0 +1,20 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+ from .attribute_child import attribute_child
8
+
9
+
10
+ class attribute(NamedContainer[attribute_child]):
11
+ """
12
+ Configure a variable's attributes.
13
+ """
14
+
15
+ syc_name = "Attribute"
16
+
17
+ child_object_type: attribute_child = attribute_child
18
+ """
19
+ child_object_type of attribute.
20
+ """
@@ -0,0 +1,64 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+ from .dimensionality import dimensionality
8
+
9
+
10
+ class attribute_child(Container):
11
+ """
12
+ Configure a variable's attributes.
13
+ """
14
+
15
+ syc_name = "child_object_type"
16
+
17
+ child_names = ["dimensionality"]
18
+
19
+ dimensionality: dimensionality = dimensionality
20
+ """
21
+ dimensionality child of attribute_child.
22
+ """
23
+ property_names_types = [
24
+ ("attribute_type", "AttributeType", "str"),
25
+ ("modifiable", "Modifiable", "bool"),
26
+ ("real_value", "RealValue", "RealType"),
27
+ ("integer_value", "IntegerValue", "int"),
28
+ ]
29
+
30
+ @property
31
+ def attribute_type(self) -> str:
32
+ """The type of the attribute (\"Real\" or \"Integer\")."""
33
+ return self.get_property_state("attribute_type")
34
+
35
+ @attribute_type.setter
36
+ def attribute_type(self, value: str):
37
+ self.set_property_state("attribute_type", value)
38
+
39
+ @property
40
+ def modifiable(self) -> bool:
41
+ """Controls whether the attribute is Modifiable"""
42
+ return self.get_property_state("modifiable")
43
+
44
+ @modifiable.setter
45
+ def modifiable(self, value: bool):
46
+ self.set_property_state("modifiable", value)
47
+
48
+ @property
49
+ def real_value(self) -> RealType:
50
+ """Real attribute value."""
51
+ return self.get_property_state("real_value")
52
+
53
+ @real_value.setter
54
+ def real_value(self, value: RealType):
55
+ self.set_property_state("real_value", value)
56
+
57
+ @property
58
+ def integer_value(self) -> int:
59
+ """Integer attribute value."""
60
+ return self.get_property_state("integer_value")
61
+
62
+ @integer_value.setter
63
+ def integer_value(self, value: int):
64
+ self.set_property_state("integer_value", value)
@@ -0,0 +1,46 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class automatic_alignment_options(Container):
9
+ """
10
+ Automatic alignment settings.
11
+ """
12
+
13
+ syc_name = "AutomaticAlignmentOptions"
14
+
15
+ property_names_types = [
16
+ ("alignment_type", "AlignmentType", "str"),
17
+ ("singular_value_tolerance", "SingularValueTolerance", "RealType"),
18
+ ("verbosity", "Verbosity", "int"),
19
+ ]
20
+
21
+ @property
22
+ def alignment_type(self) -> str:
23
+ """Alignment type (\"Covariance\" or \"Moment Covariance\" or \"Inertial Axes\")."""
24
+ return self.get_property_state("alignment_type")
25
+
26
+ @alignment_type.setter
27
+ def alignment_type(self, value: str):
28
+ self.set_property_state("alignment_type", value)
29
+
30
+ @property
31
+ def singular_value_tolerance(self) -> RealType:
32
+ """Tolerance used to compare singular values"""
33
+ return self.get_property_state("singular_value_tolerance")
34
+
35
+ @singular_value_tolerance.setter
36
+ def singular_value_tolerance(self, value: RealType):
37
+ self.set_property_state("singular_value_tolerance", value)
38
+
39
+ @property
40
+ def verbosity(self) -> int:
41
+ """Set to 1 to print additional information about the alignment"""
42
+ return self.get_property_state("verbosity")
43
+
44
+ @verbosity.setter
45
+ def verbosity(self, value: int):
46
+ self.set_property_state("verbosity", value)
@@ -0,0 +1,40 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class available_ports(Container):
9
+ """
10
+ Specify ports available for co-simulation.
11
+ """
12
+
13
+ syc_name = "AvailablePorts"
14
+
15
+ property_names_types = [("option", "Option", "str"), ("range", "Range", "str")]
16
+
17
+ @property
18
+ def option(self) -> str:
19
+ """Specify how available ports are determined.
20
+
21
+ - \"ProgramControlled\" - System Coupling will find an
22
+ available port.
23
+ - \"UserDefined\" - An available port will be chosen,
24
+ if possible, from a specified range."""
25
+ return self.get_property_state("option")
26
+
27
+ @option.setter
28
+ def option(self, value: str):
29
+ self.set_property_state("option", value)
30
+
31
+ @property
32
+ def range(self) -> str:
33
+ """Port range expressed as a comma-separated list of integers and/or
34
+ integer ranges. An integer range is a pair of integers separated
35
+ with a "-" character, specify an inclusive range of port numbers."""
36
+ return self.get_property_state("range")
37
+
38
+ @range.setter
39
+ def range(self, value: str):
40
+ self.set_property_state("range", value)
@@ -0,0 +1,56 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class avoid_data_reconstruction(Container):
9
+ """
10
+ Control whether data reconstruction should be done for elemental intensive data.
11
+ """
12
+
13
+ syc_name = "AvoidDataReconstruction"
14
+
15
+ property_names_types = [
16
+ ("volume_mapping", "VolumeMapping", "bool"),
17
+ ("surface_mapping", "SurfaceMapping", "bool"),
18
+ ("surface_volume_mapping", "SurfaceVolumeMapping", "bool"),
19
+ ("nep", "NEP", "str"),
20
+ ]
21
+
22
+ @property
23
+ def volume_mapping(self) -> bool:
24
+ """UNDOCUMENTED"""
25
+ return self.get_property_state("volume_mapping")
26
+
27
+ @volume_mapping.setter
28
+ def volume_mapping(self, value: bool):
29
+ self.set_property_state("volume_mapping", value)
30
+
31
+ @property
32
+ def surface_mapping(self) -> bool:
33
+ """UNDOCUMENTED"""
34
+ return self.get_property_state("surface_mapping")
35
+
36
+ @surface_mapping.setter
37
+ def surface_mapping(self, value: bool):
38
+ self.set_property_state("surface_mapping", value)
39
+
40
+ @property
41
+ def surface_volume_mapping(self) -> bool:
42
+ """UNDOCUMENTED"""
43
+ return self.get_property_state("surface_volume_mapping")
44
+
45
+ @surface_volume_mapping.setter
46
+ def surface_volume_mapping(self, value: bool):
47
+ self.set_property_state("surface_volume_mapping", value)
48
+
49
+ @property
50
+ def nep(self) -> str:
51
+ """UNDOCUMENTED"""
52
+ return self.get_property_state("nep")
53
+
54
+ @nep.setter
55
+ def nep(self, value: str):
56
+ self.set_property_state("nep", value)
@@ -0,0 +1,62 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ SHASH = "34d232b251e1d4a5a6b88e3deb9591863eac6afb1446228951276f9b1700da9f"
6
+
7
+ from ansys.systemcoupling.core.adaptor.impl.types import *
8
+
9
+ from ._clear_state import _clear_state
10
+ from .clear_state import clear_state
11
+ from .delete_snapshot import delete_snapshot
12
+ from .open import open
13
+ from .open_snapshot import open_snapshot
14
+ from .save import save
15
+ from .save_snapshot import save_snapshot
16
+
17
+
18
+ class case_root(Container):
19
+ """
20
+ 'root' object
21
+ """
22
+
23
+ syc_name = "CaseCommands"
24
+
25
+ command_names = [
26
+ "_clear_state",
27
+ "clear_state",
28
+ "delete_snapshot",
29
+ "open",
30
+ "open_snapshot",
31
+ "save",
32
+ "save_snapshot",
33
+ ]
34
+
35
+ _clear_state: _clear_state = _clear_state
36
+ """
37
+ _clear_state command of case_root.
38
+ """
39
+ clear_state: clear_state = clear_state
40
+ """
41
+ clear_state command of case_root.
42
+ """
43
+ delete_snapshot: delete_snapshot = delete_snapshot
44
+ """
45
+ delete_snapshot command of case_root.
46
+ """
47
+ open: open = open
48
+ """
49
+ open command of case_root.
50
+ """
51
+ open_snapshot: open_snapshot = open_snapshot
52
+ """
53
+ open_snapshot command of case_root.
54
+ """
55
+ save: save = save
56
+ """
57
+ save command of case_root.
58
+ """
59
+ save_snapshot: save_snapshot = save_snapshot
60
+ """
61
+ save_snapshot command of case_root.
62
+ """
@@ -0,0 +1,18 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class clear_state(InjectedCommand):
9
+ """
10
+ Clears the state of the entire System Coupling service, removing all
11
+ data model items, parameter values, and calculated values.
12
+
13
+ Cannot be run after participants have been started.
14
+ """
15
+
16
+ syc_name = "clear_state"
17
+
18
+ cmd_name = "clear_state"
@@ -0,0 +1,41 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class connect_ensight_dvs(Command):
9
+ """
10
+ Allow System Coupling to create DVS clients and connect these clients to
11
+ the DVS server that is already launched in another process/thread remotely.
12
+
13
+ When this command is issued, System Coupling is connected to remote EnSight
14
+ and the in-situ data streaming from system coupling to EnSight is ready.
15
+
16
+ Parameters
17
+ ----------
18
+ port : int, optional
19
+ DVS Server port that System Coupling would connect to. Default value is 50055.
20
+ host_name : str, optional
21
+ DVS Server host name that System Coupling would connect to. Default value is "127.0.0.1".
22
+
23
+ """
24
+
25
+ syc_name = "ConnectEnSightDVS"
26
+
27
+ argument_names = ["port", "host_name"]
28
+
29
+ class port(Integer):
30
+ """
31
+ DVS Server port that System Coupling would connect to. Default value is 50055.
32
+ """
33
+
34
+ syc_name = "Port"
35
+
36
+ class host_name(String):
37
+ """
38
+ DVS Server host name that System Coupling would connect to. Default value is "127.0.0.1".
39
+ """
40
+
41
+ syc_name = "HostName"
@@ -0,0 +1,20 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+ from .coupling_interface_child import coupling_interface_child
8
+
9
+
10
+ class coupling_interface(NamedContainer[coupling_interface_child]):
11
+ """
12
+ Configure a coupling interface.
13
+ """
14
+
15
+ syc_name = "CouplingInterface"
16
+
17
+ child_object_type: coupling_interface_child = coupling_interface_child
18
+ """
19
+ child_object_type of coupling_interface.
20
+ """
@@ -0,0 +1,42 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+ from .data_transfer import data_transfer
8
+ from .mapping_control import mapping_control
9
+ from .side import side
10
+
11
+
12
+ class coupling_interface_child(Container):
13
+ """
14
+ Configure a coupling interface.
15
+ """
16
+
17
+ syc_name = "child_object_type"
18
+
19
+ child_names = ["side", "data_transfer", "mapping_control"]
20
+
21
+ side: side = side
22
+ """
23
+ side child of coupling_interface_child.
24
+ """
25
+ data_transfer: data_transfer = data_transfer
26
+ """
27
+ data_transfer child of coupling_interface_child.
28
+ """
29
+ mapping_control: mapping_control = mapping_control
30
+ """
31
+ mapping_control child of coupling_interface_child.
32
+ """
33
+ property_names_types = [("display_name", "DisplayName", "str")]
34
+
35
+ @property
36
+ def display_name(self) -> str:
37
+ """Set the display name of an object."""
38
+ return self.get_property_state("display_name")
39
+
40
+ @display_name.setter
41
+ def display_name(self, value: str):
42
+ self.set_property_state("display_name", value)
@@ -0,0 +1,23 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+ from .coupling_participant_child import coupling_participant_child
8
+
9
+
10
+ class coupling_participant(NamedContainer[coupling_participant_child]):
11
+ """
12
+ Configure a coupling participant.
13
+
14
+ These settings are typically populated by using the ``add_participant``
15
+ command.
16
+ """
17
+
18
+ syc_name = "CouplingParticipant"
19
+
20
+ child_object_type: coupling_participant_child = coupling_participant_child
21
+ """
22
+ child_object_type of coupling_participant.
23
+ """