ansys-systemcoupling-core 0.1.3__py3-none-any.whl → 0.3.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 (211) hide show
  1. ansys/systemcoupling/core/__init__.py +27 -17
  2. ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py +70 -0
  3. ansys/systemcoupling/core/adaptor/api_23_2/_solve.py +13 -0
  4. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_participant.py +38 -2
  5. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/analysis_control.py +8 -0
  6. ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +46 -0
  7. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/avoid_data_reconstruction.py +10 -0
  8. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/coupling_participant_child.py +1 -1
  9. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/fmu_parameter_child.py +30 -0
  10. ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +43 -0
  11. ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +20 -0
  12. ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +72 -0
  13. ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +56 -0
  14. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/output_control.py +6 -1
  15. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/setup_root.py +55 -49
  16. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/solution_root.py +48 -36
  17. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/solve.py +1 -1
  18. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/variable_child.py +31 -0
  19. ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py +70 -0
  20. ansys/systemcoupling/core/adaptor/api_24_1/_solve.py +13 -0
  21. ansys/systemcoupling/core/adaptor/api_24_1/abort.py +39 -0
  22. ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py +46 -0
  23. ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer.py +190 -0
  24. ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +191 -0
  25. ansys/systemcoupling/core/adaptor/api_24_1/add_expression_function.py +61 -0
  26. ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +77 -0
  27. ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +78 -0
  28. ansys/systemcoupling/core/adaptor/api_24_1/add_named_expression.py +42 -0
  29. ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +140 -0
  30. ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py +40 -0
  31. ansys/systemcoupling/core/adaptor/api_24_1/add_transformation.py +102 -0
  32. ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +249 -0
  33. ansys/systemcoupling/core/adaptor/api_24_1/apip.py +33 -0
  34. ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py +44 -0
  35. ansys/systemcoupling/core/adaptor/api_24_1/attribute.py +20 -0
  36. ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py +54 -0
  37. ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py +46 -0
  38. ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py +40 -0
  39. ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +46 -0
  40. ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +62 -0
  41. ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +16 -0
  42. ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py +20 -0
  43. ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py +42 -0
  44. ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py +23 -0
  45. ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +230 -0
  46. ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py +29 -0
  47. ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py +20 -0
  48. ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py +187 -0
  49. ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py +28 -0
  50. ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py +42 -0
  51. ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py +96 -0
  52. ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +186 -0
  53. ansys/systemcoupling/core/adaptor/api_24_1/expression.py +20 -0
  54. ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py +36 -0
  55. ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py +20 -0
  56. ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py +46 -0
  57. ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py +24 -0
  58. ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py +67 -0
  59. ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py +20 -0
  60. ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +156 -0
  61. ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py +41 -0
  62. ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py +30 -0
  63. ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py +13 -0
  64. ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py +31 -0
  65. ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py +25 -0
  66. ansys/systemcoupling/core/adaptor/api_24_1/get_snapshots.py +14 -0
  67. ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py +52 -0
  68. ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py +43 -0
  69. ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py +143 -0
  70. ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +36 -0
  71. ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py +36 -0
  72. ansys/systemcoupling/core/adaptor/api_24_1/initialize.py +27 -0
  73. ansys/systemcoupling/core/adaptor/api_24_1/instancing.py +23 -0
  74. ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py +62 -0
  75. ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py +39 -0
  76. ansys/systemcoupling/core/adaptor/api_24_1/library.py +37 -0
  77. ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py +20 -0
  78. ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py +72 -0
  79. ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +229 -0
  80. ansys/systemcoupling/core/adaptor/api_24_1/open.py +102 -0
  81. ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_en_sight.py +56 -0
  82. ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py +37 -0
  83. ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +134 -0
  84. ansys/systemcoupling/core/adaptor/api_24_1/parameter.py +20 -0
  85. ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py +64 -0
  86. ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py +138 -0
  87. ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py +20 -0
  88. ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py +71 -0
  89. ansys/systemcoupling/core/adaptor/api_24_1/region.py +20 -0
  90. ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +72 -0
  91. ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py +14 -0
  92. ansys/systemcoupling/core/adaptor/api_24_1/results.py +89 -0
  93. ansys/systemcoupling/core/adaptor/api_24_1/save.py +51 -0
  94. ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py +54 -0
  95. ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +195 -0
  96. ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py +25 -0
  97. ansys/systemcoupling/core/adaptor/api_24_1/side.py +20 -0
  98. ansys/systemcoupling/core/adaptor/api_24_1/side_child.py +56 -0
  99. ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +103 -0
  100. ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +110 -0
  101. ansys/systemcoupling/core/adaptor/api_24_1/solve.py +30 -0
  102. ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py +157 -0
  103. ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +47 -0
  104. ansys/systemcoupling/core/adaptor/api_24_1/step.py +57 -0
  105. ansys/systemcoupling/core/adaptor/api_24_1/transformation.py +21 -0
  106. ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py +62 -0
  107. ansys/systemcoupling/core/adaptor/api_24_1/type.py +38 -0
  108. ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py +158 -0
  109. ansys/systemcoupling/core/adaptor/api_24_1/update_control.py +44 -0
  110. ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +61 -0
  111. ansys/systemcoupling/core/adaptor/api_24_1/variable.py +20 -0
  112. ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +232 -0
  113. ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py +21 -0
  114. ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py +46 -0
  115. ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +35 -0
  116. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +97 -5
  117. ansys/systemcoupling/core/adaptor/impl/root_source.py +2 -0
  118. ansys/systemcoupling/core/adaptor/impl/static_info.py +69 -40
  119. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +1 -1
  120. ansys/systemcoupling/core/adaptor/impl/types.py +12 -0
  121. ansys/systemcoupling/core/client/grpc_client.py +14 -4
  122. ansys/systemcoupling/core/client/syc_container.py +18 -3
  123. ansys/systemcoupling/core/client/syc_process.py +33 -7
  124. ansys/systemcoupling/core/examples/downloads.py +2 -2
  125. ansys/systemcoupling/core/participant/manager.py +198 -0
  126. ansys/systemcoupling/core/participant/protocol.py +51 -0
  127. ansys/systemcoupling/core/session.py +8 -2
  128. ansys/systemcoupling/core/syc_version.py +82 -0
  129. {ansys_systemcoupling_core-0.1.3.dist-info → ansys_systemcoupling_core-0.3.0.dist-info}/METADATA +27 -25
  130. ansys_systemcoupling_core-0.3.0.dist-info/RECORD +230 -0
  131. {ansys_systemcoupling_core-0.1.3.dist-info → ansys_systemcoupling_core-0.3.0.dist-info}/WHEEL +1 -1
  132. ansys_systemcoupling_core-0.1.3.dist-info/RECORD +0 -123
  133. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/abort.py +0 -0
  134. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/activate_hidden.py +0 -0
  135. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_data_transfer.py +0 -0
  136. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_data_transfer_by_display_names.py +0 -0
  137. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_expression_function.py +0 -0
  138. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_interface.py +0 -0
  139. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_interface_by_display_names.py +0 -0
  140. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_named_expression.py +0 -0
  141. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_reference_frame.py +0 -0
  142. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/add_transformation.py +0 -0
  143. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/apip.py +0 -0
  144. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/ascii_output.py +0 -0
  145. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/attribute.py +0 -0
  146. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/attribute_child.py +0 -0
  147. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/available_ports.py +0 -0
  148. ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/case_root.py +13 -13
  149. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/clear_state.py +0 -0
  150. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/coupling_interface.py +0 -0
  151. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/coupling_interface_child.py +0 -0
  152. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/coupling_participant.py +0 -0
  153. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/create_restart_point.py +0 -0
  154. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/data_transfer.py +0 -0
  155. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/data_transfer_child.py +0 -0
  156. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/delete_snapshot.py +0 -0
  157. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/delete_transformation.py +0 -0
  158. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/dimensionality.py +0 -0
  159. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/execution_control.py +0 -0
  160. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/expression.py +0 -0
  161. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/expression_child.py +0 -0
  162. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/expression_function.py +0 -0
  163. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/expression_function_child.py +0 -0
  164. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/external_data_file.py +0 -0
  165. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/fluent_input.py +0 -0
  166. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/fmu_parameter.py +0 -0
  167. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/generate_input_file.py +0 -0
  168. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/get_execution_command.py +0 -0
  169. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/get_machines.py +0 -0
  170. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/get_region_names_for_participant.py +0 -0
  171. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/get_setup_summary.py +0 -0
  172. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/get_snapshots.py +0 -0
  173. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/get_status_messages.py +0 -0
  174. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/global_stabilization.py +0 -0
  175. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/has_input_file_changed.py +0 -0
  176. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/import_system_coupling_input_file.py +0 -0
  177. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/initialize.py +0 -0
  178. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/instancing.py +0 -0
  179. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/instancing_child.py +0 -0
  180. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/interrupt.py +0 -0
  181. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/library.py +0 -0
  182. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/mapping_control.py +0 -0
  183. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/open.py +0 -0
  184. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/open_snapshot.py +0 -0
  185. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/partition_participants.py +0 -0
  186. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/reference_frame.py +0 -0
  187. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/reference_frame_child.py +0 -0
  188. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/region.py +0 -0
  189. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/region_child.py +0 -0
  190. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/reload_expression_function_modules.py +0 -0
  191. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/results.py +0 -0
  192. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/save.py +0 -0
  193. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/save_snapshot.py +0 -0
  194. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/shutdown.py +0 -0
  195. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/side.py +0 -0
  196. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/side_child.py +0 -0
  197. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/solution_control.py +0 -0
  198. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/stabilization.py +0 -0
  199. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/start_participants.py +0 -0
  200. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/step.py +0 -0
  201. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/transformation.py +0 -0
  202. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/transformation_child.py +0 -0
  203. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/type.py +0 -0
  204. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/unmapped_value_options.py +0 -0
  205. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/update_control.py +0 -0
  206. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/update_participant.py +0 -0
  207. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/variable.py +0 -0
  208. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/write_csv_chart_files.py +0 -0
  209. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_23_2}/write_ensight.py +0 -0
  210. /ansys/systemcoupling/core/adaptor/{api_23_1 → api_24_1}/open_results_in_ensight.py +0 -0
  211. {ansys_systemcoupling_core-0.1.3.dist-info → ansys_systemcoupling_core-0.3.0.dist-info}/LICENSE +0 -0
@@ -2,10 +2,11 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "e31caa885d130e78b88ec2e8887d2f24196dd0c65cc56a2868f7cc08799f5c0f"
5
+ SHASH = "d452d4fc3cb91437bd3661ce0cb39dad813458b231800e10af3246b0c6a508f2"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
9
+ from ._add_participant import _add_participant
9
10
  from .activate_hidden import activate_hidden
10
11
  from .add_data_transfer import add_data_transfer
11
12
  from .add_data_transfer_by_display_names import add_data_transfer_by_display_names
@@ -80,36 +81,31 @@ class setup_root(Container):
80
81
  output_control child of setup_root.
81
82
  """
82
83
  command_names = [
83
- "add_interface",
84
- "add_interface_by_display_names",
84
+ "_add_participant",
85
85
  "add_data_transfer",
86
86
  "add_data_transfer_by_display_names",
87
- "get_region_names_for_participant",
87
+ "add_expression_function",
88
+ "add_interface",
89
+ "add_interface_by_display_names",
90
+ "add_named_expression",
91
+ "add_participant",
88
92
  "add_reference_frame",
89
93
  "add_transformation",
90
94
  "delete_transformation",
91
- "add_participant",
92
- "update_participant",
93
- "get_execution_command",
94
95
  "generate_input_file",
95
- "import_system_coupling_input_file",
96
- "add_named_expression",
97
- "add_expression_function",
98
- "reload_expression_function_modules",
99
- "has_input_file_changed",
96
+ "get_execution_command",
97
+ "get_region_names_for_participant",
100
98
  "get_setup_summary",
101
99
  "get_status_messages",
100
+ "has_input_file_changed",
101
+ "import_system_coupling_input_file",
102
+ "reload_expression_function_modules",
103
+ "update_participant",
102
104
  ]
103
105
 
104
- add_interface: add_interface = add_interface
106
+ _add_participant: _add_participant = _add_participant
105
107
  """
106
- add_interface command of setup_root.
107
- """
108
- add_interface_by_display_names: add_interface_by_display_names = (
109
- add_interface_by_display_names
110
- )
111
- """
112
- add_interface_by_display_names command of setup_root.
108
+ _add_participant command of setup_root.
113
109
  """
114
110
  add_data_transfer: add_data_transfer = add_data_transfer
115
111
  """
@@ -121,11 +117,27 @@ class setup_root(Container):
121
117
  """
122
118
  add_data_transfer_by_display_names command of setup_root.
123
119
  """
124
- get_region_names_for_participant: get_region_names_for_participant = (
125
- get_region_names_for_participant
120
+ add_expression_function: add_expression_function = add_expression_function
121
+ """
122
+ add_expression_function command of setup_root.
123
+ """
124
+ add_interface: add_interface = add_interface
125
+ """
126
+ add_interface command of setup_root.
127
+ """
128
+ add_interface_by_display_names: add_interface_by_display_names = (
129
+ add_interface_by_display_names
126
130
  )
127
131
  """
128
- get_region_names_for_participant command of setup_root.
132
+ add_interface_by_display_names command of setup_root.
133
+ """
134
+ add_named_expression: add_named_expression = add_named_expression
135
+ """
136
+ add_named_expression command of setup_root.
137
+ """
138
+ add_participant: add_participant = add_participant
139
+ """
140
+ add_participant command of setup_root.
129
141
  """
130
142
  add_reference_frame: add_reference_frame = add_reference_frame
131
143
  """
@@ -139,35 +151,37 @@ class setup_root(Container):
139
151
  """
140
152
  delete_transformation command of setup_root.
141
153
  """
142
- add_participant: add_participant = add_participant
143
- """
144
- add_participant command of setup_root.
145
- """
146
- update_participant: update_participant = update_participant
154
+ generate_input_file: generate_input_file = generate_input_file
147
155
  """
148
- update_participant command of setup_root.
156
+ generate_input_file command of setup_root.
149
157
  """
150
158
  get_execution_command: get_execution_command = get_execution_command
151
159
  """
152
160
  get_execution_command command of setup_root.
153
161
  """
154
- generate_input_file: generate_input_file = generate_input_file
162
+ get_region_names_for_participant: get_region_names_for_participant = (
163
+ get_region_names_for_participant
164
+ )
155
165
  """
156
- generate_input_file command of setup_root.
166
+ get_region_names_for_participant command of setup_root.
157
167
  """
158
- import_system_coupling_input_file: import_system_coupling_input_file = (
159
- import_system_coupling_input_file
160
- )
168
+ get_setup_summary: get_setup_summary = get_setup_summary
161
169
  """
162
- import_system_coupling_input_file command of setup_root.
170
+ get_setup_summary command of setup_root.
163
171
  """
164
- add_named_expression: add_named_expression = add_named_expression
172
+ get_status_messages: get_status_messages = get_status_messages
165
173
  """
166
- add_named_expression command of setup_root.
174
+ get_status_messages command of setup_root.
167
175
  """
168
- add_expression_function: add_expression_function = add_expression_function
176
+ has_input_file_changed: has_input_file_changed = has_input_file_changed
169
177
  """
170
- add_expression_function command of setup_root.
178
+ has_input_file_changed command of setup_root.
179
+ """
180
+ import_system_coupling_input_file: import_system_coupling_input_file = (
181
+ import_system_coupling_input_file
182
+ )
183
+ """
184
+ import_system_coupling_input_file command of setup_root.
171
185
  """
172
186
  reload_expression_function_modules: reload_expression_function_modules = (
173
187
  reload_expression_function_modules
@@ -175,15 +189,7 @@ class setup_root(Container):
175
189
  """
176
190
  reload_expression_function_modules command of setup_root.
177
191
  """
178
- has_input_file_changed: has_input_file_changed = has_input_file_changed
179
- """
180
- has_input_file_changed command of setup_root.
181
- """
182
- get_setup_summary: get_setup_summary = get_setup_summary
183
- """
184
- get_setup_summary command of setup_root.
185
- """
186
- get_status_messages: get_status_messages = get_status_messages
192
+ update_participant: update_participant = update_participant
187
193
  """
188
- get_status_messages command of setup_root.
194
+ update_participant command of setup_root.
189
195
  """
@@ -2,16 +2,18 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "e7829f64a4064be60caa10ab0c964633e99d1ffb276762c0ac858a2631050c69"
5
+ SHASH = "9d14945e18aa7dc6f7ad86397c62f0ceb910440e6ac3753ce8a1d0d2f91b84f5"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
9
+ from ._solve import _solve
9
10
  from .abort import abort
10
11
  from .create_restart_point import create_restart_point
11
12
  from .get_machines import get_machines
13
+ from .get_transformation import get_transformation
12
14
  from .initialize import initialize
13
15
  from .interrupt import interrupt
14
- from .open_results_in_ensight import open_results_in_ensight
16
+ from .open_results_in_en_sight import open_results_in_en_sight
15
17
  from .partition_participants import partition_participants
16
18
  from .shutdown import shutdown
17
19
  from .solve import solve
@@ -29,70 +31,80 @@ class solution_root(Container):
29
31
  syc_name = "SolutionCommands"
30
32
 
31
33
  command_names = [
32
- "start_participants",
34
+ "_solve",
35
+ "abort",
36
+ "create_restart_point",
37
+ "get_machines",
38
+ "get_transformation",
33
39
  "initialize",
40
+ "interrupt",
41
+ "open_results_in_en_sight",
42
+ "partition_participants",
34
43
  "shutdown",
35
44
  "solve",
45
+ "start_participants",
36
46
  "step",
37
- "partition_participants",
38
- "open_results_in_ensight",
39
- "write_ensight",
40
- "create_restart_point",
41
47
  "write_csv_chart_files",
42
- "get_machines",
43
- "interrupt",
44
- "abort",
48
+ "write_ensight",
45
49
  ]
46
50
 
47
- start_participants: start_participants = start_participants
51
+ _solve: _solve = _solve
48
52
  """
49
- start_participants command of solution_root.
53
+ _solve command of solution_root.
50
54
  """
51
- initialize: initialize = initialize
55
+ abort: abort = abort
52
56
  """
53
- initialize command of solution_root.
57
+ abort command of solution_root.
54
58
  """
55
- shutdown: shutdown = shutdown
59
+ create_restart_point: create_restart_point = create_restart_point
56
60
  """
57
- shutdown command of solution_root.
61
+ create_restart_point command of solution_root.
58
62
  """
59
- solve: solve = solve
63
+ get_machines: get_machines = get_machines
60
64
  """
61
- solve command of solution_root.
65
+ get_machines command of solution_root.
62
66
  """
63
- step: step = step
67
+ get_transformation: get_transformation = get_transformation
64
68
  """
65
- step command of solution_root.
69
+ get_transformation command of solution_root.
66
70
  """
67
- partition_participants: partition_participants = partition_participants
71
+ initialize: initialize = initialize
68
72
  """
69
- partition_participants command of solution_root.
73
+ initialize command of solution_root.
70
74
  """
71
- open_results_in_ensight: open_results_in_ensight = open_results_in_ensight
75
+ interrupt: interrupt = interrupt
72
76
  """
73
- open_results_in_ensight command of solution_root.
77
+ interrupt command of solution_root.
74
78
  """
75
- write_ensight: write_ensight = write_ensight
79
+ open_results_in_en_sight: open_results_in_en_sight = open_results_in_en_sight
76
80
  """
77
- write_ensight command of solution_root.
81
+ open_results_in_en_sight command of solution_root.
78
82
  """
79
- create_restart_point: create_restart_point = create_restart_point
83
+ partition_participants: partition_participants = partition_participants
80
84
  """
81
- create_restart_point command of solution_root.
85
+ partition_participants command of solution_root.
82
86
  """
83
- write_csv_chart_files: write_csv_chart_files = write_csv_chart_files
87
+ shutdown: shutdown = shutdown
84
88
  """
85
- write_csv_chart_files command of solution_root.
89
+ shutdown command of solution_root.
86
90
  """
87
- get_machines: get_machines = get_machines
91
+ solve: solve = solve
88
92
  """
89
- get_machines command of solution_root.
93
+ solve command of solution_root.
90
94
  """
91
- interrupt: interrupt = interrupt
95
+ start_participants: start_participants = start_participants
92
96
  """
93
- interrupt command of solution_root.
97
+ start_participants command of solution_root.
94
98
  """
95
- abort: abort = abort
99
+ step: step = step
96
100
  """
97
- abort command of solution_root.
101
+ step command of solution_root.
102
+ """
103
+ write_csv_chart_files: write_csv_chart_files = write_csv_chart_files
104
+ """
105
+ write_csv_chart_files command of solution_root.
106
+ """
107
+ write_ensight: write_ensight = write_ensight
108
+ """
109
+ write_ensight command of solution_root.
98
110
  """
@@ -25,6 +25,6 @@ class solve(InjectedCommand):
25
25
  System Coupling is solving in the current working directory.
26
26
  """
27
27
 
28
- syc_name = "Solve"
28
+ syc_name = "solve"
29
29
 
30
30
  cmd_name = "solve"
@@ -30,10 +30,13 @@ class variable_child(Container):
30
30
  ("integer_initial_value", "IntegerInitialValue", "int"),
31
31
  ("logical_initial_value", "LogicalInitialValue", "bool"),
32
32
  ("string_initial_value", "StringInitialValue", "str"),
33
+ ("enumeration_initial_value", "EnumerationInitialValue", "int"),
33
34
  ("real_min", "RealMin", "RealType"),
34
35
  ("real_max", "RealMax", "RealType"),
35
36
  ("integer_min", "IntegerMin", "int"),
36
37
  ("integer_max", "IntegerMax", "int"),
38
+ ("enumeration_min", "EnumerationMin", "int"),
39
+ ("enumeration_max", "EnumerationMax", "int"),
37
40
  ("tensor_type", "TensorType", "str"),
38
41
  ("is_extensive", "IsExtensive", "bool"),
39
42
  ]
@@ -101,6 +104,7 @@ class variable_child(Container):
101
104
  - Integer
102
105
  - Logical
103
106
  - String
107
+ - Enumeration
104
108
  - None"""
105
109
  return self.get_property_state("data_type")
106
110
 
@@ -144,6 +148,15 @@ class variable_child(Container):
144
148
  def string_initial_value(self, value: str):
145
149
  self.set_property_state("string_initial_value", value)
146
150
 
151
+ @property
152
+ def enumeration_initial_value(self) -> int:
153
+ """Enumeration data start value."""
154
+ return self.get_property_state("enumeration_initial_value")
155
+
156
+ @enumeration_initial_value.setter
157
+ def enumeration_initial_value(self, value: int):
158
+ self.set_property_state("enumeration_initial_value", value)
159
+
147
160
  @property
148
161
  def real_min(self) -> RealType:
149
162
  """Real data minimum value."""
@@ -180,6 +193,24 @@ class variable_child(Container):
180
193
  def integer_max(self, value: int):
181
194
  self.set_property_state("integer_max", value)
182
195
 
196
+ @property
197
+ def enumeration_min(self) -> int:
198
+ """Enumeration data minimum value."""
199
+ return self.get_property_state("enumeration_min")
200
+
201
+ @enumeration_min.setter
202
+ def enumeration_min(self, value: int):
203
+ self.set_property_state("enumeration_min", value)
204
+
205
+ @property
206
+ def enumeration_max(self) -> int:
207
+ """Enumeration data maximum value."""
208
+ return self.get_property_state("enumeration_max")
209
+
210
+ @enumeration_max.setter
211
+ def enumeration_max(self, value: int):
212
+ self.set_property_state("enumeration_max", value)
213
+
183
214
  @property
184
215
  def tensor_type(self) -> str:
185
216
  """Indicates the variable tensor type (\"Scalar\" or \"Vector\").
@@ -0,0 +1,70 @@
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 _add_participant(Command):
9
+ """
10
+ For internal use only.
11
+
12
+ Parameters
13
+ ----------
14
+ participant_type : str, optional
15
+ ...
16
+ input_file : str, optional
17
+ ...
18
+ executable : str, optional
19
+ ...
20
+ additional_arguments : str, optional
21
+ ...
22
+ working_directory : str, optional
23
+ ...
24
+
25
+ """
26
+
27
+ syc_name = "AddParticipant"
28
+
29
+ argument_names = [
30
+ "participant_type",
31
+ "input_file",
32
+ "executable",
33
+ "additional_arguments",
34
+ "working_directory",
35
+ ]
36
+
37
+ class participant_type(String):
38
+ """
39
+ ...
40
+ """
41
+
42
+ syc_name = "ParticipantType"
43
+
44
+ class input_file(String):
45
+ """
46
+ ...
47
+ """
48
+
49
+ syc_name = "InputFile"
50
+
51
+ class executable(String):
52
+ """
53
+ ...
54
+ """
55
+
56
+ syc_name = "Executable"
57
+
58
+ class additional_arguments(String):
59
+ """
60
+ ...
61
+ """
62
+
63
+ syc_name = "AdditionalArguments"
64
+
65
+ class working_directory(String):
66
+ """
67
+ ...
68
+ """
69
+
70
+ syc_name = "WorkingDirectory"
@@ -0,0 +1,13 @@
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 _solve(Command):
9
+ """
10
+ For internal use only.
11
+ """
12
+
13
+ syc_name = "Solve"
@@ -0,0 +1,39 @@
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 abort(InjectedCommand):
9
+ """
10
+ Aborts a solve in progress.
11
+
12
+ See also ``interrupt``. In contrast to an interrupted solve,
13
+ an aborted solve cannot be resumed.
14
+
15
+ Parameters
16
+ ----------
17
+ reason_msg : str, optional
18
+ Text to describe the reason for the abort.
19
+
20
+ This might be used for such purposes as providing
21
+ additional annotation in transcript output.
22
+
23
+ """
24
+
25
+ syc_name = "abort"
26
+
27
+ cmd_name = "abort"
28
+
29
+ argument_names = ["reason_msg"]
30
+
31
+ class reason_msg(String):
32
+ """
33
+ Text to describe the reason for the abort.
34
+
35
+ This might be used for such purposes as providing
36
+ additional annotation in transcript output.
37
+ """
38
+
39
+ syc_name = "reason_msg"
@@ -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 activate_hidden(Container):
9
+ """
10
+ Contains settings to control exposure of hidden features.
11
+ """
12
+
13
+ syc_name = "ActivateHidden"
14
+
15
+ property_names_types = [
16
+ ("beta_features", "BetaFeatures", "bool"),
17
+ ("alpha_features", "AlphaFeatures", "bool"),
18
+ ("lenient_validation", "LenientValidation", "bool"),
19
+ ]
20
+
21
+ @property
22
+ def beta_features(self) -> bool:
23
+ """Turn on exposure of Beta features."""
24
+ return self.get_property_state("beta_features")
25
+
26
+ @beta_features.setter
27
+ def beta_features(self, value: bool):
28
+ self.set_property_state("beta_features", value)
29
+
30
+ @property
31
+ def alpha_features(self) -> bool:
32
+ """Turn on exposure of Alpha features. (Beta features must be turned on first)"""
33
+ return self.get_property_state("alpha_features")
34
+
35
+ @alpha_features.setter
36
+ def alpha_features(self, value: bool):
37
+ self.set_property_state("alpha_features", value)
38
+
39
+ @property
40
+ def lenient_validation(self) -> bool:
41
+ """Allow a case with zero participants and zero coupling interfaces to be set up."""
42
+ return self.get_property_state("lenient_validation")
43
+
44
+ @lenient_validation.setter
45
+ def lenient_validation(self, value: bool):
46
+ self.set_property_state("lenient_validation", value)