ansys-systemcoupling-core 0.8.0__py3-none-any.whl → 0.9.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansys-systemcoupling-core might be problematic. Click here for more details.

Files changed (166) hide show
  1. ansys/systemcoupling/core/__init__.py +2 -2
  2. ansys/systemcoupling/core/_version.py +1 -1
  3. ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +2 -0
  4. ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +62 -10
  5. ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py +20 -0
  6. ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py +1 -1
  7. ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +15 -15
  8. ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py +80 -0
  9. ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +13 -0
  10. ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +13 -0
  11. ansys/systemcoupling/core/adaptor/api_25_2/abort.py +39 -0
  12. ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +46 -0
  13. ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +43 -0
  14. ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +190 -0
  15. ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py +191 -0
  16. ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +61 -0
  17. ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +32 -0
  18. ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +43 -0
  19. ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +77 -0
  20. ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py +78 -0
  21. ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +42 -0
  22. ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +32 -0
  23. ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +162 -0
  24. ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +40 -0
  25. ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +43 -0
  26. ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
  27. ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +303 -0
  28. ansys/systemcoupling/core/adaptor/api_25_2/apip.py +33 -0
  29. ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +44 -0
  30. ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
  31. ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +64 -0
  32. ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +46 -0
  33. ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +40 -0
  34. ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +56 -0
  35. ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +62 -0
  36. ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +18 -0
  37. ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +41 -0
  38. ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +20 -0
  39. ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +42 -0
  40. ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +23 -0
  41. ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +272 -0
  42. ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +29 -0
  43. ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +20 -0
  44. ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +187 -0
  45. ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +28 -0
  46. ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +42 -0
  47. ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +96 -0
  48. ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +256 -0
  49. ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +24 -0
  50. ansys/systemcoupling/core/adaptor/api_25_2/expression.py +20 -0
  51. ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +36 -0
  52. ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +20 -0
  53. ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +46 -0
  54. ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +24 -0
  55. ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +77 -0
  56. ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +20 -0
  57. ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +164 -0
  58. ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +41 -0
  59. ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +29 -0
  60. ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
  61. ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +13 -0
  62. ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +29 -0
  63. ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +31 -0
  64. ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +25 -0
  65. ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +52 -0
  66. ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +13 -0
  67. ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +32 -0
  68. ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +43 -0
  69. ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +155 -0
  70. ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +36 -0
  71. ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +36 -0
  72. ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +27 -0
  73. ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +25 -0
  74. ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +114 -0
  75. ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +39 -0
  76. ansys/systemcoupling/core/adaptor/api_25_2/library.py +37 -0
  77. ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +20 -0
  78. ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +100 -0
  79. ansys/systemcoupling/core/adaptor/api_25_2/map.py +19 -0
  80. ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +249 -0
  81. ansys/systemcoupling/core/adaptor/api_25_2/open.py +102 -0
  82. ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +56 -0
  83. ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +37 -0
  84. ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +134 -0
  85. ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +20 -0
  86. ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +60 -0
  87. ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +138 -0
  88. ansys/systemcoupling/core/adaptor/api_25_2/properties.py +36 -0
  89. ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +46 -0
  90. ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +20 -0
  91. ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +71 -0
  92. ansys/systemcoupling/core/adaptor/api_25_2/region.py +20 -0
  93. ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +71 -0
  94. ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +14 -0
  95. ansys/systemcoupling/core/adaptor/api_25_2/results.py +89 -0
  96. ansys/systemcoupling/core/adaptor/api_25_2/save.py +51 -0
  97. ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +54 -0
  98. ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +259 -0
  99. ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +75 -0
  100. ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +25 -0
  101. ansys/systemcoupling/core/adaptor/api_25_2/side.py +20 -0
  102. ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +56 -0
  103. ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +117 -0
  104. ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +134 -0
  105. ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
  106. ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +157 -0
  107. ansys/systemcoupling/core/adaptor/api_25_2/step.py +57 -0
  108. ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +21 -0
  109. ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +62 -0
  110. ansys/systemcoupling/core/adaptor/api_25_2/type.py +39 -0
  111. ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +158 -0
  112. ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +43 -0
  113. ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +19 -0
  114. ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +61 -0
  115. ansys/systemcoupling/core/adaptor/api_25_2/variable.py +20 -0
  116. ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +231 -0
  117. ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +21 -0
  118. ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +46 -0
  119. ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +32 -0
  120. ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +1 -1
  121. ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +1 -1
  122. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +1 -1
  123. ansys/systemcoupling/core/adaptor/impl/root_source.py +1 -1
  124. ansys/systemcoupling/core/adaptor/impl/static_info.py +13 -6
  125. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +1 -1
  126. ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +1 -1
  127. ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
  128. ansys/systemcoupling/core/charts/chart_datatypes.py +1 -1
  129. ansys/systemcoupling/core/charts/csv_chartdata.py +18 -4
  130. ansys/systemcoupling/core/charts/live_csv_datasource.py +1 -1
  131. ansys/systemcoupling/core/charts/message_dispatcher.py +1 -1
  132. ansys/systemcoupling/core/charts/plot_functions.py +1 -1
  133. ansys/systemcoupling/core/charts/plotdefinition_manager.py +1 -1
  134. ansys/systemcoupling/core/charts/plotter.py +1 -1
  135. ansys/systemcoupling/core/client/grpc_client.py +11 -2
  136. ansys/systemcoupling/core/client/services/command_query.py +4 -13
  137. ansys/systemcoupling/core/client/services/handle_rpc_error.py +64 -0
  138. ansys/systemcoupling/core/client/services/output_stream.py +1 -1
  139. ansys/systemcoupling/core/client/services/process.py +1 -1
  140. ansys/systemcoupling/core/client/services/solution.py +4 -13
  141. ansys/systemcoupling/core/client/syc_container.py +4 -1
  142. ansys/systemcoupling/core/client/syc_process.py +5 -1
  143. ansys/systemcoupling/core/client/variant.py +1 -1
  144. ansys/systemcoupling/core/examples/__init__.py +1 -1
  145. ansys/systemcoupling/core/examples/downloads.py +1 -1
  146. ansys/systemcoupling/core/native_api/__init__.py +1 -1
  147. ansys/systemcoupling/core/native_api/command_metadata.py +1 -1
  148. ansys/systemcoupling/core/native_api/datamodel_metadata.py +1 -1
  149. ansys/systemcoupling/core/native_api/meta_wrapper.py +1 -1
  150. ansys/systemcoupling/core/native_api/native_api.py +1 -1
  151. ansys/systemcoupling/core/native_api/object_path.py +1 -1
  152. ansys/systemcoupling/core/participant/manager.py +1 -1
  153. ansys/systemcoupling/core/participant/mapdl.py +1 -1
  154. ansys/systemcoupling/core/participant/protocol.py +1 -1
  155. ansys/systemcoupling/core/session.py +1 -1
  156. ansys/systemcoupling/core/syc_version.py +3 -3
  157. ansys/systemcoupling/core/util/file_transfer.py +1 -1
  158. ansys/systemcoupling/core/util/logging.py +1 -1
  159. ansys/systemcoupling/core/util/name_util.py +1 -1
  160. ansys/systemcoupling/core/util/pathstr.py +1 -1
  161. ansys/systemcoupling/core/util/state_keys.py +1 -1
  162. ansys/systemcoupling/core/util/yaml_helper.py +1 -1
  163. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/METADATA +35 -21
  164. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/RECORD +166 -53
  165. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info}/WHEEL +1 -1
  166. {ansys_systemcoupling_core-0.8.0.dist-info → ansys_systemcoupling_core-0.9.0.dist-info/licenses}/LICENSE +1 -1
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -20,11 +20,11 @@
20
20
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
21
  # SOFTWARE.
22
22
 
23
- import ansys.api.systemcoupling.v0.error_pb2 as syc_error_pb2
24
23
  import ansys.api.systemcoupling.v0.solution_pb2 as solution_pb2
25
24
  import ansys.api.systemcoupling.v0.solution_pb2_grpc as solution_pb2_grpc
26
25
  import grpc
27
- from grpc_status.rpc_status import from_call
26
+
27
+ from ansys.systemcoupling.core.client.services.handle_rpc_error import handle_rpc_error
28
28
 
29
29
 
30
30
  class SolutionService:
@@ -36,16 +36,7 @@ class SolutionService:
36
36
  try:
37
37
  self.__stub.Solve(request)
38
38
  except grpc.RpcError as rpc_error:
39
- status = from_call(rpc_error)
40
- msg = f"Command execution failed: {status.message} (code={status.code})"
41
- for detail in status.details:
42
- if detail.Is(syc_error_pb2.ErrorDetails.DESCRIPTOR):
43
- info = syc_error_pb2.ErrorDetails()
44
- detail.Unpack(info)
45
- msg += (
46
- f"\n\nServer exception details:\n"
47
- f"{info.exception_classname}\n{info.stack_trace}"
48
- )
39
+ msg = handle_rpc_error(rpc_error)
49
40
  raise RuntimeError(msg) from None
50
41
 
51
42
  def interrupt(self, reason):
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -81,6 +81,9 @@ def start_container(
81
81
  idx = run_args.index("-p")
82
82
  run_args.insert(idx, container_user)
83
83
  run_args.insert(idx, "--user")
84
+ # Licensing can't log to default location if user is not the default 'root'
85
+ run_args.insert(idx, f"ANSYSLC_APPLOGDIR={mounted_to}")
86
+ run_args.insert(idx, "-e")
84
87
 
85
88
  license_server = os.getenv("ANSYSLMD_LICENSE_FILE")
86
89
  if license_server:
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -50,6 +50,10 @@ class SycProcess: # pragma: no cover
50
50
  host, port, working_dir, version, **kwargs
51
51
  )
52
52
 
53
+ @property
54
+ def path_to_system_coupling(self) -> str:
55
+ return self.__process.args[0]
56
+
53
57
  def end(self):
54
58
  if self.__process and self.__process.poll() is None:
55
59
  pid = self.__process.pid
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -24,8 +24,8 @@ from typing import Tuple
24
24
 
25
25
  # Define constants relating to the default/current version of System Coupling
26
26
 
27
- SYC_MAJOR_VERSION = 24
28
- SYC_MINOR_VERSION = 2
27
+ SYC_MAJOR_VERSION = 25
28
+ SYC_MINOR_VERSION = 1
29
29
 
30
30
  SYC_VERSION_CONCAT = f"{SYC_MAJOR_VERSION}{SYC_MINOR_VERSION}"
31
31
  SYC_VERSION_DOT = f"{SYC_MAJOR_VERSION}.{SYC_MINOR_VERSION}"
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -1,10 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ansys-systemcoupling-core
3
- Version: 0.8.0
3
+ Version: 0.9.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>
7
- Requires-Python: >=3.10,<3.13
7
+ Requires-Python: >=3.10,<3.14
8
8
  Description-Content-Type: text/x-rst
9
9
  Classifier: Development Status :: 4 - Beta
10
10
  Classifier: Intended Audience :: Science/Research
@@ -16,10 +16,12 @@ Classifier: Operating System :: MacOS
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ License-File: LICENSE
19
21
  Requires-Dist: ansys-api-systemcoupling==0.2.0
20
22
  Requires-Dist: ansys-platform-instancemanagement~=1.0
21
23
  Requires-Dist: grpcio>=1.30.0
22
- Requires-Dist: grpcio-status>=1.30.0,<1.66.2
24
+ Requires-Dist: grpcio-status>=1.30.0
23
25
  Requires-Dist: googleapis-common-protos>=1.50.0
24
26
  Requires-Dist: psutil>=5.7.0
25
27
  Requires-Dist: pyyaml
@@ -27,27 +29,26 @@ Requires-Dist: appdirs>=1.4.0
27
29
  Requires-Dist: importlib-metadata>=4.0
28
30
  Requires-Dist: matplotlib>=3.8.2
29
31
  Requires-Dist: build ; extra == "build"
30
- Requires-Dist: black==24.8.0 ; extra == "classesgen"
31
- Requires-Dist: isort==5.13.2 ; extra == "classesgen"
32
- Requires-Dist: ansys-sphinx-theme==1.0.11 ; extra == "doc"
32
+ Requires-Dist: black==25.1.0 ; extra == "classesgen"
33
+ Requires-Dist: isort==6.0.1 ; extra == "classesgen"
34
+ Requires-Dist: ansys-sphinx-theme==1.3.2 ; extra == "doc"
33
35
  Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
34
36
  Requires-Dist: matplotlib ; extra == "doc"
35
37
  Requires-Dist: numpydoc==1.8.0 ; extra == "doc"
36
- Requires-Dist: pypandoc==1.13 ; extra == "doc"
38
+ Requires-Dist: pypandoc==1.15 ; extra == "doc"
37
39
  Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
38
- Requires-Dist: Sphinx==8.0.2 ; extra == "doc"
39
- Requires-Dist: sphinx-autobuild==2024.9.19 ; extra == "doc"
40
- Requires-Dist: sphinx-autodoc-typehints==2.4.4 ; extra == "doc"
40
+ Requires-Dist: sphinx>=8.1.3 ; extra == "doc"
41
+ Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
42
+ Requires-Dist: sphinx-autodoc-typehints==3.1.0 ; extra == "doc"
41
43
  Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
42
- Requires-Dist: sphinx-gallery==0.17.1 ; extra == "doc"
43
- Requires-Dist: sphinx-notfound-page==1.0.4 ; extra == "doc"
44
+ Requires-Dist: sphinx-gallery==0.19.0 ; extra == "doc"
45
+ Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
44
46
  Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
45
47
  Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
46
- Requires-Dist: ansys-fluent-core==0.26.0 ; extra == "doc"
47
- Requires-Dist: ansys-dpf-core==0.13.0 ; extra == "doc"
48
- Requires-Dist: ansys-mapdl-core==0.68.4 ; extra == "doc"
49
- Requires-Dist: codespell==2.3.0 ; extra == "style"
50
- Requires-Dist: flake8==7.1.1 ; extra == "style"
48
+ Requires-Dist: ansys-fluent-core==0.29.0 ; extra == "doc"
49
+ Requires-Dist: ansys-mapdl-core==0.69.3 ; extra == "doc"
50
+ Requires-Dist: codespell==2.4.1 ; extra == "style"
51
+ Requires-Dist: flake8==7.1.2 ; extra == "style"
51
52
  Requires-Dist: pytest ; extra == "tests"
52
53
  Requires-Dist: pytest-cov ; extra == "tests"
53
54
  Requires-Dist: psutil>=5.7.0 ; extra == "tests"
@@ -136,16 +137,29 @@ in this order:
136
137
 
137
138
  * ``SYSC_ROOT``
138
139
  * ``AWP_ROOT``
139
- * ``AWP_ROOT242``
140
+ * ``AWP_ROOT251``
140
141
 
141
142
  If a variable is set but does not refer to a valid installation, PySystemCoupling
142
143
  fails at that point, rather than attempting to use the next variable.
143
144
 
144
- In a standard user installation, the expectation is that only ``AWP_ROOT242`` is set.
145
+ In a standard user installation, the expectation is that only ``AWP_ROOT251`` is set.
145
146
 
146
147
  (It is also possible to provide a different version number as an argument to the ``launch()``
147
148
  function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
148
149
 
150
+ **WARNING**
151
+
152
+ There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
153
+ working in the gRPC server mode on which PySystemCoupling depends. A small patch
154
+ is available that may be applied to some of the Python files in the System Coupling
155
+ installation. This is provided in the ``patches/`` directory of this repository and will
156
+ allow System Coupling to work with the current release of PySystemCoupling.
157
+
158
+ Otherwise, PySystemCoupling should be used with an earlier release of System Coupling by
159
+ setting the environment variable ``AWP_ROOT`` or specifying the version number as an
160
+ argument to the ``launch()`` function.
161
+
162
+
149
163
  The System Coupling API is exposed to PySystemCoupling in two forms:
150
164
 
151
165
  * A documented interface based on concrete Python classes, following Pythonic conventions
@@ -157,7 +171,7 @@ familiar with System Coupling, adjusting to this form, which is the recommended
157
171
  However, if you are transitioning existing scripts, the native System Coupling API is made available
158
172
  as a convenience.
159
173
 
160
- .. note::
174
+ **Note**
161
175
 
162
176
  While most commands should work as expected via the native System Coupling API,
163
177
  no guarantees can be given because of the nature of how it is exposed.
@@ -1,7 +1,7 @@
1
- ansys/systemcoupling/core/__init__.py,sha256=9dek5li8pDDRA5oBI3mPeOwu784_qzwzse3lTNLyUWU,7404
2
- ansys/systemcoupling/core/_version.py,sha256=WDT4Te1BIWgZU3Gt3WrwVwiGFs4nolWZXbwX-Ubj_r4,1579
3
- ansys/systemcoupling/core/session.py,sha256=yjnZI-OFKLjnooVRg5e0M9MIJGV38Cm041mcdb6nMCs,10983
4
- ansys/systemcoupling/core/syc_version.py,sha256=dn1BRe9hzGD2QAsuk6OLjxNcznJlpyiPIZh9Zjrwdqc,3783
1
+ ansys/systemcoupling/core/__init__.py,sha256=vW228n23bD4XPS3_1FkqUe4us01WNz7T3BrhyF91FXE,7404
2
+ ansys/systemcoupling/core/_version.py,sha256=0O92dThGL6WonU1LHCRjVhowmSx2G6APw-gxOsSN9ME,1579
3
+ ansys/systemcoupling/core/session.py,sha256=gdUOivOdKOhOn7oA9Z2kqZKekFPcURwV_bIODBK1KO0,10983
4
+ ansys/systemcoupling/core/syc_version.py,sha256=rmizjaWrgraXXSWo7-CJs9S9Ed1iXli-DVy7ylaiLMs,3783
5
5
  ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
6
6
  ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
7
7
  ansys/systemcoupling/core/adaptor/api_23_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
@@ -469,13 +469,13 @@ ansys/systemcoupling/core/adaptor/api_25_1/global_stabilization.py,sha256=GKoUGq
469
469
  ansys/systemcoupling/core/adaptor/api_25_1/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
470
470
  ansys/systemcoupling/core/adaptor/api_25_1/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
471
471
  ansys/systemcoupling/core/adaptor/api_25_1/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
472
- ansys/systemcoupling/core/adaptor/api_25_1/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
473
- ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
472
+ ansys/systemcoupling/core/adaptor/api_25_1/instancing.py,sha256=J_TJ50x8eU6zcGnrNzMTGUgP5_y2KDqivoKRINEZwss,575
473
+ ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py,sha256=PxmBCSWlVR45wZKhmf_3xjJ8M0Z-TBtHMN194cmf9N4,3968
474
474
  ansys/systemcoupling/core/adaptor/api_25_1/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
475
475
  ansys/systemcoupling/core/adaptor/api_25_1/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
476
476
  ansys/systemcoupling/core/adaptor/api_25_1/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
477
477
  ansys/systemcoupling/core/adaptor/api_25_1/live_visualization_child.py,sha256=1s-mZXROuCMnUTex47s5reCfwl5QPIftIuSUt63Bgcc,3217
478
- ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
478
+ ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py,sha256=XoQi44FhUdG03B9HoR5GlADP1m35gLQVUDcrRn9ERQs,9851
479
479
  ansys/systemcoupling/core/adaptor/api_25_1/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
480
480
  ansys/systemcoupling/core/adaptor/api_25_1/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
481
481
  ansys/systemcoupling/core/adaptor/api_25_1/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
@@ -493,7 +493,7 @@ ansys/systemcoupling/core/adaptor/api_25_1/reload_expression_function_modules.py
493
493
  ansys/systemcoupling/core/adaptor/api_25_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
494
494
  ansys/systemcoupling/core/adaptor/api_25_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
495
495
  ansys/systemcoupling/core/adaptor/api_25_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
496
- ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py,sha256=R8q0KzxGiiPknUNImbsrgu-_xj_4X-McS4bId-z-Qss,9055
496
+ ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py,sha256=ancWutiFrgM5SKtwrYYH0csghLxQBhtMXa80e8a4BvE,9055
497
497
  ansys/systemcoupling/core/adaptor/api_25_1/show_plot.py,sha256=qGa4acJb2LU3CqytIFrWKQ59aQLtCQnUCs1HbOR6lDc,1887
498
498
  ansys/systemcoupling/core/adaptor/api_25_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
499
499
  ansys/systemcoupling/core/adaptor/api_25_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
@@ -509,52 +509,165 @@ ansys/systemcoupling/core/adaptor/api_25_1/transformation_child.py,sha256=ny8wp4
509
509
  ansys/systemcoupling/core/adaptor/api_25_1/type.py,sha256=fC5twjCM-g2J3Q2s0Fzq33-xy6MKIrHUluBTx41LmvQ,886
510
510
  ansys/systemcoupling/core/adaptor/api_25_1/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
511
511
  ansys/systemcoupling/core/adaptor/api_25_1/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
512
- ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py,sha256=Hnan-3ehi3MH9IUFhHuIv3kq4B255pKaqyjSaRJFU-Q,2345
512
+ ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py,sha256=JoaRINNMXUaPlbh6WNk7cRim6vMD4pIQtJIyHGQW6S8,2109
513
513
  ansys/systemcoupling/core/adaptor/api_25_1/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
514
514
  ansys/systemcoupling/core/adaptor/api_25_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
515
515
  ansys/systemcoupling/core/adaptor/api_25_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
516
516
  ansys/systemcoupling/core/adaptor/api_25_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
517
- ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=3wSnWTUS3q4VdufmHZ7jxyVCZONITFtP_tUB-8NnQuU,4210
518
- ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=CIq2J8h8Eapq_jrXpMMHAa9oqSSaNR5G7NAYZseVgJg,2489
519
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=5FlUQUr0fuPvUh1YPaU38eh_duRHeg6NzpvyxCND5SI,19177
520
- ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=d-NSP104VjR65qTiqp1rlST6VYJRUPf9YHcpR8ABssQ,12828
521
- ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=5U1CYNASPl4zNGjIw3Slwkhq-8v7GVKrih0HO_bIjSk,15691
522
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=-jF5zSwwiyJXLxocWK01v5AYDDtLyZRiMPfcqeOvim8,4906
523
- ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=oEEo1hyCtV-HFml7p0LuDKtmb918XmrBejkwx3Y_rkk,2361
524
- ansys/systemcoupling/core/adaptor/impl/types.py,sha256=Q-19IykEuUYQA2yVx-wJkP2tO9Am1IWzg3pFquFgI1c,25132
525
- ansys/systemcoupling/core/charts/chart_datatypes.py,sha256=rlN9_rOaUGMLjEuxaSqpIBWcht3cnBpxm2uNYghbJU4,6711
526
- ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=kmoglFJmAkZE8o5iV9GJNbOyL9CMVeLNLOVxfyS0D1M,11043
527
- ansys/systemcoupling/core/charts/live_csv_datasource.py,sha256=R8r1WGjKx0-VxwYq_MqnRQYEIqFeJTICOaDpd4QLMs0,3385
528
- ansys/systemcoupling/core/charts/message_dispatcher.py,sha256=zuNY3NthWag1yf7Rkj9CapaSyi0Bd0WSx8aMU1NfNgQ,2940
529
- ansys/systemcoupling/core/charts/plot_functions.py,sha256=Li5HYCWkRTAvFGqnI6p636qayTPqphHLOtWI861vtgA,3276
530
- ansys/systemcoupling/core/charts/plotdefinition_manager.py,sha256=UFQjYei3gk3GYVUksSPYbtcxFbcfepZscGg55ok5OQg,12446
531
- ansys/systemcoupling/core/charts/plotter.py,sha256=L_hIanq5sV6LVSu3dn3yjoeCPBpEccyxXk2fFCt85_s,11833
532
- ansys/systemcoupling/core/client/grpc_client.py,sha256=8g7oASjQ2FEfnxDJ6K4Wl9EOkUUAqq_fMuGVC3zxTXk,14947
533
- ansys/systemcoupling/core/client/syc_container.py,sha256=_EZRscY5iWyJPbqY-ep_e6Y-Nu1XKygduzVYjg5xJg8,3170
534
- ansys/systemcoupling/core/client/syc_process.py,sha256=udVsRxD5QaaL1n7MPjmpIvybv5dlPmXiO2KCPRNnWGE,5635
535
- ansys/systemcoupling/core/client/variant.py,sha256=di_eWRZnDQ69cknunYxRAOnbnwXnG6aZ_Se1VxOX7VQ,3064
536
- ansys/systemcoupling/core/client/services/command_query.py,sha256=3qd0qTQDMxW5qz2DuQIC30RKEPIwe8JWxJwSaRd_X8E,2256
537
- ansys/systemcoupling/core/client/services/output_stream.py,sha256=Tk2dzbqtY9zro-DQ_qRGqhaef1y0geBbXKxvKcTB_Ck,2148
538
- ansys/systemcoupling/core/client/services/process.py,sha256=u_gSQ14w5KVKIb_APjba-FOxv4u27YYUCN43CXjl6cM,1683
539
- ansys/systemcoupling/core/client/services/solution.py,sha256=W4QlrRIkt-YihpwZh2sIZWQOH2Eg2741F7s6kUKepGM,2518
540
- ansys/systemcoupling/core/examples/__init__.py,sha256=ENNPCQaRxb-NZsFsj-_eaMkLmJmbiwe_IhD5xNaXQFc,1223
541
- ansys/systemcoupling/core/examples/downloads.py,sha256=sp77UGBrel50wt5rbE_eaTSTSOaeAc2UObX19rNwkeQ,3708
542
- ansys/systemcoupling/core/native_api/__init__.py,sha256=2ZbeOsasqkAfqneB_iavb-qotNw3jtUCXWQAuBVQCuE,1188
543
- ansys/systemcoupling/core/native_api/command_metadata.py,sha256=hyjDSYNU77xsV7VB24wCa7SenS3PQ-FtYeuF7BzkmGQ,1734
544
- ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=igFtxBTSh1VlN2Ni2ubzXHcV7Ca-DjjcCn9w5mqfJBk,4836
545
- ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=ddyT0ea2GBAQHu99BJw9SA9wz8f9Q1j1bOt3KVJG0cE,1462
546
- ansys/systemcoupling/core/native_api/native_api.py,sha256=3dP17JYzZa1PFP2jbCaEhzDi9B00ESlIcamxswRKcU0,7116
547
- ansys/systemcoupling/core/native_api/object_path.py,sha256=DAULeS_asHMf1O3PiFnLLF_ZinTBakmrBQcfie34eKs,4153
548
- ansys/systemcoupling/core/participant/manager.py,sha256=kJzfsTA1HquDQT-j3ib9OQMD0QRpvWGpnPMYDDvnYZU,9685
549
- ansys/systemcoupling/core/participant/mapdl.py,sha256=v9Ms6uVaPj1-AbZYsaAY9JR_WpkLD7xSOJ3kQRGgtT0,11166
550
- ansys/systemcoupling/core/participant/protocol.py,sha256=Kc90wvz-ZDJfhvL-SrlFymdb_mn2oqVucaRZW7BfFWM,2479
551
- ansys/systemcoupling/core/util/file_transfer.py,sha256=ZYRYAo6wDRVB7ihEMbK3JHYAoXiU5lxo6yzGTd830jo,6560
552
- ansys/systemcoupling/core/util/logging.py,sha256=dFj0migeyUGke7sYL-hN80amMnUvuIO1kkCsOH_8ipc,5059
553
- ansys/systemcoupling/core/util/name_util.py,sha256=AqALTBRe9hjS0SqbKk2BnN09pCq0M1irhd9illTTuwk,1470
554
- ansys/systemcoupling/core/util/pathstr.py,sha256=xfnBAee68WG1R8s2LkoO9fLYZsJ0Nrx84woVuQv9bVY,1941
555
- ansys/systemcoupling/core/util/state_keys.py,sha256=52gk88CJw1K3YIC6hg7Jc6_C2_EznQjrB1FrpcjhI1M,4545
556
- ansys/systemcoupling/core/util/yaml_helper.py,sha256=6j2VNGXSEiJ11GUsUn4Z3wbPB9Cw-5JBsb5gWHAVsYo,2982
557
- ansys_systemcoupling_core-0.8.0.dist-info/LICENSE,sha256=JgD60xBjdC80Y3_bDlvjsoWCc6vghcXDvbHvRTRmdY0,1098
558
- ansys_systemcoupling_core-0.8.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
559
- ansys_systemcoupling_core-0.8.0.dist-info/METADATA,sha256=ndbuY_i0J7WKo2ZMiZlB5YA0RhP4kTJK0wcQMEQicNs,10964
560
- ansys_systemcoupling_core-0.8.0.dist-info/RECORD,,
517
+ ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py,sha256=zbTC_i9XBHO7nMnw-Dqm83V_LbLJl7BlVYlzctZ8NOk,1374
518
+ ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
519
+ ansys/systemcoupling/core/adaptor/api_25_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
520
+ ansys/systemcoupling/core/adaptor/api_25_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
521
+ ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
522
+ ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py,sha256=M2Ma8DQI0899pHrGyM8mk_Vb5daEX_W8gXltyngAqxg,1101
523
+ ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py,sha256=9B5IeJo1xTJ74J5wBKwpTlUuiXNM2ylVk2usF-F-G3E,8251
524
+ ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
525
+ ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
526
+ ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py,sha256=vHmh6lKLoRo_8lZh5_bYJB-dUOi_DGs5cJItaaWw8Ms,724
527
+ ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
528
+ ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py,sha256=JZAD-knXLuM1sAYbM3rqtEkJ4khYiFMzYdnUauC4UTo,2550
529
+ ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py,sha256=fHqrLSHNK29LxYgS4aSHKC1iEB1BJqWKBhthn4V3CGw,2300
530
+ ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
531
+ ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
532
+ ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py,sha256=55Kre4HnjH-146Njy0RXSq8F_4t5K2IyvxTnhXxV2Fg,6399
533
+ ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
534
+ ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
535
+ ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py,sha256=JjbUFOWj7aYBX40EPHzNnx2C0lUS8WlSnfh-i0Za2b0,3322
536
+ ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py,sha256=bXajxnizqSu5pCpYjf4p0oVr2vHBB5HgJ12OwnnKhjg,11753
537
+ ansys/systemcoupling/core/adaptor/api_25_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
538
+ ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
539
+ ansys/systemcoupling/core/adaptor/api_25_2/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
540
+ ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py,sha256=tltI-G_Vd-Fs2j9_oLbnrWntbF6wXd2_KNkD5VerfuM,1779
541
+ ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
542
+ ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
543
+ ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py,sha256=eZ1AMdk8YPIPS5GayPllYAdW9xrjasHtz3qYEOBtVU0,1592
544
+ ansys/systemcoupling/core/adaptor/api_25_2/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
545
+ ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
546
+ ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py,sha256=LhrmimlCstSX4GVjNgOR11Wbhe3PXydJdAKrBxknjNI,1180
547
+ ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
548
+ ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
549
+ ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
550
+ ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py,sha256=LqYHNWiHAOXln02g-FI4CzBVpvkPsos4F1eVVGUBvQ0,9139
551
+ ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
552
+ ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
553
+ ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
554
+ ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
555
+ ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
556
+ ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
557
+ ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py,sha256=OiDBAkcuxxCg2sgZcR5__NzxUmIAPDDIZmnXrsFG41o,9493
558
+ ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py,sha256=lYYPEWRHb4ztgLKlm5iU9CoWR9js54PWoiuqgU-Zvz8,556
559
+ ansys/systemcoupling/core/adaptor/api_25_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
560
+ ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
561
+ ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
562
+ ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
563
+ ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
564
+ ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
565
+ ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
566
+ ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py,sha256=O1xQ5ADVR3y-S6NDI302MgRoVKpyckMqbJDgW6kUs48,5040
567
+ ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
568
+ ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
569
+ ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
570
+ ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
571
+ ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
572
+ ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
573
+ ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
574
+ ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
575
+ ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py,sha256=Q87bRy0PDB7OaTMy5GOu-DUQ27IX-n62kZ6NnYIpR4E,304
576
+ ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
577
+ ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py,sha256=S4XWsDhtsDKs-nEJMEUgD4zxh76C4G_n3h2zfgSy9ds,1000
578
+ ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py,sha256=GKoUGq563wEntUqM-uqST_yd0xnoMXO5kTfPMlDDAXg,4903
579
+ ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
580
+ ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
581
+ ansys/systemcoupling/core/adaptor/api_25_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
582
+ ansys/systemcoupling/core/adaptor/api_25_2/instancing.py,sha256=J_TJ50x8eU6zcGnrNzMTGUgP5_y2KDqivoKRINEZwss,575
583
+ ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py,sha256=PxmBCSWlVR45wZKhmf_3xjJ8M0Z-TBtHMN194cmf9N4,3968
584
+ ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
585
+ ansys/systemcoupling/core/adaptor/api_25_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
586
+ ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
587
+ ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py,sha256=1s-mZXROuCMnUTex47s5reCfwl5QPIftIuSUt63Bgcc,3217
588
+ ansys/systemcoupling/core/adaptor/api_25_2/map.py,sha256=MHmHvyo_bUC67mj0U6-Zl_g24y1NilwEGKTBxhTYwtk,506
589
+ ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py,sha256=ZxTLcT2fsOGGXRKMQqefKToWEKabsdWDitdgdP8sUb4,9383
590
+ ansys/systemcoupling/core/adaptor/api_25_2/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
591
+ ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
592
+ ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
593
+ ansys/systemcoupling/core/adaptor/api_25_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
594
+ ansys/systemcoupling/core/adaptor/api_25_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
595
+ ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py,sha256=N-2cgILu8mOrvjwiVQvz84eBQzzX5rFV89UPYo3q2yI,1768
596
+ ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py,sha256=SfHkqFngUGTNAnWxcTDfDjnPIrO80m8rxuM1xtn0B-4,6112
597
+ ansys/systemcoupling/core/adaptor/api_25_2/properties.py,sha256=nhwhkbDvBsMkkBpSgd2_1kJPyPINA7YWJF-Yasu5Wp4,1036
598
+ ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
599
+ ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
600
+ ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
601
+ ansys/systemcoupling/core/adaptor/api_25_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
602
+ ansys/systemcoupling/core/adaptor/api_25_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
603
+ ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
604
+ ansys/systemcoupling/core/adaptor/api_25_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
605
+ ansys/systemcoupling/core/adaptor/api_25_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
606
+ ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
607
+ ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py,sha256=HuezR4LrnvAFGNp5GP_k-fxVhZamVYPEZScfAbwmTBc,9055
608
+ ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py,sha256=qGa4acJb2LU3CqytIFrWKQ59aQLtCQnUCs1HbOR6lDc,1887
609
+ ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
610
+ ansys/systemcoupling/core/adaptor/api_25_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
611
+ ansys/systemcoupling/core/adaptor/api_25_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
612
+ ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py,sha256=LNKgF7khY-pTafoFlSOlJCKhHuISfhW2RSc1IRZazN4,4162
613
+ ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py,sha256=kHM2_H4aZqhi5WVZ_5NvvBSxI3cP_Tpxlvg0RqEqQeA,3605
614
+ ansys/systemcoupling/core/adaptor/api_25_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
615
+ ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
616
+ ansys/systemcoupling/core/adaptor/api_25_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
617
+ ansys/systemcoupling/core/adaptor/api_25_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
618
+ ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
619
+ ansys/systemcoupling/core/adaptor/api_25_2/type.py,sha256=fC5twjCM-g2J3Q2s0Fzq33-xy6MKIrHUluBTx41LmvQ,886
620
+ ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
621
+ ansys/systemcoupling/core/adaptor/api_25_2/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
622
+ ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py,sha256=j5RljODkriegdx9UYRbVlbWbSz4aVx4z-bmOnPPclCw,620
623
+ ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py,sha256=eSrrxoHf2TXbI2WkbAObeDllCUpNzMAHVi58f25xcdY,2103
624
+ ansys/systemcoupling/core/adaptor/api_25_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
625
+ ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
626
+ ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
627
+ ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py,sha256=3UzT6ZX9XASOjUBcDOkLLAYlE6vqO1BLms_LjjSyEs0,1278
628
+ ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py,sha256=mXpCjJoG2wFK5RriBgfRsCgqFqUDFNrjv5Z2VwhMU_M,882
629
+ ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=HFyhLn_Rw7mO23zGJsHq1XQ7Gnxh0ffHIXM5AxlGvqQ,4210
630
+ ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=EBKu9q1OdIdLzKzi4MxTAZlCGm1MIJJ60FY-X40BGac,2489
631
+ ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=oE24dT8xY_BuZ3Z6K5fFTFL94Oc-jbjRcIWLWekbEDo,19177
632
+ ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=RIQlBtqnQEOlR8nXMfzNtdeNU3cIiciH-UW8StQoN8w,12828
633
+ ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=J1EN5rI0kaGPupUwxXfe3XlYuBHUWQwkbNy9s8U--QQ,15938
634
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=AWb1Qwwrt7HAVhHNcXjWbahJyqb79wxvexGXTXl_oiU,4906
635
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=pByFumJFde3LytQtRjuKWB0D7Qz9q51ivulEktTfwy4,2361
636
+ ansys/systemcoupling/core/adaptor/impl/types.py,sha256=LTzLPzEwSsDOtV-1fNiJDJP38UMOIMZ08ugdti68Ax4,25132
637
+ ansys/systemcoupling/core/charts/chart_datatypes.py,sha256=ml5uWQdC6zNpQzks-wjSV0GsEd8npU20Dc0qRibfxVM,6711
638
+ ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=pL1SUc0ufprhGTbfQXx1lqqk0ESCZIXQ50YUx1H-LNU,11811
639
+ ansys/systemcoupling/core/charts/live_csv_datasource.py,sha256=b5VkE8fMSv-C6LQk0OUTc6FtbJ2tmHSkw1Imo2E6lyg,3385
640
+ ansys/systemcoupling/core/charts/message_dispatcher.py,sha256=Z5SQ7huo7-naQ37NzCSBH-cEnwZlUUyK2p_7jxWRnIw,2940
641
+ ansys/systemcoupling/core/charts/plot_functions.py,sha256=13KBPKpA_IpN5DQtWNZD6QTrdGp-FGxlQMUGOC1qIHo,3276
642
+ ansys/systemcoupling/core/charts/plotdefinition_manager.py,sha256=_rEc5FyqzgZXBAYM-ztbHT61IG8VJlHFu9-7gF5TLuE,12446
643
+ ansys/systemcoupling/core/charts/plotter.py,sha256=z01gIUsNVJM_z21Zolu390s1lhxTz0v5M8XLG2TKyRo,11833
644
+ ansys/systemcoupling/core/client/grpc_client.py,sha256=ABXxhY4hBjYb6SrWC0FMgZ3iwYKeaIXTP4OfcOOE97Y,15291
645
+ ansys/systemcoupling/core/client/syc_container.py,sha256=5m3LPMKfOfYkSIrdJOt5yxz2eHNf7389dsISdHUORz0,3353
646
+ ansys/systemcoupling/core/client/syc_process.py,sha256=Grui7KfXgzxIE-OJc1YJOVNjoIrr1VkLSrEbhal7cSA,5734
647
+ ansys/systemcoupling/core/client/variant.py,sha256=Py_0bfqcmqfHqqrsfkp7Q-K0NFf4lAZQuZKCzrNKGZ0,3064
648
+ ansys/systemcoupling/core/client/services/command_query.py,sha256=L2hM-dahtvwVWezh2Tnj0pkDJeiATBOnREG39pD27BY,1766
649
+ ansys/systemcoupling/core/client/services/handle_rpc_error.py,sha256=3nUNJ6enE1REnkCKH7dvkEPF01JLrxZw9Q0F_cpI0iI,2641
650
+ ansys/systemcoupling/core/client/services/output_stream.py,sha256=hnz6syI8f1FqYrfm3nQvNK577bi5rXLoNNKjY3Wh8lg,2148
651
+ ansys/systemcoupling/core/client/services/process.py,sha256=SsqBNjweebAS4WiZFj7hoPgP8Xunf7NXm_UXxt1X9vY,1683
652
+ ansys/systemcoupling/core/client/services/solution.py,sha256=bfcPyZ3a-H-itG2Xa5_xIfDNut733eXWZzJ7qkkrHaI,2028
653
+ ansys/systemcoupling/core/examples/__init__.py,sha256=bv0y1__s_vWioAMICbRbHIX9CSVLNVQczgZLe1hBek8,1223
654
+ ansys/systemcoupling/core/examples/downloads.py,sha256=L1M3M4bCv-POCoCZ4w18mAgz-JWBvVmXCg0y_87ngW8,3708
655
+ ansys/systemcoupling/core/native_api/__init__.py,sha256=AFAIdTi-UVI_UZXtAZ2tZUw-zglXBb4aPCBTokuNQn8,1188
656
+ ansys/systemcoupling/core/native_api/command_metadata.py,sha256=1rgid0cCwMNQf9pBXCluakw0ZObnh5R7Cd9byPK57-4,1734
657
+ ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=htPI_l9dQdatT-ooyuO7amisOz0_sn_TTS3kp62mfdo,4836
658
+ ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=zvWrdZxx15ezJ_b4OZ0DVBytEaT_0Nrr6Si66mrpjjs,1462
659
+ ansys/systemcoupling/core/native_api/native_api.py,sha256=3uu6iRunf5ZrTCnNeERFsYepo5jPInhvqa-1NB_1psE,7116
660
+ ansys/systemcoupling/core/native_api/object_path.py,sha256=rxvt3zvgdbtlX5vmDccsAdJxWvVfTjbt2PpnuvJMNWg,4153
661
+ ansys/systemcoupling/core/participant/manager.py,sha256=xnRx_oG82mnk9trR1jqlb5CXtHwfbdwVt8jmcs4vKVQ,9685
662
+ ansys/systemcoupling/core/participant/mapdl.py,sha256=j6AWvFqUAbzBJMbDWILFxS6XVLP7NVYwDjeKSBbDA_s,11166
663
+ ansys/systemcoupling/core/participant/protocol.py,sha256=7c4_GejvtfsCRizTZgX4pDOp0VlEx9CVPCFxDbNvgIM,2479
664
+ ansys/systemcoupling/core/util/file_transfer.py,sha256=c_-w2kJUpdT4CK3b-3EzbcfcafFqqcXX21x40Is2J4g,6560
665
+ ansys/systemcoupling/core/util/logging.py,sha256=BMhDGQWucYjSNGrS3hYIiNxmvmj5chayo1djZcMwiM8,5059
666
+ ansys/systemcoupling/core/util/name_util.py,sha256=5p3dFIkPJheSX4r4hAcUaGrpmzGg385CruWo--sCCbc,1470
667
+ ansys/systemcoupling/core/util/pathstr.py,sha256=UVewX1DMeWpHgSAZDXX_p1TNs9O-fKDGT7G_38aC6JI,1941
668
+ ansys/systemcoupling/core/util/state_keys.py,sha256=yont9Vw-QjD3o6-AJsmPqVLv1nHMPdll8oo26Z763zI,4545
669
+ ansys/systemcoupling/core/util/yaml_helper.py,sha256=_8ZrZeddnG_-QtdKP0WTxZPxneQkIHuWA229AT687QA,2982
670
+ ansys_systemcoupling_core-0.9.0.dist-info/licenses/LICENSE,sha256=EYDaskLuQxdNNOubsr9Xmgf_0bebDOEcd1ewKBOLCnQ,1098
671
+ ansys_systemcoupling_core-0.9.0.dist-info/WHEEL,sha256=_2ozNFCLWc93bK4WKHCO-eDUENDlo-dgc9cU3qokYO4,82
672
+ ansys_systemcoupling_core-0.9.0.dist-info/METADATA,sha256=TcKF9kYaF912RbPFyroWGNlAv4ZNBYFbd-Q0j8O1Dc4,11648
673
+ ansys_systemcoupling_core-0.9.0.dist-info/RECORD,,