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
@@ -0,0 +1,82 @@
1
+ from typing import Tuple
2
+
3
+ # Define constants relating to the default/current version of System Coupling
4
+
5
+ SYC_MAJOR_VERSION = 24
6
+ SYC_MINOR_VERSION = 1
7
+
8
+ SYC_VERSION_CONCAT = f"{SYC_MAJOR_VERSION}{SYC_MINOR_VERSION}"
9
+ SYC_VERSION_DOT = f"{SYC_MAJOR_VERSION}.{SYC_MINOR_VERSION}"
10
+ SYC_VERSION_UNDERSCORE = f"{SYC_MAJOR_VERSION}_{SYC_MINOR_VERSION}"
11
+
12
+
13
+ def normalize_version(version: str) -> Tuple[int, int]:
14
+ """Utility to convert a version string provided in a number of
15
+ possible formats into pair of ints representing the major and minor version
16
+ numbers.
17
+
18
+ .. note::
19
+ The current implementation only supports simple major-minor version
20
+ strings, containing three digits in various configurations(two digits
21
+ for major version, one for minor).
22
+
23
+ Parameters
24
+ ----------
25
+ version : str
26
+ Version string in one of the three formats, "23.1", "23_1", or "231".
27
+ Given any of these example strings, the return value would be (23, 1).
28
+ """
29
+
30
+ def raise_error():
31
+ raise ValueError(f"Version string {version} in unsupported format.")
32
+
33
+ def split_at_separator(sep: str) -> Tuple[int, int]:
34
+ if sep not in version:
35
+ return None
36
+ components = version.split(sep)
37
+ if len(components) != 2 or not (
38
+ len(components[0]) == 2 and len(components[1]) == 1
39
+ ):
40
+ raise_error()
41
+ return process_major_minor(components[0], components[1])
42
+
43
+ def process_major_minor(major_str: str, minor_str: str) -> Tuple[int, int]:
44
+ try:
45
+ major = int(major_str)
46
+ minor = int(minor_str)
47
+ return (major, minor)
48
+ except:
49
+ raise_error()
50
+
51
+ ret = split_at_separator(".") or split_at_separator("_")
52
+ if ret is not None:
53
+ return ret
54
+
55
+ if len(version) == 3:
56
+ return process_major_minor(version[0:2], version[2])
57
+ else:
58
+ raise_error()
59
+
60
+
61
+ def compare_versions(version_a: str, version_b: str) -> int:
62
+ """Compares two version strings that are in any form that can be parsed by
63
+ ``normalize_version``.
64
+
65
+ Returns < 0 if ``version_a`` is an earlier version than ``version_b``, 0
66
+ if they are the same version, and > 0 if ``version_a`` is a later version
67
+ than ``version_b``.
68
+
69
+ Parameters
70
+ ----------
71
+ version_a : str
72
+ The first version string to compare.
73
+ version_b: str
74
+ The second version string to compare.
75
+ """
76
+ va_maj, va_min = normalize_version(version_a)
77
+ vb_maj, vb_min = normalize_version(version_b)
78
+
79
+ if va_maj == vb_maj:
80
+ return va_min - vb_min
81
+ else:
82
+ return va_maj - vb_maj
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansys-systemcoupling-core
3
- Version: 0.1.3
3
+ Version: 0.3.0
4
4
  Summary: A Python wrapper for Ansys System Coupling.
5
5
  Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
6
6
  Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.9
19
19
  Classifier: Programming Language :: Python :: 3.10
20
20
  Requires-Dist: ansys-api-systemcoupling==0.1.0
21
21
  Requires-Dist: grpcio>=1.30.0
22
- Requires-Dist: grpcio-status>=1.30.0,<1.51.2
22
+ Requires-Dist: grpcio-status>=1.30.0,<1.58.1
23
23
  Requires-Dist: googleapis-common-protos>=1.50.0
24
24
  Requires-Dist: protobuf>=3.20.1,<4.0.0
25
25
  Requires-Dist: psutil>=5.7.0
@@ -27,33 +27,33 @@ Requires-Dist: pyyaml
27
27
  Requires-Dist: appdirs>=1.4.0
28
28
  Requires-Dist: importlib-metadata>=4.0
29
29
  Requires-Dist: build ; extra == "build"
30
- Requires-Dist: black==23.1.0 ; extra == "classesgen"
30
+ Requires-Dist: black==23.7.0 ; extra == "classesgen"
31
31
  Requires-Dist: isort==5.12.0 ; extra == "classesgen"
32
- Requires-Dist: ansys-sphinx-theme==0.9.5 ; extra == "doc"
32
+ Requires-Dist: ansys-sphinx-theme==0.11.2 ; extra == "doc"
33
33
  Requires-Dist: jupyter_sphinx==0.4.0 ; extra == "doc"
34
34
  Requires-Dist: matplotlib ; extra == "doc"
35
35
  Requires-Dist: numpydoc==1.5.0 ; extra == "doc"
36
36
  Requires-Dist: pypandoc==1.11 ; extra == "doc"
37
37
  Requires-Dist: pytest-sphinx==0.5.0 ; extra == "doc"
38
- Requires-Dist: Sphinx==5.3.0 ; extra == "doc"
38
+ Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
39
39
  Requires-Dist: sphinx-autobuild==2021.3.14 ; extra == "doc"
40
- Requires-Dist: sphinx-autodoc-typehints==1.22 ; extra == "doc"
41
- Requires-Dist: sphinx-copybutton==0.5.1 ; extra == "doc"
42
- Requires-Dist: sphinx-gallery==0.12.2 ; extra == "doc"
43
- Requires-Dist: sphinx-notfound-page==0.8.3 ; extra == "doc"
44
- Requires-Dist: sphinxcontrib-websupport==1.2.4 ; extra == "doc"
40
+ Requires-Dist: sphinx-autodoc-typehints==1.24.0 ; extra == "doc"
41
+ Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
42
+ Requires-Dist: sphinx-gallery==0.14.0 ; extra == "doc"
43
+ Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
44
+ Requires-Dist: sphinxcontrib-websupport==1.2.6 ; extra == "doc"
45
45
  Requires-Dist: sphinxemoji==0.2.0 ; extra == "doc"
46
46
  Requires-Dist: ansys-fluent-core ; extra == "doc"
47
47
  Requires-Dist: ansys-dpf-core ; extra == "doc"
48
- Requires-Dist: codespell==2.2.4 ; extra == "style"
49
- Requires-Dist: flake8==6.0.0 ; extra == "style"
48
+ Requires-Dist: codespell==2.2.5 ; extra == "style"
49
+ Requires-Dist: flake8==6.1.0 ; extra == "style"
50
50
  Requires-Dist: pytest ; extra == "tests"
51
51
  Requires-Dist: pytest-cov ; extra == "tests"
52
52
  Requires-Dist: psutil>=5.7.0 ; extra == "tests"
53
53
  Project-URL: Documentation, https://systemcoupling.docs.pyansys.com/
54
- Project-URL: Homepage, https://github.com/pyansys/pysystem-coupling/
55
- Project-URL: Source, https://github.com/pyansys/pysystem-coupling/
56
- Project-URL: Tracker, https://github.com/pyansys/pysystem-coupling/issues
54
+ Project-URL: Homepage, https://github.com/ansys/pysystem-coupling/
55
+ Project-URL: Source, https://github.com/ansys/pysystem-coupling/
56
+ Project-URL: Tracker, https://github.com/ansys/pysystem-coupling/issues
57
57
  Provides-Extra: build
58
58
  Provides-Extra: classesgen
59
59
  Provides-Extra: doc
@@ -62,18 +62,17 @@ Provides-Extra: tests
62
62
 
63
63
  PySystemCoupling
64
64
  ================
65
- .. TODO : add codecov badge once public
66
65
 
67
- |pyansys| |GH-CI| |MIT| |black|
66
+ |pyansys| |GH-CI| |codecov| |MIT| |black|
68
67
 
69
68
  .. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
70
69
  :target: https://docs.pyansys.com/
71
70
 
72
- .. |GH-CI| image:: https://github.com/pyansys/pysystem-coupling/actions/workflows/ci.yml/badge.svg
73
- :target: https://github.com/pyansys/pysystem-coupling/actions/workflows/ci.yml
71
+ .. |GH-CI| image:: https://github.com/ansys/pysystem-coupling/actions/workflows/ci.yml/badge.svg
72
+ :target: https://github.com/ansys/pysystem-coupling/actions/workflows/ci.yml
74
73
 
75
74
  .. |codecov| image:: https://codecov.io/gh/pysystem-coupling/branch/main/graph/badge.svg
76
- :target: https://codecov.io/gh/pyansys/pysystem-coupling
75
+ :target: https://codecov.io/gh/ansys/pysystem-coupling
77
76
 
78
77
  .. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
79
78
  :target: https://opensource.org/licenses/MIT
@@ -109,7 +108,7 @@ with this code:
109
108
 
110
109
  .. code::
111
110
 
112
- git clone https://github.com/pyansys/pysystem-coupling.git
111
+ git clone https://github.com/ansys/pysystem-coupling.git
113
112
  cd pysystem-coupling
114
113
  python -m pip install --upgrade pip
115
114
  pip install -e .
@@ -122,7 +121,7 @@ Documentation and Issues
122
121
 
123
122
  For more information, see the `Documentation <https://systemcoupling.docs.pyansys.com>`_ page.
124
123
 
125
- Use the `PySystemCoupling Issues <https://github.com/pyansys/pysystem-coupling/issues>`_ page to
124
+ Use the `PySystemCoupling Issues <https://github.com/ansys/pysystem-coupling/issues>`_ page to
126
125
  post bug reports, questions and feature requests.
127
126
 
128
127
  Usage
@@ -136,12 +135,15 @@ in this order:
136
135
 
137
136
  * ``SYSC_ROOT``
138
137
  * ``AWP_ROOT``
139
- * ``AWP_ROOT231``
138
+ * ``AWP_ROOT232``
140
139
 
141
140
  If a variable is set but does not refer to a valid installation, PySystemCoupling
142
- fail at that point, rather than attempting to use the next variable.
141
+ fails at that point, rather than attempting to use the next variable.
143
142
 
144
- In a standard user installation, the expectation is that only ``AWP_ROOT231`` is set.
143
+ In a standard user installation, the expectation is that only ``AWP_ROOT232`` is set.
144
+
145
+ (It is also possible to provide a different version number as an argument to the ``launch()``
146
+ function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
145
147
 
146
148
  The System Coupling API is exposed to PySystemCoupling in two forms:
147
149
 
@@ -0,0 +1,230 @@
1
+ ansys/systemcoupling/core/__init__.py,sha256=ujtNh-Zwp-ApOE9tCi1RkB74z6RGSkcb5sg_H46mraU,4682
2
+ ansys/systemcoupling/core/_version.py,sha256=h6yI1szAovk7BoeYHiy8F3qnTyBY65YDqdcxI1MN8dc,425
3
+ ansys/systemcoupling/core/session.py,sha256=FWvcLLVWCLsAHl7pWDbanb9Wd19zuogtLnzrzDFtOGY,7296
4
+ ansys/systemcoupling/core/syc_version.py,sha256=IjZbditzVsGX8kaGOTtIMO8JrMCF4QrgOgM2PR1rhDA,2629
5
+ ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
6
+ ansys/systemcoupling/core/adaptor/api_23_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
7
+ ansys/systemcoupling/core/adaptor/api_23_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
8
+ ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
9
+ ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer.py,sha256=j0BNIn4vkNyU3g92Wlu_t24uZUaGVIFo2zjZAwDlPzc,8249
10
+ ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer_by_display_names.py,sha256=TVDOqTTifKrHFMyBKx0VMVl2m3ZmX8NvaMssLhRjHQ0,8052
11
+ ansys/systemcoupling/core/adaptor/api_23_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
12
+ ansys/systemcoupling/core/adaptor/api_23_2/add_interface.py,sha256=r0NSTZYjqcLGGgOx7TVX9mzPCi1c_BytI5JVoNmF40Y,2163
13
+ ansys/systemcoupling/core/adaptor/api_23_2/add_interface_by_display_names.py,sha256=nXvfpHXvM0kxza-PuhZi3Gmy4YYoUIWYo5qPPyPkcBU,2212
14
+ ansys/systemcoupling/core/adaptor/api_23_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
15
+ ansys/systemcoupling/core/adaptor/api_23_2/add_participant.py,sha256=f1t4TCJdtpnsiUTrqv9s_i_CU2xWbli6xhML5_N3cqU,5511
16
+ ansys/systemcoupling/core/adaptor/api_23_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
17
+ ansys/systemcoupling/core/adaptor/api_23_2/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
18
+ ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py,sha256=lX36KAySXLFP7ldyqmBmNMJ7udXafjQWXvWuMhYl2zo,9461
19
+ ansys/systemcoupling/core/adaptor/api_23_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
20
+ ansys/systemcoupling/core/adaptor/api_23_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
21
+ ansys/systemcoupling/core/adaptor/api_23_2/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
22
+ ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
23
+ ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
24
+ ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
25
+ ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
26
+ ansys/systemcoupling/core/adaptor/api_23_2/case_root.py,sha256=nEr0h5tWxvtFwgrmQuBp_axUWpilMiKoHs7QZE2Cfd4,1385
27
+ ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
28
+ ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
29
+ ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
30
+ ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
31
+ ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py,sha256=53F9vD7pvlhkaGBk-vhcj3_xIFGV0Zvt6lgV6nU9K3s,5540
32
+ ansys/systemcoupling/core/adaptor/api_23_2/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
33
+ ansys/systemcoupling/core/adaptor/api_23_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
34
+ ansys/systemcoupling/core/adaptor/api_23_2/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
35
+ ansys/systemcoupling/core/adaptor/api_23_2/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
36
+ ansys/systemcoupling/core/adaptor/api_23_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
37
+ ansys/systemcoupling/core/adaptor/api_23_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
38
+ ansys/systemcoupling/core/adaptor/api_23_2/execution_control.py,sha256=pMCThGnb3_s0_EUZVEu2ZA0U80LuyPSYKBcrxALWjRg,6688
39
+ ansys/systemcoupling/core/adaptor/api_23_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
40
+ ansys/systemcoupling/core/adaptor/api_23_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
41
+ ansys/systemcoupling/core/adaptor/api_23_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
42
+ ansys/systemcoupling/core/adaptor/api_23_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
43
+ ansys/systemcoupling/core/adaptor/api_23_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
44
+ ansys/systemcoupling/core/adaptor/api_23_2/fluent_input.py,sha256=xi1Pf2L_0CFoAzYpcSOzb1Nm4hVfc6hGnyNyEeSRxNw,1879
45
+ ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
46
+ ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
47
+ ansys/systemcoupling/core/adaptor/api_23_2/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
48
+ ansys/systemcoupling/core/adaptor/api_23_2/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
49
+ ansys/systemcoupling/core/adaptor/api_23_2/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
50
+ ansys/systemcoupling/core/adaptor/api_23_2/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
51
+ ansys/systemcoupling/core/adaptor/api_23_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
52
+ ansys/systemcoupling/core/adaptor/api_23_2/get_snapshots.py,sha256=-Y2prBF2RflYTCLnX6G4tYSwRHC0bEOPFtRVAZTqswE,277
53
+ ansys/systemcoupling/core/adaptor/api_23_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
54
+ ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py,sha256=IKp2KNsuyN1zmbpn2BdPY8l7C6Vz4lQzof2dNiQB1a4,999
55
+ ansys/systemcoupling/core/adaptor/api_23_2/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
56
+ ansys/systemcoupling/core/adaptor/api_23_2/has_input_file_changed.py,sha256=9VkMe3m9sKHw5hfM6jrI2Yg0ZSexlGlestbmF5Sq9Yg,903
57
+ ansys/systemcoupling/core/adaptor/api_23_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
58
+ ansys/systemcoupling/core/adaptor/api_23_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
59
+ ansys/systemcoupling/core/adaptor/api_23_2/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
60
+ ansys/systemcoupling/core/adaptor/api_23_2/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
61
+ ansys/systemcoupling/core/adaptor/api_23_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
62
+ ansys/systemcoupling/core/adaptor/api_23_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
63
+ ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
64
+ ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py,sha256=Vl5KOV8FhA0hnaF_LkULVw2UWZyBVDTHHNHSso7YEJ0,2250
65
+ ansys/systemcoupling/core/adaptor/api_23_2/mapping_control.py,sha256=4OCRfihifzdQCfCLGgUuZxGA1KdRZr63CPmyCqInaQs,8521
66
+ ansys/systemcoupling/core/adaptor/api_23_2/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
67
+ ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py,sha256=U0rHjBgCPJS9yA0jLn8RDkc-M5_49Kwe1NYxFRb06lU,1903
68
+ ansys/systemcoupling/core/adaptor/api_23_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
69
+ ansys/systemcoupling/core/adaptor/api_23_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
70
+ ansys/systemcoupling/core/adaptor/api_23_2/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
71
+ ansys/systemcoupling/core/adaptor/api_23_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
72
+ ansys/systemcoupling/core/adaptor/api_23_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
73
+ ansys/systemcoupling/core/adaptor/api_23_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
74
+ ansys/systemcoupling/core/adaptor/api_23_2/region_child.py,sha256=Uq3mzyFdTMIuc8d1Qjastq_tWLQE5hJouoWqE3Kw6G8,2238
75
+ ansys/systemcoupling/core/adaptor/api_23_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
76
+ ansys/systemcoupling/core/adaptor/api_23_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
77
+ ansys/systemcoupling/core/adaptor/api_23_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
78
+ ansys/systemcoupling/core/adaptor/api_23_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
79
+ ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py,sha256=Wlh8E_AzzA0do5YVjeSIxfCiwyZLGbzyMSFRTFhND50,6426
80
+ ansys/systemcoupling/core/adaptor/api_23_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
81
+ ansys/systemcoupling/core/adaptor/api_23_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
82
+ ansys/systemcoupling/core/adaptor/api_23_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
83
+ ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
84
+ ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py,sha256=25pQ3GVDuAWm0DmdEynCMzHU8s7Qd4Jx71zQjbeXsD0,2947
85
+ ansys/systemcoupling/core/adaptor/api_23_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
86
+ ansys/systemcoupling/core/adaptor/api_23_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
87
+ ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
88
+ ansys/systemcoupling/core/adaptor/api_23_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
89
+ ansys/systemcoupling/core/adaptor/api_23_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
90
+ ansys/systemcoupling/core/adaptor/api_23_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
91
+ ansys/systemcoupling/core/adaptor/api_23_2/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
92
+ ansys/systemcoupling/core/adaptor/api_23_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
93
+ ansys/systemcoupling/core/adaptor/api_23_2/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
94
+ ansys/systemcoupling/core/adaptor/api_23_2/update_participant.py,sha256=w_WOaasUaU9B1nDyxcTWw45Mi_3Eof5_3zeOElkkxbk,2211
95
+ ansys/systemcoupling/core/adaptor/api_23_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
96
+ ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py,sha256=czWKByOsUAFRppNqeCWlZGEseQ8FUMngWkOWv_XO6ng,7249
97
+ ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
98
+ ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
99
+ ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
100
+ ansys/systemcoupling/core/adaptor/api_24_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
101
+ ansys/systemcoupling/core/adaptor/api_24_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
102
+ ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
103
+ ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer.py,sha256=j0BNIn4vkNyU3g92Wlu_t24uZUaGVIFo2zjZAwDlPzc,8249
104
+ ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
105
+ ansys/systemcoupling/core/adaptor/api_24_1/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
106
+ ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
107
+ ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
108
+ ansys/systemcoupling/core/adaptor/api_24_1/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
109
+ ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py,sha256=m-xjBf1DFP4H4SxyW67sgVoWtoOqSKXh7HBpurl-IJY,5361
110
+ ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
111
+ ansys/systemcoupling/core/adaptor/api_24_1/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
112
+ ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py,sha256=lX36KAySXLFP7ldyqmBmNMJ7udXafjQWXvWuMhYl2zo,9461
113
+ ansys/systemcoupling/core/adaptor/api_24_1/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
114
+ ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
115
+ ansys/systemcoupling/core/adaptor/api_24_1/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
116
+ ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
117
+ ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
118
+ ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
119
+ ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
120
+ ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=nEr0h5tWxvtFwgrmQuBp_axUWpilMiKoHs7QZE2Cfd4,1385
121
+ ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
122
+ ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
123
+ ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
124
+ ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
125
+ ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py,sha256=QkazHnTJ0XmRlhllivwe2ZIdeO3VQH85JhQfUn-CzhI,7688
126
+ ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
127
+ ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
128
+ ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
129
+ ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
130
+ ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
131
+ ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
132
+ ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py,sha256=pMCThGnb3_s0_EUZVEu2ZA0U80LuyPSYKBcrxALWjRg,6688
133
+ ansys/systemcoupling/core/adaptor/api_24_1/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
134
+ ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
135
+ ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
136
+ ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
137
+ ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
138
+ ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py,sha256=xi1Pf2L_0CFoAzYpcSOzb1Nm4hVfc6hGnyNyEeSRxNw,1879
139
+ ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
140
+ ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
141
+ ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
142
+ ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
143
+ ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
144
+ ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
145
+ ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
146
+ ansys/systemcoupling/core/adaptor/api_24_1/get_snapshots.py,sha256=-Y2prBF2RflYTCLnX6G4tYSwRHC0bEOPFtRVAZTqswE,277
147
+ ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
148
+ ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py,sha256=IKp2KNsuyN1zmbpn2BdPY8l7C6Vz4lQzof2dNiQB1a4,999
149
+ ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
150
+ ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
151
+ ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
152
+ ansys/systemcoupling/core/adaptor/api_24_1/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
153
+ ansys/systemcoupling/core/adaptor/api_24_1/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
154
+ ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
155
+ ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
156
+ ansys/systemcoupling/core/adaptor/api_24_1/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
157
+ ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
158
+ ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py,sha256=Vl5KOV8FhA0hnaF_LkULVw2UWZyBVDTHHNHSso7YEJ0,2250
159
+ ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py,sha256=4OCRfihifzdQCfCLGgUuZxGA1KdRZr63CPmyCqInaQs,8521
160
+ ansys/systemcoupling/core/adaptor/api_24_1/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
161
+ ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_en_sight.py,sha256=U0rHjBgCPJS9yA0jLn8RDkc-M5_49Kwe1NYxFRb06lU,1903
162
+ ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py,sha256=-6oH21MgMzld_mZfjMje8MhwX7gCGK4oNEC0l-WT0Fg,1063
163
+ ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
164
+ ansys/systemcoupling/core/adaptor/api_24_1/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
165
+ ansys/systemcoupling/core/adaptor/api_24_1/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
166
+ ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py,sha256=wyuGkmIMaduc-LgLk_RBz8UVp7cP6GkNajlinxj1XW0,1881
167
+ ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
168
+ ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
169
+ ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
170
+ ansys/systemcoupling/core/adaptor/api_24_1/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
171
+ ansys/systemcoupling/core/adaptor/api_24_1/region_child.py,sha256=AJlJrD-MKs0hOyXVPo7AT9E55HvBbCUJrkIQ5MOh3_Q,2252
172
+ ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
173
+ ansys/systemcoupling/core/adaptor/api_24_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
174
+ ansys/systemcoupling/core/adaptor/api_24_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
175
+ ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
176
+ ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=j2IfquQt8slgqsx33S6PHk3gRZ_yhng8Mm4jhU0mJQ8,6426
177
+ ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
178
+ ansys/systemcoupling/core/adaptor/api_24_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
179
+ ansys/systemcoupling/core/adaptor/api_24_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
180
+ ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py,sha256=7Cw9PC-10-82fwLRip69z14o70Hge0eJ5YAkj4uamIo,3447
181
+ ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=dF3ts7vMQsNZdAB1zHSuvqo40FJcrj7GqkNILVjQ2kE,2947
182
+ ansys/systemcoupling/core/adaptor/api_24_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
183
+ ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
184
+ ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
185
+ ansys/systemcoupling/core/adaptor/api_24_1/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
186
+ ansys/systemcoupling/core/adaptor/api_24_1/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
187
+ ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
188
+ ansys/systemcoupling/core/adaptor/api_24_1/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
189
+ ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
190
+ ansys/systemcoupling/core/adaptor/api_24_1/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
191
+ ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
192
+ ansys/systemcoupling/core/adaptor/api_24_1/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
193
+ ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=czWKByOsUAFRppNqeCWlZGEseQ8FUMngWkOWv_XO6ng,7249
194
+ ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
195
+ ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
196
+ ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=5gn3lgjFtjPt4QyTZiuc2xuvroPcPKSzlwAqbecT8GQ,3056
197
+ ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=RnQdMKSx_6IQKeGjwX6Y-mwud0xaHm3XdYgZAJ4nApw,1281
198
+ ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=UHLmqD1uxN2N6EXMmgvgsPVbm14EXgb-ff-tbS1FGN4,10755
199
+ ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=eTQjPomzEvcC-_JS8C-hmqtJsWQPzUAowku-ADNTv6o,11675
200
+ ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=ged-KTYEgmeW_HHf9gmC3jfMdIXXvn_FETXDkK-Qexc,13773
201
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=EP0BFlVQJjoP8KUFc9gOm9ehuvc8dh_YneyAkcu-foQ,3630
202
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=tQMxcsAmwTw-5gIcJEZ9o04Nrwaxpf_gcTcvL5bSXS8,1127
203
+ ansys/systemcoupling/core/adaptor/impl/types.py,sha256=ihLF5riEj0GoBroXvLQtopjAWtJcMIbBIrUsV56Se7c,23975
204
+ ansys/systemcoupling/core/client/grpc_client.py,sha256=yWGnBiheXEaZn2Fx-Q95MZYEutj3tBCIdNEjT0LVWhw,10124
205
+ ansys/systemcoupling/core/client/syc_container.py,sha256=GiwQrnuc41_7DV37flpfeF1mBdlFLGFq9mq1mq7RT7E,1598
206
+ ansys/systemcoupling/core/client/syc_process.py,sha256=hsGkkc55sc-6UI1qk594QbMrqlSsXQxiyZ3ImQLVbyQ,4481
207
+ ansys/systemcoupling/core/client/variant.py,sha256=w5geZ_ft1fNcH5DYNFaiszTTej9BAPSy501aW_IOrF4,1910
208
+ ansys/systemcoupling/core/client/services/command_query.py,sha256=Wk9HcTrXhPcFt1ed9G5jBoG0dOzDZPfyYr3Uh7KUfXg,1102
209
+ ansys/systemcoupling/core/client/services/output_stream.py,sha256=gMDKB9ynnKxseH6MTAMxNVWV3ZdcXEMrfvlueqqPkXQ,994
210
+ ansys/systemcoupling/core/client/services/process.py,sha256=8speYQLviJOnCMX43bsJS5Z7p0cKH1HP82gyKEn_10o,529
211
+ ansys/systemcoupling/core/client/services/solution.py,sha256=LMuOnsTPKi8AulEqYi6zqvSk5BDrvbqQHZyksH7MNPU,1364
212
+ ansys/systemcoupling/core/examples/__init__.py,sha256=Gyi4b_pnO-ukbWxvYsJaQNc3tlDGdRdpEsMBv4Inj3Q,69
213
+ ansys/systemcoupling/core/examples/downloads.py,sha256=tH-vafQ0nZ25ZkfsyBMFjw6ED8j0Ih20Qp_18Gctm18,2946
214
+ ansys/systemcoupling/core/native_api/__init__.py,sha256=CqIdFznMp23ql_2pMEFzYOnzyR3-KmgUZg-KQxMEPMc,34
215
+ ansys/systemcoupling/core/native_api/command_metadata.py,sha256=7Tkf0Gfe99yZEQCUE8w4XnNO5Zj0xD2g-7rX8pXWmQ4,579
216
+ ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=AP1_vpc3FQdxPheQxipFc3xZhH97M030X0pt_xV6wWU,3682
217
+ ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=2B0Ws6N5GIkV8Ca1nA-xPaec5Xpodc2E7vkG5eaDt60,307
218
+ ansys/systemcoupling/core/native_api/native_api.py,sha256=JMEjTwmaUl4WOvFOIDR42I84Ky51vK6Bk9qO5CQaVkA,5962
219
+ ansys/systemcoupling/core/native_api/object_path.py,sha256=GpkSKE7jXCWES-eCBFcy6ll1Vlu8wH2doxVfm2e49Tk,2999
220
+ ansys/systemcoupling/core/participant/manager.py,sha256=9kveWpxcC_BS6w2Q79nV91q5nfRqbxMfn_8_-VuW0fQ,7685
221
+ ansys/systemcoupling/core/participant/protocol.py,sha256=DgcDG3ln-JR3o3AWITb0j-HdslqRZ1REmS1GDQtF4r0,1273
222
+ ansys/systemcoupling/core/util/logging.py,sha256=TKScyvcXIjHg-bNP2wN3of6LZtMN_D-7zgFh7jjj4I4,3886
223
+ ansys/systemcoupling/core/util/name_util.py,sha256=Xbmjl_0vjADtcURNe2iR3H0h1rNaoBjRyD3T8YsQMQQ,316
224
+ ansys/systemcoupling/core/util/pathstr.py,sha256=XhqkMpdpEQk6O2SFKYdLlKel52agsyWNCrdR6XpDph4,788
225
+ ansys/systemcoupling/core/util/state_keys.py,sha256=ovYwJBRGGflDR9Ck3zfINOrlTEuPVOzTo6fTpYQVdLQ,3391
226
+ ansys/systemcoupling/core/util/yaml_helper.py,sha256=Bpix9OS01GxqXAwKbXB4xG6y_2h1r3RqTB3jjIC9qd0,1828
227
+ ansys_systemcoupling_core-0.3.0.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
228
+ ansys_systemcoupling_core-0.3.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
229
+ ansys_systemcoupling_core-0.3.0.dist-info/METADATA,sha256=4G9QHHbPAkcs0Oize_lAatIMtBWkRdly8XeURizdbiA,10884
230
+ ansys_systemcoupling_core-0.3.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.8.0
2
+ Generator: flit 3.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,123 +0,0 @@
1
- ansys/systemcoupling/core/__init__.py,sha256=SoMBnSSImfmg1yc1iamB5PYNqwia-eGFtRaaDbN4yas,4017
2
- ansys/systemcoupling/core/_version.py,sha256=h6yI1szAovk7BoeYHiy8F3qnTyBY65YDqdcxI1MN8dc,425
3
- ansys/systemcoupling/core/session.py,sha256=uR-lxceY1MUGFrobohUdr9g5O3jQ2H3LxGbf3fK1gtw,7075
4
- ansys/systemcoupling/core/adaptor/api_23_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
5
- ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
6
- ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer.py,sha256=j0BNIn4vkNyU3g92Wlu_t24uZUaGVIFo2zjZAwDlPzc,8249
7
- ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer_by_display_names.py,sha256=TVDOqTTifKrHFMyBKx0VMVl2m3ZmX8NvaMssLhRjHQ0,8052
8
- ansys/systemcoupling/core/adaptor/api_23_1/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
9
- ansys/systemcoupling/core/adaptor/api_23_1/add_interface.py,sha256=r0NSTZYjqcLGGgOx7TVX9mzPCi1c_BytI5JVoNmF40Y,2163
10
- ansys/systemcoupling/core/adaptor/api_23_1/add_interface_by_display_names.py,sha256=nXvfpHXvM0kxza-PuhZi3Gmy4YYoUIWYo5qPPyPkcBU,2212
11
- ansys/systemcoupling/core/adaptor/api_23_1/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
12
- ansys/systemcoupling/core/adaptor/api_23_1/add_participant.py,sha256=x5z1b3A2UKIQCOjnM19ifMqB6yT1Z8hSc9ZstE-9tkU,3659
13
- ansys/systemcoupling/core/adaptor/api_23_1/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
14
- ansys/systemcoupling/core/adaptor/api_23_1/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
15
- ansys/systemcoupling/core/adaptor/api_23_1/analysis_control.py,sha256=LWBsJ5LsTMLKwg7QnngPfjOxIiNKYGQpulvUJ_xqXAs,9171
16
- ansys/systemcoupling/core/adaptor/api_23_1/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
17
- ansys/systemcoupling/core/adaptor/api_23_1/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
18
- ansys/systemcoupling/core/adaptor/api_23_1/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
19
- ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
20
- ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
21
- ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py,sha256=r0XDGqjIcyGmckx4vCDibcAL-0cWjh0mXn6Nuw5WatE,980
22
- ansys/systemcoupling/core/adaptor/api_23_1/case_root.py,sha256=mjaaKlrbyTXts7bBjNdZIAnIW49-z3O36nKABlLdFj0,1385
23
- ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
24
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
25
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
26
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
27
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py,sha256=9FeMDB4YWaRIFJ2yDJ3jlHISQ5u6Ti-bzhcrGQszxQY,5540
28
- ansys/systemcoupling/core/adaptor/api_23_1/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
29
- ansys/systemcoupling/core/adaptor/api_23_1/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
30
- ansys/systemcoupling/core/adaptor/api_23_1/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
31
- ansys/systemcoupling/core/adaptor/api_23_1/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
32
- ansys/systemcoupling/core/adaptor/api_23_1/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
33
- ansys/systemcoupling/core/adaptor/api_23_1/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
34
- ansys/systemcoupling/core/adaptor/api_23_1/execution_control.py,sha256=pMCThGnb3_s0_EUZVEu2ZA0U80LuyPSYKBcrxALWjRg,6688
35
- ansys/systemcoupling/core/adaptor/api_23_1/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
36
- ansys/systemcoupling/core/adaptor/api_23_1/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
37
- ansys/systemcoupling/core/adaptor/api_23_1/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
38
- ansys/systemcoupling/core/adaptor/api_23_1/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
39
- ansys/systemcoupling/core/adaptor/api_23_1/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
40
- ansys/systemcoupling/core/adaptor/api_23_1/fluent_input.py,sha256=xi1Pf2L_0CFoAzYpcSOzb1Nm4hVfc6hGnyNyEeSRxNw,1879
41
- ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
42
- ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py,sha256=cW9mtskOzA7E_UEHFoSfo9wv4DsuA0A5yar84SraAGY,3845
43
- ansys/systemcoupling/core/adaptor/api_23_1/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
44
- ansys/systemcoupling/core/adaptor/api_23_1/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
45
- ansys/systemcoupling/core/adaptor/api_23_1/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
46
- ansys/systemcoupling/core/adaptor/api_23_1/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
47
- ansys/systemcoupling/core/adaptor/api_23_1/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
48
- ansys/systemcoupling/core/adaptor/api_23_1/get_snapshots.py,sha256=-Y2prBF2RflYTCLnX6G4tYSwRHC0bEOPFtRVAZTqswE,277
49
- ansys/systemcoupling/core/adaptor/api_23_1/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
50
- ansys/systemcoupling/core/adaptor/api_23_1/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
51
- ansys/systemcoupling/core/adaptor/api_23_1/has_input_file_changed.py,sha256=9VkMe3m9sKHw5hfM6jrI2Yg0ZSexlGlestbmF5Sq9Yg,903
52
- ansys/systemcoupling/core/adaptor/api_23_1/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
53
- ansys/systemcoupling/core/adaptor/api_23_1/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
54
- ansys/systemcoupling/core/adaptor/api_23_1/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
55
- ansys/systemcoupling/core/adaptor/api_23_1/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
56
- ansys/systemcoupling/core/adaptor/api_23_1/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
57
- ansys/systemcoupling/core/adaptor/api_23_1/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
58
- ansys/systemcoupling/core/adaptor/api_23_1/mapping_control.py,sha256=4OCRfihifzdQCfCLGgUuZxGA1KdRZr63CPmyCqInaQs,8521
59
- ansys/systemcoupling/core/adaptor/api_23_1/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
60
- ansys/systemcoupling/core/adaptor/api_23_1/open_results_in_ensight.py,sha256=-6oH21MgMzld_mZfjMje8MhwX7gCGK4oNEC0l-WT0Fg,1063
61
- ansys/systemcoupling/core/adaptor/api_23_1/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
62
- ansys/systemcoupling/core/adaptor/api_23_1/output_control.py,sha256=6QnYonN1l5Xfw62_BA4cJN0RP67DDe-M38wKU2DJGO4,4386
63
- ansys/systemcoupling/core/adaptor/api_23_1/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
64
- ansys/systemcoupling/core/adaptor/api_23_1/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
65
- ansys/systemcoupling/core/adaptor/api_23_1/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
66
- ansys/systemcoupling/core/adaptor/api_23_1/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
67
- ansys/systemcoupling/core/adaptor/api_23_1/region_child.py,sha256=Uq3mzyFdTMIuc8d1Qjastq_tWLQE5hJouoWqE3Kw6G8,2238
68
- ansys/systemcoupling/core/adaptor/api_23_1/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
69
- ansys/systemcoupling/core/adaptor/api_23_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
70
- ansys/systemcoupling/core/adaptor/api_23_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
71
- ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
72
- ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py,sha256=vx8rdx1aOMyOR3KjeklTQLqvlKP60fwLHP7XDXzdAbA,6233
73
- ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
74
- ansys/systemcoupling/core/adaptor/api_23_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
75
- ansys/systemcoupling/core/adaptor/api_23_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
76
- ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
77
- ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py,sha256=YokOFUvLdjqBHm4CfIY4CIH_byiObL8O3ERar8R6FoU,2604
78
- ansys/systemcoupling/core/adaptor/api_23_1/solve.py,sha256=CsUePxYn64nR7R_NcpWIQKhrwCD_WAEVRar2pB63qZY,1057
79
- ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
80
- ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
81
- ansys/systemcoupling/core/adaptor/api_23_1/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
82
- ansys/systemcoupling/core/adaptor/api_23_1/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
83
- ansys/systemcoupling/core/adaptor/api_23_1/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
84
- ansys/systemcoupling/core/adaptor/api_23_1/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
85
- ansys/systemcoupling/core/adaptor/api_23_1/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
86
- ansys/systemcoupling/core/adaptor/api_23_1/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
87
- ansys/systemcoupling/core/adaptor/api_23_1/update_participant.py,sha256=w_WOaasUaU9B1nDyxcTWw45Mi_3Eof5_3zeOElkkxbk,2211
88
- ansys/systemcoupling/core/adaptor/api_23_1/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
89
- ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py,sha256=f_YqcdGrdwa8_b_Hh-Iq6WpehdHsCH1Oh-c66BMMHmI,6137
90
- ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
91
- ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
92
- ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=5gn3lgjFtjPt4QyTZiuc2xuvroPcPKSzlwAqbecT8GQ,3056
93
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=9Z6oEhyNVCYRnNfTlFphUlgUkq49EYGk13SWvMATkHo,6915
94
- ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=ZTPeShI1Gop7UIjyRMy-p2JRJdA8Wd-Q2yEAa1O7DLs,11596
95
- ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=OPqZZ31XGkvNnQZ77Jshe_jhdWjNAK1A5xohPvmLYLA,12043
96
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=fLH1gtKO1rVYtI8n6Z4MjQhS04OuH5IgICoVh35SB2A,3568
97
- ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=tQMxcsAmwTw-5gIcJEZ9o04Nrwaxpf_gcTcvL5bSXS8,1127
98
- ansys/systemcoupling/core/adaptor/impl/types.py,sha256=cFsi0GkYTkU58V-oOrZZ0T5Nfj4O8Qg4FHF2AdRriOY,23435
99
- ansys/systemcoupling/core/client/grpc_client.py,sha256=xC2ySJEIh1QFqPwYRxmagvcgiUthZLOMGAWld6uWQOQ,9921
100
- ansys/systemcoupling/core/client/syc_container.py,sha256=TAlzsk9T28dKS-QalKaQTngpxTDqNWoScSdBRovaHoc,1205
101
- ansys/systemcoupling/core/client/syc_process.py,sha256=_3OqAb_7bHRhyUt3Qgwr5nE_TH6QBI7NrbthukRjMm4,3499
102
- ansys/systemcoupling/core/client/variant.py,sha256=w5geZ_ft1fNcH5DYNFaiszTTej9BAPSy501aW_IOrF4,1910
103
- ansys/systemcoupling/core/client/services/command_query.py,sha256=Wk9HcTrXhPcFt1ed9G5jBoG0dOzDZPfyYr3Uh7KUfXg,1102
104
- ansys/systemcoupling/core/client/services/output_stream.py,sha256=gMDKB9ynnKxseH6MTAMxNVWV3ZdcXEMrfvlueqqPkXQ,994
105
- ansys/systemcoupling/core/client/services/process.py,sha256=8speYQLviJOnCMX43bsJS5Z7p0cKH1HP82gyKEn_10o,529
106
- ansys/systemcoupling/core/client/services/solution.py,sha256=LMuOnsTPKi8AulEqYi6zqvSk5BDrvbqQHZyksH7MNPU,1364
107
- ansys/systemcoupling/core/examples/__init__.py,sha256=Gyi4b_pnO-ukbWxvYsJaQNc3tlDGdRdpEsMBv4Inj3Q,69
108
- ansys/systemcoupling/core/examples/downloads.py,sha256=lD1J7yxYvTkUQI68xr8_Ot6D-qXJlgyIH52spUjbmAY,2950
109
- ansys/systemcoupling/core/native_api/__init__.py,sha256=CqIdFznMp23ql_2pMEFzYOnzyR3-KmgUZg-KQxMEPMc,34
110
- ansys/systemcoupling/core/native_api/command_metadata.py,sha256=7Tkf0Gfe99yZEQCUE8w4XnNO5Zj0xD2g-7rX8pXWmQ4,579
111
- ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=AP1_vpc3FQdxPheQxipFc3xZhH97M030X0pt_xV6wWU,3682
112
- ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=2B0Ws6N5GIkV8Ca1nA-xPaec5Xpodc2E7vkG5eaDt60,307
113
- ansys/systemcoupling/core/native_api/native_api.py,sha256=JMEjTwmaUl4WOvFOIDR42I84Ky51vK6Bk9qO5CQaVkA,5962
114
- ansys/systemcoupling/core/native_api/object_path.py,sha256=GpkSKE7jXCWES-eCBFcy6ll1Vlu8wH2doxVfm2e49Tk,2999
115
- ansys/systemcoupling/core/util/logging.py,sha256=TKScyvcXIjHg-bNP2wN3of6LZtMN_D-7zgFh7jjj4I4,3886
116
- ansys/systemcoupling/core/util/name_util.py,sha256=Xbmjl_0vjADtcURNe2iR3H0h1rNaoBjRyD3T8YsQMQQ,316
117
- ansys/systemcoupling/core/util/pathstr.py,sha256=XhqkMpdpEQk6O2SFKYdLlKel52agsyWNCrdR6XpDph4,788
118
- ansys/systemcoupling/core/util/state_keys.py,sha256=ovYwJBRGGflDR9Ck3zfINOrlTEuPVOzTo6fTpYQVdLQ,3391
119
- ansys/systemcoupling/core/util/yaml_helper.py,sha256=Bpix9OS01GxqXAwKbXB4xG6y_2h1r3RqTB3jjIC9qd0,1828
120
- ansys_systemcoupling_core-0.1.3.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
121
- ansys_systemcoupling_core-0.1.3.dist-info/WHEEL,sha256=rSgq_JpHF9fHR1lx53qwg_1-2LypZE_qmcuXbVUq948,81
122
- ansys_systemcoupling_core-0.1.3.dist-info/METADATA,sha256=9SY21M-JKJqbBiwdqvY2BflumvCv0ea5uUnRRIu65Yc,10741
123
- ansys_systemcoupling_core-0.1.3.dist-info/RECORD,,