ansys-systemcoupling-core 0.8.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 +1 -1
  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 +11 -2
  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 +1 -1
  156. ansys/systemcoupling/core/syc_version.py +3 -3
  157. ansys/systemcoupling/core/util/file_transfer.py +1 -1
  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.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/METADATA +35 -21
  164. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/RECORD +166 -53
  165. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/WHEEL +1 -1
  166. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info/licenses}/LICENSE +1 -1
@@ -0,0 +1,259 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ SHASH = "bb3a306a5f61f6aa15db0778cc94815e9d4f8176d4c372d9c4eb2c2664921947"
6
+
7
+ from ansys.systemcoupling.core.adaptor.impl.types import *
8
+
9
+ from ._add_participant import _add_participant
10
+ from .activate_hidden import activate_hidden
11
+ from .add_aerodamping_data_transfers import add_aerodamping_data_transfers
12
+ from .add_data_transfer import add_data_transfer
13
+ from .add_data_transfer_by_display_names import add_data_transfer_by_display_names
14
+ from .add_expression_function import add_expression_function
15
+ from .add_flow_boundary_data_transfers import add_flow_boundary_data_transfers
16
+ from .add_fsi_data_transfers import add_fsi_data_transfers
17
+ from .add_interface import add_interface
18
+ from .add_interface_by_display_names import add_interface_by_display_names
19
+ from .add_named_expression import add_named_expression
20
+ from .add_ordered_data_transfers import add_ordered_data_transfers
21
+ from .add_participant import add_participant
22
+ from .add_reference_frame import add_reference_frame
23
+ from .add_thermal_data_transfers import add_thermal_data_transfers
24
+ from .add_transformation import add_transformation
25
+ from .analysis_control import analysis_control
26
+ from .coupling_interface import coupling_interface
27
+ from .coupling_participant import coupling_participant
28
+ from .delete_transformation import delete_transformation
29
+ from .generate_input_file import generate_input_file
30
+ from .get_add_data_transfer_group_commands import get_add_data_transfer_group_commands
31
+ from .get_execution_command import get_execution_command
32
+ from .get_mode_shape_variables import get_mode_shape_variables
33
+ from .get_region_names_for_participant import get_region_names_for_participant
34
+ from .get_setup_summary import get_setup_summary
35
+ from .get_status_messages import get_status_messages
36
+ from .get_supported_participant_types import get_supported_participant_types
37
+ from .get_thermal_data_transfer_options import get_thermal_data_transfer_options
38
+ from .has_input_file_changed import has_input_file_changed
39
+ from .import_system_coupling_input_file import import_system_coupling_input_file
40
+ from .library import library
41
+ from .output_control import output_control
42
+ from .reload_expression_function_modules import reload_expression_function_modules
43
+ from .solution_control import solution_control
44
+ from .update_participant import update_participant
45
+
46
+
47
+ class setup_root(Container):
48
+ """
49
+ 'root' object
50
+ """
51
+
52
+ syc_name = "SystemCoupling"
53
+
54
+ child_names = [
55
+ "activate_hidden",
56
+ "library",
57
+ "coupling_participant",
58
+ "analysis_control",
59
+ "coupling_interface",
60
+ "solution_control",
61
+ "output_control",
62
+ ]
63
+
64
+ activate_hidden: activate_hidden = activate_hidden
65
+ """
66
+ activate_hidden child of setup_root.
67
+ """
68
+ library: library = library
69
+ """
70
+ library child of setup_root.
71
+ """
72
+ coupling_participant: coupling_participant = coupling_participant
73
+ """
74
+ coupling_participant child of setup_root.
75
+ """
76
+ analysis_control: analysis_control = analysis_control
77
+ """
78
+ analysis_control child of setup_root.
79
+ """
80
+ coupling_interface: coupling_interface = coupling_interface
81
+ """
82
+ coupling_interface child of setup_root.
83
+ """
84
+ solution_control: solution_control = solution_control
85
+ """
86
+ solution_control child of setup_root.
87
+ """
88
+ output_control: output_control = output_control
89
+ """
90
+ output_control child of setup_root.
91
+ """
92
+ command_names = [
93
+ "_add_participant",
94
+ "add_aerodamping_data_transfers",
95
+ "add_data_transfer",
96
+ "add_data_transfer_by_display_names",
97
+ "add_expression_function",
98
+ "add_flow_boundary_data_transfers",
99
+ "add_fsi_data_transfers",
100
+ "add_interface",
101
+ "add_interface_by_display_names",
102
+ "add_named_expression",
103
+ "add_ordered_data_transfers",
104
+ "add_participant",
105
+ "add_reference_frame",
106
+ "add_thermal_data_transfers",
107
+ "add_transformation",
108
+ "delete_transformation",
109
+ "generate_input_file",
110
+ "get_add_data_transfer_group_commands",
111
+ "get_execution_command",
112
+ "get_mode_shape_variables",
113
+ "get_region_names_for_participant",
114
+ "get_setup_summary",
115
+ "get_status_messages",
116
+ "get_supported_participant_types",
117
+ "get_thermal_data_transfer_options",
118
+ "has_input_file_changed",
119
+ "import_system_coupling_input_file",
120
+ "reload_expression_function_modules",
121
+ "update_participant",
122
+ ]
123
+
124
+ _add_participant: _add_participant = _add_participant
125
+ """
126
+ _add_participant command of setup_root.
127
+ """
128
+ add_aerodamping_data_transfers: add_aerodamping_data_transfers = (
129
+ add_aerodamping_data_transfers
130
+ )
131
+ """
132
+ add_aerodamping_data_transfers command of setup_root.
133
+ """
134
+ add_data_transfer: add_data_transfer = add_data_transfer
135
+ """
136
+ add_data_transfer command of setup_root.
137
+ """
138
+ add_data_transfer_by_display_names: add_data_transfer_by_display_names = (
139
+ add_data_transfer_by_display_names
140
+ )
141
+ """
142
+ add_data_transfer_by_display_names command of setup_root.
143
+ """
144
+ add_expression_function: add_expression_function = add_expression_function
145
+ """
146
+ add_expression_function command of setup_root.
147
+ """
148
+ add_flow_boundary_data_transfers: add_flow_boundary_data_transfers = (
149
+ add_flow_boundary_data_transfers
150
+ )
151
+ """
152
+ add_flow_boundary_data_transfers command of setup_root.
153
+ """
154
+ add_fsi_data_transfers: add_fsi_data_transfers = add_fsi_data_transfers
155
+ """
156
+ add_fsi_data_transfers command of setup_root.
157
+ """
158
+ add_interface: add_interface = add_interface
159
+ """
160
+ add_interface command of setup_root.
161
+ """
162
+ add_interface_by_display_names: add_interface_by_display_names = (
163
+ add_interface_by_display_names
164
+ )
165
+ """
166
+ add_interface_by_display_names command of setup_root.
167
+ """
168
+ add_named_expression: add_named_expression = add_named_expression
169
+ """
170
+ add_named_expression command of setup_root.
171
+ """
172
+ add_ordered_data_transfers: add_ordered_data_transfers = add_ordered_data_transfers
173
+ """
174
+ add_ordered_data_transfers command of setup_root.
175
+ """
176
+ add_participant: add_participant = add_participant
177
+ """
178
+ add_participant command of setup_root.
179
+ """
180
+ add_reference_frame: add_reference_frame = add_reference_frame
181
+ """
182
+ add_reference_frame command of setup_root.
183
+ """
184
+ add_thermal_data_transfers: add_thermal_data_transfers = add_thermal_data_transfers
185
+ """
186
+ add_thermal_data_transfers command of setup_root.
187
+ """
188
+ add_transformation: add_transformation = add_transformation
189
+ """
190
+ add_transformation command of setup_root.
191
+ """
192
+ delete_transformation: delete_transformation = delete_transformation
193
+ """
194
+ delete_transformation command of setup_root.
195
+ """
196
+ generate_input_file: generate_input_file = generate_input_file
197
+ """
198
+ generate_input_file command of setup_root.
199
+ """
200
+ get_add_data_transfer_group_commands: get_add_data_transfer_group_commands = (
201
+ get_add_data_transfer_group_commands
202
+ )
203
+ """
204
+ get_add_data_transfer_group_commands command of setup_root.
205
+ """
206
+ get_execution_command: get_execution_command = get_execution_command
207
+ """
208
+ get_execution_command command of setup_root.
209
+ """
210
+ get_mode_shape_variables: get_mode_shape_variables = get_mode_shape_variables
211
+ """
212
+ get_mode_shape_variables command of setup_root.
213
+ """
214
+ get_region_names_for_participant: get_region_names_for_participant = (
215
+ get_region_names_for_participant
216
+ )
217
+ """
218
+ get_region_names_for_participant command of setup_root.
219
+ """
220
+ get_setup_summary: get_setup_summary = get_setup_summary
221
+ """
222
+ get_setup_summary command of setup_root.
223
+ """
224
+ get_status_messages: get_status_messages = get_status_messages
225
+ """
226
+ get_status_messages command of setup_root.
227
+ """
228
+ get_supported_participant_types: get_supported_participant_types = (
229
+ get_supported_participant_types
230
+ )
231
+ """
232
+ get_supported_participant_types command of setup_root.
233
+ """
234
+ get_thermal_data_transfer_options: get_thermal_data_transfer_options = (
235
+ get_thermal_data_transfer_options
236
+ )
237
+ """
238
+ get_thermal_data_transfer_options command of setup_root.
239
+ """
240
+ has_input_file_changed: has_input_file_changed = has_input_file_changed
241
+ """
242
+ has_input_file_changed command of setup_root.
243
+ """
244
+ import_system_coupling_input_file: import_system_coupling_input_file = (
245
+ import_system_coupling_input_file
246
+ )
247
+ """
248
+ import_system_coupling_input_file command of setup_root.
249
+ """
250
+ reload_expression_function_modules: reload_expression_function_modules = (
251
+ reload_expression_function_modules
252
+ )
253
+ """
254
+ reload_expression_function_modules command of setup_root.
255
+ """
256
+ update_participant: update_participant = update_participant
257
+ """
258
+ update_participant command of setup_root.
259
+ """
@@ -0,0 +1,75 @@
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 show_plot(InjectedCommand):
9
+ """
10
+ Shows plots of transfer values and convergence for data transfers
11
+ of a coupling interface.
12
+
13
+ Parameters
14
+ ----------
15
+ interface_name : str
16
+ Specification of which interface to plot.
17
+ transfer_names : List, optional
18
+ Specification of which data transfers to plot. Defaults
19
+ to ``None``, which means plot all data transfers.
20
+ working_dir : str, optional
21
+ Working directory (defaults = ".").
22
+ show_convergence : bool, optional
23
+ Whether to show convergence plots (defaults to ``True``).
24
+ show_transfer_values : bool, optional
25
+ Whether to show transfer value plots (defaults to ``True``).
26
+
27
+ """
28
+
29
+ syc_name = "show_plot"
30
+
31
+ cmd_name = "show_plot"
32
+
33
+ argument_names = [
34
+ "interface_name",
35
+ "transfer_names",
36
+ "working_dir",
37
+ "show_convergence",
38
+ "show_transfer_values",
39
+ ]
40
+
41
+ class interface_name(String):
42
+ """
43
+ Specification of which interface to plot.
44
+ """
45
+
46
+ syc_name = "interface_name"
47
+
48
+ class transfer_names(StringList):
49
+ """
50
+ Specification of which data transfers to plot. Defaults
51
+ to ``None``, which means plot all data transfers.
52
+ """
53
+
54
+ syc_name = "transfer_names"
55
+
56
+ class working_dir(String):
57
+ """
58
+ Working directory (defaults = ".").
59
+ """
60
+
61
+ syc_name = "working_dir"
62
+
63
+ class show_convergence(Boolean):
64
+ """
65
+ Whether to show convergence plots (defaults to ``True``).
66
+ """
67
+
68
+ syc_name = "show_convergence"
69
+
70
+ class show_transfer_values(Boolean):
71
+ """
72
+ Whether to show transfer value plots (defaults to ``True``).
73
+ """
74
+
75
+ syc_name = "show_transfer_values"
@@ -0,0 +1,25 @@
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 shutdown(Command):
9
+ """
10
+ Interactive command that shuts down a coupled analysis.
11
+
12
+ ``shutdown`` includes ending the coupling run and signaling participants
13
+ to end the run. This produces a clean shutdown, generating the final
14
+ restart point and corresponding results file before disconnecting
15
+ from participants.
16
+
17
+ After participants are disconnected, the coupling service writes
18
+ timing details to the transcript. If participants were started
19
+ automatically, it ends participant processes.
20
+
21
+ When System Coupling disconnects from the analysis and shuts down, the GUI
22
+ Server file is removed from the working directory.
23
+ """
24
+
25
+ syc_name = "Shutdown"
@@ -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 .side_child import side_child
8
+
9
+
10
+ class side(NamedContainer[side_child]):
11
+ """
12
+ Configure one side of a coupling interface.
13
+ """
14
+
15
+ syc_name = "Side"
16
+
17
+ child_object_type: side_child = side_child
18
+ """
19
+ child_object_type of side.
20
+ """
@@ -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 side_child(Container):
9
+ """
10
+ Configure one side of a coupling interface.
11
+ """
12
+
13
+ syc_name = "child_object_type"
14
+
15
+ property_names_types = [
16
+ ("coupling_participant", "CouplingParticipant", "str"),
17
+ ("region_list", "RegionList", "StringListType"),
18
+ ("reference_frame", "ReferenceFrame", "str"),
19
+ ("instancing", "Instancing", "str"),
20
+ ]
21
+
22
+ @property
23
+ def coupling_participant(self) -> str:
24
+ """Name of the participant on this interface side."""
25
+ return self.get_property_state("coupling_participant")
26
+
27
+ @coupling_participant.setter
28
+ def coupling_participant(self, value: str):
29
+ self.set_property_state("coupling_participant", value)
30
+
31
+ @property
32
+ def region_list(self) -> StringListType:
33
+ """List of participant regions involved in this interface side."""
34
+ return self.get_property_state("region_list")
35
+
36
+ @region_list.setter
37
+ def region_list(self, value: StringListType):
38
+ self.set_property_state("region_list", value)
39
+
40
+ @property
41
+ def reference_frame(self) -> str:
42
+ """Reference frame of this side."""
43
+ return self.get_property_state("reference_frame")
44
+
45
+ @reference_frame.setter
46
+ def reference_frame(self, value: str):
47
+ self.set_property_state("reference_frame", value)
48
+
49
+ @property
50
+ def instancing(self) -> str:
51
+ """Instancing name for this side (leave unset if not required)."""
52
+ return self.get_property_state("instancing")
53
+
54
+ @instancing.setter
55
+ def instancing(self, value: str):
56
+ self.set_property_state("instancing", value)
@@ -0,0 +1,117 @@
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 .available_ports import available_ports
8
+
9
+
10
+ class solution_control(Container):
11
+ """
12
+ Configure solution controls.
13
+ """
14
+
15
+ syc_name = "SolutionControl"
16
+
17
+ child_names = ["available_ports"]
18
+
19
+ available_ports: available_ports = available_ports
20
+ """
21
+ available_ports child of solution_control.
22
+ """
23
+ property_names_types = [
24
+ ("duration_option", "DurationOption", "str"),
25
+ ("end_time", "EndTime", "RealType"),
26
+ ("number_of_steps", "NumberOfSteps", "int"),
27
+ ("time_step_size", "TimeStepSize", "RealType"),
28
+ ("minimum_iterations", "MinimumIterations", "int"),
29
+ ("maximum_iterations", "MaximumIterations", "int"),
30
+ ("use_ip_address_when_possible", "UseIPAddressWhenPossible", "str"),
31
+ ("use_local_host_when_possible", "UseLocalHostWhenPossible", "str"),
32
+ ]
33
+
34
+ @property
35
+ def duration_option(self) -> str:
36
+ """Determine how the analysis duration is specified.
37
+
38
+ Allowed values:
39
+
40
+ - \"EndTime\" - Available for transient analyses. Execute coupling
41
+ steps until the analysis reaches the specified end time.
42
+ - \"NumberOfSteps\" - Perform coupling steps until the specified
43
+ number of steps is reached."""
44
+ return self.get_property_state("duration_option")
45
+
46
+ @duration_option.setter
47
+ def duration_option(self, value: str):
48
+ self.set_property_state("duration_option", value)
49
+
50
+ @property
51
+ def end_time(self) -> RealType:
52
+ """Set co-simulation end time."""
53
+ return self.get_property_state("end_time")
54
+
55
+ @end_time.setter
56
+ def end_time(self, value: RealType):
57
+ self.set_property_state("end_time", value)
58
+
59
+ @property
60
+ def number_of_steps(self) -> int:
61
+ """Set number of coupling steps."""
62
+ return self.get_property_state("number_of_steps")
63
+
64
+ @number_of_steps.setter
65
+ def number_of_steps(self, value: int):
66
+ self.set_property_state("number_of_steps", value)
67
+
68
+ @property
69
+ def time_step_size(self) -> RealType:
70
+ """Set coupling time step size."""
71
+ return self.get_property_state("time_step_size")
72
+
73
+ @time_step_size.setter
74
+ def time_step_size(self, value: RealType):
75
+ self.set_property_state("time_step_size", value)
76
+
77
+ @property
78
+ def minimum_iterations(self) -> int:
79
+ """Set minimum iterations within coupling step."""
80
+ return self.get_property_state("minimum_iterations")
81
+
82
+ @minimum_iterations.setter
83
+ def minimum_iterations(self, value: int):
84
+ self.set_property_state("minimum_iterations", value)
85
+
86
+ @property
87
+ def maximum_iterations(self) -> int:
88
+ """Set maximum iterations within coupling step."""
89
+ return self.get_property_state("maximum_iterations")
90
+
91
+ @maximum_iterations.setter
92
+ def maximum_iterations(self, value: int):
93
+ self.set_property_state("maximum_iterations", value)
94
+
95
+ @property
96
+ def use_ip_address_when_possible(self) -> str:
97
+ """If True (the default), prefer to use IPv4 address rather than hostname for
98
+ participant server connections. There is no guarantee that this request
99
+ can be satisfied for all participants."""
100
+ return self.get_property_state("use_ip_address_when_possible")
101
+
102
+ @use_ip_address_when_possible.setter
103
+ def use_ip_address_when_possible(self, value: str):
104
+ self.set_property_state("use_ip_address_when_possible", value)
105
+
106
+ @property
107
+ def use_local_host_when_possible(self) -> str:
108
+ """If ProgramControlled, use the default behavior for the platform. See
109
+ the user documentation. A value of ON attempts to use the local host
110
+ address rather than network address for participant server connections.
111
+ There is no guarantee that this request can be satisfied for
112
+ all participants."""
113
+ return self.get_property_state("use_local_host_when_possible")
114
+
115
+ @use_local_host_when_possible.setter
116
+ def use_local_host_when_possible(self, value: str):
117
+ self.set_property_state("use_local_host_when_possible", value)
@@ -0,0 +1,134 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ SHASH = "5a1ce2bf8c6b59f120413651ed283c65b2593ebac9c4b8485e0817e00ecbd1e6"
6
+
7
+ from ansys.systemcoupling.core.adaptor.impl.types import *
8
+
9
+ from ._solve import _solve
10
+ from .abort import abort
11
+ from .connect_ensight_dvs import connect_ensight_dvs
12
+ from .create_restart_point import create_restart_point
13
+ from .get_machines import get_machines
14
+ from .get_transformation import get_transformation
15
+ from .initialize import initialize
16
+ from .interrupt import interrupt
17
+ from .map import map
18
+ from .open_results_in_ensight import open_results_in_ensight
19
+ from .partition_participants import partition_participants
20
+ from .show_plot import show_plot
21
+ from .shutdown import shutdown
22
+ from .solve import solve
23
+ from .step import step
24
+ from .update_interfaces import update_interfaces
25
+ from .write_csv_chart_files import write_csv_chart_files
26
+ from .write_ensight import write_ensight
27
+ from .write_target_data import write_target_data
28
+
29
+
30
+ class solution_root(Container):
31
+ """
32
+ 'root' object
33
+ """
34
+
35
+ syc_name = "SolutionCommands"
36
+
37
+ command_names = [
38
+ "_solve",
39
+ "abort",
40
+ "connect_ensight_dvs",
41
+ "create_restart_point",
42
+ "get_machines",
43
+ "get_transformation",
44
+ "initialize",
45
+ "interrupt",
46
+ "map",
47
+ "open_results_in_ensight",
48
+ "partition_participants",
49
+ "show_plot",
50
+ "shutdown",
51
+ "solve",
52
+ "step",
53
+ "update_interfaces",
54
+ "write_csv_chart_files",
55
+ "write_ensight",
56
+ "write_target_data",
57
+ ]
58
+
59
+ _solve: _solve = _solve
60
+ """
61
+ _solve command of solution_root.
62
+ """
63
+ abort: abort = abort
64
+ """
65
+ abort command of solution_root.
66
+ """
67
+ connect_ensight_dvs: connect_ensight_dvs = connect_ensight_dvs
68
+ """
69
+ connect_ensight_dvs command of solution_root.
70
+ """
71
+ create_restart_point: create_restart_point = create_restart_point
72
+ """
73
+ create_restart_point command of solution_root.
74
+ """
75
+ get_machines: get_machines = get_machines
76
+ """
77
+ get_machines command of solution_root.
78
+ """
79
+ get_transformation: get_transformation = get_transformation
80
+ """
81
+ get_transformation command of solution_root.
82
+ """
83
+ initialize: initialize = initialize
84
+ """
85
+ initialize command of solution_root.
86
+ """
87
+ interrupt: interrupt = interrupt
88
+ """
89
+ interrupt command of solution_root.
90
+ """
91
+ map: map = map
92
+ """
93
+ map command of solution_root.
94
+ """
95
+ open_results_in_ensight: open_results_in_ensight = open_results_in_ensight
96
+ """
97
+ open_results_in_ensight command of solution_root.
98
+ """
99
+ partition_participants: partition_participants = partition_participants
100
+ """
101
+ partition_participants command of solution_root.
102
+ """
103
+ show_plot: show_plot = show_plot
104
+ """
105
+ show_plot command of solution_root.
106
+ """
107
+ shutdown: shutdown = shutdown
108
+ """
109
+ shutdown command of solution_root.
110
+ """
111
+ solve: solve = solve
112
+ """
113
+ solve command of solution_root.
114
+ """
115
+ step: step = step
116
+ """
117
+ step command of solution_root.
118
+ """
119
+ update_interfaces: update_interfaces = update_interfaces
120
+ """
121
+ update_interfaces command of solution_root.
122
+ """
123
+ write_csv_chart_files: write_csv_chart_files = write_csv_chart_files
124
+ """
125
+ write_csv_chart_files command of solution_root.
126
+ """
127
+ write_ensight: write_ensight = write_ensight
128
+ """
129
+ write_ensight command of solution_root.
130
+ """
131
+ write_target_data: write_target_data = write_target_data
132
+ """
133
+ write_target_data command of solution_root.
134
+ """