ansys-systemcoupling-core 0.3.1__py3-none-any.whl → 0.4.dev0__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 (165) hide show
  1. ansys/systemcoupling/core/__init__.py +23 -1
  2. ansys/systemcoupling/core/_version.py +22 -0
  3. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_data_transfer_by_display_names.py +0 -3
  4. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_interface.py +21 -23
  5. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_interface_by_display_names.py +0 -3
  6. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_participant.py +40 -20
  7. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/analysis_control.py +0 -42
  8. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/avoid_data_reconstruction.py +0 -10
  9. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/case_root.py +7 -1
  10. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_participant_child.py +2 -97
  11. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/execution_control.py +1 -31
  12. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/fluent_input.py +0 -10
  13. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/fmu_parameter_child.py +0 -30
  14. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/has_input_file_changed.py +2 -2
  15. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/mapping_control.py +0 -10
  16. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/open_results_in_ensight.py +0 -28
  17. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/output_control.py +1 -6
  18. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/region_child.py +3 -2
  19. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/setup_root.py +1 -49
  20. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/solution_control.py +0 -24
  21. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/solution_root.py +1 -7
  22. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/start_participants.py +1 -1
  23. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/update_participant.py +8 -8
  24. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/variable_child.py +1 -31
  25. ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +3 -0
  26. ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_fsi_data_transfers.py +1 -12
  27. ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +23 -21
  28. ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +3 -0
  29. ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +20 -40
  30. ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +42 -0
  31. ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +10 -0
  32. ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +1 -7
  33. ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +85 -2
  34. ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +11 -1
  35. ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +30 -0
  36. ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +2 -2
  37. ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +10 -0
  38. ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +28 -0
  39. ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +6 -1
  40. ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/record_interactions.py +0 -10
  41. ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +2 -2
  42. ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +49 -1
  43. ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +24 -0
  44. ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +7 -1
  45. ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +1 -1
  46. ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +8 -8
  47. ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +31 -1
  48. ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +22 -0
  49. ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +26 -2
  50. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +29 -0
  51. ansys/systemcoupling/core/adaptor/impl/root_source.py +22 -1
  52. ansys/systemcoupling/core/adaptor/impl/static_info.py +22 -0
  53. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +22 -0
  54. ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +22 -0
  55. ansys/systemcoupling/core/adaptor/impl/types.py +23 -0
  56. ansys/systemcoupling/core/client/grpc_client.py +22 -0
  57. ansys/systemcoupling/core/client/services/command_query.py +22 -0
  58. ansys/systemcoupling/core/client/services/output_stream.py +22 -0
  59. ansys/systemcoupling/core/client/services/process.py +22 -0
  60. ansys/systemcoupling/core/client/services/solution.py +22 -0
  61. ansys/systemcoupling/core/client/syc_container.py +22 -0
  62. ansys/systemcoupling/core/client/syc_process.py +22 -0
  63. ansys/systemcoupling/core/client/variant.py +22 -0
  64. ansys/systemcoupling/core/examples/__init__.py +22 -0
  65. ansys/systemcoupling/core/examples/downloads.py +23 -0
  66. ansys/systemcoupling/core/native_api/__init__.py +22 -0
  67. ansys/systemcoupling/core/native_api/command_metadata.py +23 -0
  68. ansys/systemcoupling/core/native_api/datamodel_metadata.py +22 -0
  69. ansys/systemcoupling/core/native_api/meta_wrapper.py +23 -0
  70. ansys/systemcoupling/core/native_api/native_api.py +22 -0
  71. ansys/systemcoupling/core/native_api/object_path.py +22 -0
  72. ansys/systemcoupling/core/participant/manager.py +22 -0
  73. ansys/systemcoupling/core/participant/mapdl.py +298 -0
  74. ansys/systemcoupling/core/participant/protocol.py +22 -0
  75. ansys/systemcoupling/core/session.py +22 -0
  76. ansys/systemcoupling/core/syc_version.py +22 -0
  77. ansys/systemcoupling/core/util/logging.py +22 -0
  78. ansys/systemcoupling/core/util/name_util.py +22 -0
  79. ansys/systemcoupling/core/util/pathstr.py +23 -1
  80. ansys/systemcoupling/core/util/state_keys.py +22 -0
  81. ansys/systemcoupling/core/util/yaml_helper.py +22 -0
  82. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/METADATA +19 -18
  83. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/RECORD +165 -164
  84. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/_add_participant.py +0 -0
  85. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/_solve.py +0 -0
  86. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/abort.py +0 -0
  87. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/activate_hidden.py +0 -0
  88. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_data_transfer.py +0 -0
  89. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_expression_function.py +0 -0
  90. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_named_expression.py +0 -0
  91. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_reference_frame.py +0 -0
  92. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_transformation.py +0 -0
  93. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/apip.py +0 -0
  94. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/ascii_output.py +0 -0
  95. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/attribute.py +0 -0
  96. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/attribute_child.py +0 -0
  97. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/available_ports.py +0 -0
  98. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/clear_state.py +0 -0
  99. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_interface.py +0 -0
  100. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_interface_child.py +0 -0
  101. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_participant.py +0 -0
  102. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/create_restart_point.py +0 -0
  103. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/data_transfer.py +0 -0
  104. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/data_transfer_child.py +0 -0
  105. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/delete_snapshot.py +0 -0
  106. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/delete_transformation.py +0 -0
  107. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/dimensionality.py +0 -0
  108. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression.py +0 -0
  109. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression_child.py +0 -0
  110. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression_function.py +0 -0
  111. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression_function_child.py +0 -0
  112. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/external_data_file.py +0 -0
  113. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/fmu_parameter.py +0 -0
  114. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/generate_input_file.py +0 -0
  115. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_execution_command.py +0 -0
  116. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_machines.py +0 -0
  117. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_region_names_for_participant.py +0 -0
  118. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_setup_summary.py +0 -0
  119. /ansys/systemcoupling/core/adaptor/{api_24_1 → api_23_1}/get_snapshots.py +0 -0
  120. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_status_messages.py +0 -0
  121. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/global_stabilization.py +0 -0
  122. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/import_system_coupling_input_file.py +0 -0
  123. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/initialize.py +0 -0
  124. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/instancing.py +0 -0
  125. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/instancing_child.py +0 -0
  126. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/interrupt.py +0 -0
  127. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/library.py +0 -0
  128. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/open.py +0 -0
  129. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/open_snapshot.py +0 -0
  130. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/partition_participants.py +0 -0
  131. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/reference_frame.py +0 -0
  132. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/reference_frame_child.py +0 -0
  133. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/region.py +0 -0
  134. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/reload_expression_function_modules.py +0 -0
  135. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/results.py +0 -0
  136. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/save.py +0 -0
  137. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/save_snapshot.py +0 -0
  138. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/shutdown.py +0 -0
  139. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/side.py +0 -0
  140. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/side_child.py +0 -0
  141. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/solve.py +0 -0
  142. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/stabilization.py +0 -0
  143. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/step.py +0 -0
  144. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/transformation.py +0 -0
  145. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/transformation_child.py +0 -0
  146. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/type.py +0 -0
  147. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/unmapped_value_options.py +0 -0
  148. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/update_control.py +0 -0
  149. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/variable.py +0 -0
  150. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/write_csv_chart_files.py +0 -0
  151. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/write_ensight.py +0 -0
  152. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_aerodamping_data_transfers.py +0 -0
  153. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_ordered_data_transfers.py +0 -0
  154. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_thermal_data_transfers.py +0 -0
  155. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/automatic_alignment_options.py +0 -0
  156. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_add_data_transfer_group_commands.py +0 -0
  157. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_mode_shape_variables.py +0 -0
  158. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_thermal_data_transfer_options.py +0 -0
  159. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_transformation.py +0 -0
  160. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/live_visualization.py +0 -0
  161. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/live_visualization_child.py +0 -0
  162. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/parameter.py +0 -0
  163. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/parameter_child.py +0 -0
  164. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/LICENSE +0 -0
  165. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/WHEEL +0 -0
@@ -1,7 +1,97 @@
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
1
+ ansys/systemcoupling/core/__init__.py,sha256=9dEVvrIvzyJHAcAaft5DVJH8PZo6MJdD87dSqSI2SZ8,5836
2
+ ansys/systemcoupling/core/_version.py,sha256=WDT4Te1BIWgZU3Gt3WrwVwiGFs4nolWZXbwX-Ubj_r4,1579
3
+ ansys/systemcoupling/core/session.py,sha256=_5jlfRvDa0itwM4ymNRrI-QqShaVcPruCAe2aI2rpzM,8450
4
+ ansys/systemcoupling/core/syc_version.py,sha256=WMP3A8aKHC7lF59ydsx8poz06B3XZWomCS47EPDFcF4,3783
5
+ ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
6
+ ansys/systemcoupling/core/adaptor/api_23_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
7
+ ansys/systemcoupling/core/adaptor/api_23_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
8
+ ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
9
+ ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer.py,sha256=j0BNIn4vkNyU3g92Wlu_t24uZUaGVIFo2zjZAwDlPzc,8249
10
+ ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer_by_display_names.py,sha256=TVDOqTTifKrHFMyBKx0VMVl2m3ZmX8NvaMssLhRjHQ0,8052
11
+ ansys/systemcoupling/core/adaptor/api_23_1/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
12
+ ansys/systemcoupling/core/adaptor/api_23_1/add_interface.py,sha256=r0NSTZYjqcLGGgOx7TVX9mzPCi1c_BytI5JVoNmF40Y,2163
13
+ ansys/systemcoupling/core/adaptor/api_23_1/add_interface_by_display_names.py,sha256=nXvfpHXvM0kxza-PuhZi3Gmy4YYoUIWYo5qPPyPkcBU,2212
14
+ ansys/systemcoupling/core/adaptor/api_23_1/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
15
+ ansys/systemcoupling/core/adaptor/api_23_1/add_participant.py,sha256=f1t4TCJdtpnsiUTrqv9s_i_CU2xWbli6xhML5_N3cqU,5511
16
+ ansys/systemcoupling/core/adaptor/api_23_1/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
17
+ ansys/systemcoupling/core/adaptor/api_23_1/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
18
+ ansys/systemcoupling/core/adaptor/api_23_1/analysis_control.py,sha256=LWBsJ5LsTMLKwg7QnngPfjOxIiNKYGQpulvUJ_xqXAs,9171
19
+ ansys/systemcoupling/core/adaptor/api_23_1/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
20
+ ansys/systemcoupling/core/adaptor/api_23_1/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
21
+ ansys/systemcoupling/core/adaptor/api_23_1/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
22
+ ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
23
+ ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
24
+ ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py,sha256=r0XDGqjIcyGmckx4vCDibcAL-0cWjh0mXn6Nuw5WatE,980
25
+ ansys/systemcoupling/core/adaptor/api_23_1/case_root.py,sha256=nEr0h5tWxvtFwgrmQuBp_axUWpilMiKoHs7QZE2Cfd4,1385
26
+ ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
27
+ ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
28
+ ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
29
+ ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
30
+ ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py,sha256=9FeMDB4YWaRIFJ2yDJ3jlHISQ5u6Ti-bzhcrGQszxQY,5540
31
+ ansys/systemcoupling/core/adaptor/api_23_1/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
32
+ ansys/systemcoupling/core/adaptor/api_23_1/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
33
+ ansys/systemcoupling/core/adaptor/api_23_1/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
34
+ ansys/systemcoupling/core/adaptor/api_23_1/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
35
+ ansys/systemcoupling/core/adaptor/api_23_1/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
36
+ ansys/systemcoupling/core/adaptor/api_23_1/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
37
+ ansys/systemcoupling/core/adaptor/api_23_1/execution_control.py,sha256=pMCThGnb3_s0_EUZVEu2ZA0U80LuyPSYKBcrxALWjRg,6688
38
+ ansys/systemcoupling/core/adaptor/api_23_1/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
39
+ ansys/systemcoupling/core/adaptor/api_23_1/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
40
+ ansys/systemcoupling/core/adaptor/api_23_1/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
41
+ ansys/systemcoupling/core/adaptor/api_23_1/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
42
+ ansys/systemcoupling/core/adaptor/api_23_1/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
43
+ ansys/systemcoupling/core/adaptor/api_23_1/fluent_input.py,sha256=xi1Pf2L_0CFoAzYpcSOzb1Nm4hVfc6hGnyNyEeSRxNw,1879
44
+ ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
45
+ ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py,sha256=cW9mtskOzA7E_UEHFoSfo9wv4DsuA0A5yar84SraAGY,3845
46
+ ansys/systemcoupling/core/adaptor/api_23_1/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
47
+ ansys/systemcoupling/core/adaptor/api_23_1/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
48
+ ansys/systemcoupling/core/adaptor/api_23_1/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
49
+ ansys/systemcoupling/core/adaptor/api_23_1/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
50
+ ansys/systemcoupling/core/adaptor/api_23_1/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
51
+ ansys/systemcoupling/core/adaptor/api_23_1/get_snapshots.py,sha256=-Y2prBF2RflYTCLnX6G4tYSwRHC0bEOPFtRVAZTqswE,277
52
+ ansys/systemcoupling/core/adaptor/api_23_1/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
53
+ ansys/systemcoupling/core/adaptor/api_23_1/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
54
+ ansys/systemcoupling/core/adaptor/api_23_1/has_input_file_changed.py,sha256=9VkMe3m9sKHw5hfM6jrI2Yg0ZSexlGlestbmF5Sq9Yg,903
55
+ ansys/systemcoupling/core/adaptor/api_23_1/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
56
+ ansys/systemcoupling/core/adaptor/api_23_1/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
57
+ ansys/systemcoupling/core/adaptor/api_23_1/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
58
+ ansys/systemcoupling/core/adaptor/api_23_1/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
59
+ ansys/systemcoupling/core/adaptor/api_23_1/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
60
+ ansys/systemcoupling/core/adaptor/api_23_1/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
61
+ ansys/systemcoupling/core/adaptor/api_23_1/mapping_control.py,sha256=4OCRfihifzdQCfCLGgUuZxGA1KdRZr63CPmyCqInaQs,8521
62
+ ansys/systemcoupling/core/adaptor/api_23_1/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
63
+ ansys/systemcoupling/core/adaptor/api_23_1/open_results_in_ensight.py,sha256=-6oH21MgMzld_mZfjMje8MhwX7gCGK4oNEC0l-WT0Fg,1063
64
+ ansys/systemcoupling/core/adaptor/api_23_1/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
65
+ ansys/systemcoupling/core/adaptor/api_23_1/output_control.py,sha256=6QnYonN1l5Xfw62_BA4cJN0RP67DDe-M38wKU2DJGO4,4386
66
+ ansys/systemcoupling/core/adaptor/api_23_1/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
67
+ ansys/systemcoupling/core/adaptor/api_23_1/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
68
+ ansys/systemcoupling/core/adaptor/api_23_1/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
69
+ ansys/systemcoupling/core/adaptor/api_23_1/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
70
+ ansys/systemcoupling/core/adaptor/api_23_1/region_child.py,sha256=Uq3mzyFdTMIuc8d1Qjastq_tWLQE5hJouoWqE3Kw6G8,2238
71
+ ansys/systemcoupling/core/adaptor/api_23_1/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
72
+ ansys/systemcoupling/core/adaptor/api_23_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
73
+ ansys/systemcoupling/core/adaptor/api_23_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
74
+ ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
75
+ ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py,sha256=Db4QxXFu0vuOpDbHiSV0n38OUGYP3sXb-sBz93Oi5Ac,6426
76
+ ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
77
+ ansys/systemcoupling/core/adaptor/api_23_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
78
+ ansys/systemcoupling/core/adaptor/api_23_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
79
+ ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
80
+ ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py,sha256=ubF0xHqTGcKsmh4fTjL3DXZ6s6T0ud7Cx9FsvQuZBKU,2730
81
+ ansys/systemcoupling/core/adaptor/api_23_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
82
+ ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
83
+ ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
84
+ ansys/systemcoupling/core/adaptor/api_23_1/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
85
+ ansys/systemcoupling/core/adaptor/api_23_1/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
86
+ ansys/systemcoupling/core/adaptor/api_23_1/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
87
+ ansys/systemcoupling/core/adaptor/api_23_1/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
88
+ ansys/systemcoupling/core/adaptor/api_23_1/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
89
+ ansys/systemcoupling/core/adaptor/api_23_1/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
90
+ ansys/systemcoupling/core/adaptor/api_23_1/update_participant.py,sha256=w_WOaasUaU9B1nDyxcTWw45Mi_3Eof5_3zeOElkkxbk,2211
91
+ ansys/systemcoupling/core/adaptor/api_23_1/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
92
+ ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py,sha256=f_YqcdGrdwa8_b_Hh-Iq6WpehdHsCH1Oh-c66BMMHmI,6137
93
+ ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
94
+ ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
5
95
  ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
6
96
  ansys/systemcoupling/core/adaptor/api_23_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
7
97
  ansys/systemcoupling/core/adaptor/api_23_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
@@ -100,35 +190,40 @@ ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py,sha256=_Wbmc-g3Fy
100
190
  ansys/systemcoupling/core/adaptor/api_24_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
101
191
  ansys/systemcoupling/core/adaptor/api_24_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
102
192
  ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
193
+ ansys/systemcoupling/core/adaptor/api_24_1/add_aerodamping_data_transfers.py,sha256=bEa1I3IUBpJvta4I7OrmuOOy7eAXIGx7Zd5ZxJsnTO8,1113
103
194
  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=TVDOqTTifKrHFMyBKx0VMVl2m3ZmX8NvaMssLhRjHQ0,8052
195
+ ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
105
196
  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=r0NSTZYjqcLGGgOx7TVX9mzPCi1c_BytI5JVoNmF40Y,2163
107
- ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py,sha256=nXvfpHXvM0kxza-PuhZi3Gmy4YYoUIWYo5qPPyPkcBU,2212
197
+ ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py,sha256=CSKP2QOIwQsYtVUKJAbg0iwFOIcwV-u89LQQfEcwRI8,694
198
+ ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
199
+ ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
108
200
  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=f1t4TCJdtpnsiUTrqv9s_i_CU2xWbli6xhML5_N3cqU,5511
201
+ ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
202
+ ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py,sha256=m-xjBf1DFP4H4SxyW67sgVoWtoOqSKXh7HBpurl-IJY,5361
110
203
  ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
204
+ ansys/systemcoupling/core/adaptor/api_24_1/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
111
205
  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=LWBsJ5LsTMLKwg7QnngPfjOxIiNKYGQpulvUJ_xqXAs,9171
206
+ ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py,sha256=VM5rSA4x3dtje-ah5AIA3on6ZPcRo3y9nYie4L4Q8QE,10857
113
207
  ansys/systemcoupling/core/adaptor/api_24_1/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
114
208
  ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
115
209
  ansys/systemcoupling/core/adaptor/api_24_1/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
116
210
  ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
211
+ ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
117
212
  ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
118
- ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py,sha256=r0XDGqjIcyGmckx4vCDibcAL-0cWjh0mXn6Nuw5WatE,980
119
- ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=nEr0h5tWxvtFwgrmQuBp_axUWpilMiKoHs7QZE2Cfd4,1385
213
+ ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
214
+ ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=RxLWjVHDa8HR2usbsvTKD4Y2FBxHnhfDv4hm6SsrEr4,1214
120
215
  ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
121
216
  ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
122
217
  ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
123
218
  ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
124
- ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py,sha256=9FeMDB4YWaRIFJ2yDJ3jlHISQ5u6Ti-bzhcrGQszxQY,5540
219
+ ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py,sha256=TYeFbM89ahXEQq7HpRhF-pEtZJqFDmet6EEdOFXe6_4,8720
125
220
  ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
126
221
  ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
127
222
  ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
128
223
  ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
129
224
  ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
130
225
  ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
131
- ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py,sha256=pMCThGnb3_s0_EUZVEu2ZA0U80LuyPSYKBcrxALWjRg,6688
226
+ ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py,sha256=Wrp93NRXbxHdLqTFMBcWshGU1HH4EX_7zfE1kYJ9L6s,7049
132
227
  ansys/systemcoupling/core/adaptor/api_24_1/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
133
228
  ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
134
229
  ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
@@ -136,191 +231,97 @@ ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py,sha256=W
136
231
  ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
137
232
  ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py,sha256=xi1Pf2L_0CFoAzYpcSOzb1Nm4hVfc6hGnyNyEeSRxNw,1879
138
233
  ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
139
- ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py,sha256=cW9mtskOzA7E_UEHFoSfo9wv4DsuA0A5yar84SraAGY,3845
234
+ ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
140
235
  ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
236
+ ansys/systemcoupling/core/adaptor/api_24_1/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
141
237
  ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
142
238
  ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
239
+ ansys/systemcoupling/core/adaptor/api_24_1/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
143
240
  ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
144
241
  ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
145
- ansys/systemcoupling/core/adaptor/api_24_1/get_snapshots.py,sha256=-Y2prBF2RflYTCLnX6G4tYSwRHC0bEOPFtRVAZTqswE,277
146
242
  ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
243
+ ansys/systemcoupling/core/adaptor/api_24_1/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
244
+ ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py,sha256=IKp2KNsuyN1zmbpn2BdPY8l7C6Vz4lQzof2dNiQB1a4,999
147
245
  ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
148
- ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py,sha256=9VkMe3m9sKHw5hfM6jrI2Yg0ZSexlGlestbmF5Sq9Yg,903
246
+ ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
149
247
  ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
150
248
  ansys/systemcoupling/core/adaptor/api_24_1/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
151
249
  ansys/systemcoupling/core/adaptor/api_24_1/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
152
250
  ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
153
251
  ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
154
252
  ansys/systemcoupling/core/adaptor/api_24_1/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
155
- ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py,sha256=4OCRfihifzdQCfCLGgUuZxGA1KdRZr63CPmyCqInaQs,8521
253
+ ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
254
+ ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py,sha256=Vl5KOV8FhA0hnaF_LkULVw2UWZyBVDTHHNHSso7YEJ0,2250
255
+ ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
156
256
  ansys/systemcoupling/core/adaptor/api_24_1/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
157
- ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py,sha256=-6oH21MgMzld_mZfjMje8MhwX7gCGK4oNEC0l-WT0Fg,1063
257
+ ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
158
258
  ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
159
- ansys/systemcoupling/core/adaptor/api_24_1/output_control.py,sha256=6QnYonN1l5Xfw62_BA4cJN0RP67DDe-M38wKU2DJGO4,4386
259
+ ansys/systemcoupling/core/adaptor/api_24_1/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
260
+ ansys/systemcoupling/core/adaptor/api_24_1/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
261
+ ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py,sha256=cbWCTWoLtidkiu1YasufFmfmbx6iHgCXFGC5gUeZtLo,1686
160
262
  ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
263
+ ansys/systemcoupling/core/adaptor/api_24_1/record_interactions.py,sha256=1Nba_k0v9q4VLJ8BEhalSvznOxBHpv-u3TJDSKGrYYg,1091
161
264
  ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
162
265
  ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
163
266
  ansys/systemcoupling/core/adaptor/api_24_1/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
164
- ansys/systemcoupling/core/adaptor/api_24_1/region_child.py,sha256=Uq3mzyFdTMIuc8d1Qjastq_tWLQE5hJouoWqE3Kw6G8,2238
267
+ ansys/systemcoupling/core/adaptor/api_24_1/region_child.py,sha256=AJlJrD-MKs0hOyXVPo7AT9E55HvBbCUJrkIQ5MOh3_Q,2252
165
268
  ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
166
269
  ansys/systemcoupling/core/adaptor/api_24_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
167
270
  ansys/systemcoupling/core/adaptor/api_24_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
168
271
  ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
169
- ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=Db4QxXFu0vuOpDbHiSV0n38OUGYP3sXb-sBz93Oi5Ac,6426
272
+ ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=TdQViEYiZf3QbkuoGYaUIUftBr7da1zA9CKun4i2f-E,8420
170
273
  ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
171
274
  ansys/systemcoupling/core/adaptor/api_24_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
172
275
  ansys/systemcoupling/core/adaptor/api_24_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
173
- ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
174
- ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=ubF0xHqTGcKsmh4fTjL3DXZ6s6T0ud7Cx9FsvQuZBKU,2730
276
+ ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py,sha256=PJSTDi5fXgXl2npmrdzMBKq_BBtAxCbylRD7If9oF8E,4048
277
+ ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=SLAV0yWaKRVX9Q4dvk05-jHpWjgy0NmAylKSmRmXslE,2940
175
278
  ansys/systemcoupling/core/adaptor/api_24_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
176
279
  ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
177
- ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
280
+ ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
178
281
  ansys/systemcoupling/core/adaptor/api_24_1/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
179
282
  ansys/systemcoupling/core/adaptor/api_24_1/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
180
283
  ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
181
284
  ansys/systemcoupling/core/adaptor/api_24_1/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
182
285
  ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
183
286
  ansys/systemcoupling/core/adaptor/api_24_1/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
184
- ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py,sha256=w_WOaasUaU9B1nDyxcTWw45Mi_3Eof5_3zeOElkkxbk,2211
287
+ ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
185
288
  ansys/systemcoupling/core/adaptor/api_24_1/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
186
- ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=f_YqcdGrdwa8_b_Hh-Iq6WpehdHsCH1Oh-c66BMMHmI,6137
289
+ ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
187
290
  ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
188
291
  ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
189
- ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
190
- ansys/systemcoupling/core/adaptor/api_24_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
191
- ansys/systemcoupling/core/adaptor/api_24_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
192
- ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
193
- ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py,sha256=bEa1I3IUBpJvta4I7OrmuOOy7eAXIGx7Zd5ZxJsnTO8,1113
194
- ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py,sha256=j0BNIn4vkNyU3g92Wlu_t24uZUaGVIFo2zjZAwDlPzc,8249
195
- ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
196
- ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
197
- ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
198
- ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
199
- ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
200
- ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
201
- ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
202
- ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py,sha256=m-xjBf1DFP4H4SxyW67sgVoWtoOqSKXh7HBpurl-IJY,5361
203
- ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
204
- ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
205
- ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
206
- ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py,sha256=VM5rSA4x3dtje-ah5AIA3on6ZPcRo3y9nYie4L4Q8QE,10857
207
- ansys/systemcoupling/core/adaptor/api_24_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
208
- ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
209
- ansys/systemcoupling/core/adaptor/api_24_2/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
210
- ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
211
- ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
212
- ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
213
- ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
214
- ansys/systemcoupling/core/adaptor/api_24_2/case_root.py,sha256=RxLWjVHDa8HR2usbsvTKD4Y2FBxHnhfDv4hm6SsrEr4,1214
215
- ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
216
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
217
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
218
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
219
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py,sha256=Vn-asbnFLp7p8E0V-VBOkRJH8n4kdoMUQ5JFTFhqrQw,9175
220
- ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
221
- ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
222
- ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
223
- ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
224
- ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
225
- ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
226
- ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py,sha256=obzqfFP7cOpJ4qYqOmm70xHCydd3mt___ykP_XlLIIE,7915
227
- ansys/systemcoupling/core/adaptor/api_24_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
228
- ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
229
- ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
230
- ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
231
- ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
232
- ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
233
- ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
234
- ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
235
- ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
236
- ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
237
- ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
238
- ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
239
- ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
240
- ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
241
- ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
242
- ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
243
- ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
244
- ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py,sha256=IKp2KNsuyN1zmbpn2BdPY8l7C6Vz4lQzof2dNiQB1a4,999
245
- ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
246
- ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
247
- ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
248
- ansys/systemcoupling/core/adaptor/api_24_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
249
- ansys/systemcoupling/core/adaptor/api_24_2/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
250
- ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
251
- ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
252
- ansys/systemcoupling/core/adaptor/api_24_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
253
- ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
254
- ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py,sha256=Vl5KOV8FhA0hnaF_LkULVw2UWZyBVDTHHNHSso7YEJ0,2250
255
- ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
256
- ansys/systemcoupling/core/adaptor/api_24_2/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
257
- ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
258
- ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
259
- ansys/systemcoupling/core/adaptor/api_24_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
260
- ansys/systemcoupling/core/adaptor/api_24_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
261
- ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py,sha256=cbWCTWoLtidkiu1YasufFmfmbx6iHgCXFGC5gUeZtLo,1686
262
- ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
263
- ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
264
- ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
265
- ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
266
- ansys/systemcoupling/core/adaptor/api_24_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
267
- ansys/systemcoupling/core/adaptor/api_24_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
268
- ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
269
- ansys/systemcoupling/core/adaptor/api_24_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
270
- ansys/systemcoupling/core/adaptor/api_24_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
271
- ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
272
- ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py,sha256=InlkdsYRCk4rRCCK3SgM7MATe8xQEwHJ2MUFrmELymk,8420
273
- ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
274
- ansys/systemcoupling/core/adaptor/api_24_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
275
- ansys/systemcoupling/core/adaptor/api_24_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
276
- ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py,sha256=PJSTDi5fXgXl2npmrdzMBKq_BBtAxCbylRD7If9oF8E,4048
277
- ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py,sha256=SLAV0yWaKRVX9Q4dvk05-jHpWjgy0NmAylKSmRmXslE,2940
278
- ansys/systemcoupling/core/adaptor/api_24_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
279
- ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
280
- ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
281
- ansys/systemcoupling/core/adaptor/api_24_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
282
- ansys/systemcoupling/core/adaptor/api_24_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
283
- ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
284
- ansys/systemcoupling/core/adaptor/api_24_2/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
285
- ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
286
- ansys/systemcoupling/core/adaptor/api_24_2/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
287
- ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
288
- ansys/systemcoupling/core/adaptor/api_24_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
289
- ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
290
- ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
291
- ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
292
- ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=5gn3lgjFtjPt4QyTZiuc2xuvroPcPKSzlwAqbecT8GQ,3056
293
- ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=RnQdMKSx_6IQKeGjwX6Y-mwud0xaHm3XdYgZAJ4nApw,1281
294
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=UHLmqD1uxN2N6EXMmgvgsPVbm14EXgb-ff-tbS1FGN4,10755
295
- ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=eTQjPomzEvcC-_JS8C-hmqtJsWQPzUAowku-ADNTv6o,11675
296
- ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=ged-KTYEgmeW_HHf9gmC3jfMdIXXvn_FETXDkK-Qexc,13773
297
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=EP0BFlVQJjoP8KUFc9gOm9ehuvc8dh_YneyAkcu-foQ,3630
298
- ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=tQMxcsAmwTw-5gIcJEZ9o04Nrwaxpf_gcTcvL5bSXS8,1127
299
- ansys/systemcoupling/core/adaptor/impl/types.py,sha256=ihLF5riEj0GoBroXvLQtopjAWtJcMIbBIrUsV56Se7c,23975
300
- ansys/systemcoupling/core/client/grpc_client.py,sha256=yWGnBiheXEaZn2Fx-Q95MZYEutj3tBCIdNEjT0LVWhw,10124
301
- ansys/systemcoupling/core/client/syc_container.py,sha256=GiwQrnuc41_7DV37flpfeF1mBdlFLGFq9mq1mq7RT7E,1598
302
- ansys/systemcoupling/core/client/syc_process.py,sha256=hsGkkc55sc-6UI1qk594QbMrqlSsXQxiyZ3ImQLVbyQ,4481
303
- ansys/systemcoupling/core/client/variant.py,sha256=w5geZ_ft1fNcH5DYNFaiszTTej9BAPSy501aW_IOrF4,1910
304
- ansys/systemcoupling/core/client/services/command_query.py,sha256=Wk9HcTrXhPcFt1ed9G5jBoG0dOzDZPfyYr3Uh7KUfXg,1102
305
- ansys/systemcoupling/core/client/services/output_stream.py,sha256=gMDKB9ynnKxseH6MTAMxNVWV3ZdcXEMrfvlueqqPkXQ,994
306
- ansys/systemcoupling/core/client/services/process.py,sha256=8speYQLviJOnCMX43bsJS5Z7p0cKH1HP82gyKEn_10o,529
307
- ansys/systemcoupling/core/client/services/solution.py,sha256=LMuOnsTPKi8AulEqYi6zqvSk5BDrvbqQHZyksH7MNPU,1364
308
- ansys/systemcoupling/core/examples/__init__.py,sha256=Gyi4b_pnO-ukbWxvYsJaQNc3tlDGdRdpEsMBv4Inj3Q,69
309
- ansys/systemcoupling/core/examples/downloads.py,sha256=tH-vafQ0nZ25ZkfsyBMFjw6ED8j0Ih20Qp_18Gctm18,2946
310
- ansys/systemcoupling/core/native_api/__init__.py,sha256=CqIdFznMp23ql_2pMEFzYOnzyR3-KmgUZg-KQxMEPMc,34
311
- ansys/systemcoupling/core/native_api/command_metadata.py,sha256=7Tkf0Gfe99yZEQCUE8w4XnNO5Zj0xD2g-7rX8pXWmQ4,579
312
- ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=AP1_vpc3FQdxPheQxipFc3xZhH97M030X0pt_xV6wWU,3682
313
- ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=2B0Ws6N5GIkV8Ca1nA-xPaec5Xpodc2E7vkG5eaDt60,307
314
- ansys/systemcoupling/core/native_api/native_api.py,sha256=JMEjTwmaUl4WOvFOIDR42I84Ky51vK6Bk9qO5CQaVkA,5962
315
- ansys/systemcoupling/core/native_api/object_path.py,sha256=GpkSKE7jXCWES-eCBFcy6ll1Vlu8wH2doxVfm2e49Tk,2999
316
- ansys/systemcoupling/core/participant/manager.py,sha256=9kveWpxcC_BS6w2Q79nV91q5nfRqbxMfn_8_-VuW0fQ,7685
317
- ansys/systemcoupling/core/participant/protocol.py,sha256=DgcDG3ln-JR3o3AWITb0j-HdslqRZ1REmS1GDQtF4r0,1273
318
- ansys/systemcoupling/core/util/logging.py,sha256=TKScyvcXIjHg-bNP2wN3of6LZtMN_D-7zgFh7jjj4I4,3886
319
- ansys/systemcoupling/core/util/name_util.py,sha256=Xbmjl_0vjADtcURNe2iR3H0h1rNaoBjRyD3T8YsQMQQ,316
320
- ansys/systemcoupling/core/util/pathstr.py,sha256=XhqkMpdpEQk6O2SFKYdLlKel52agsyWNCrdR6XpDph4,788
321
- ansys/systemcoupling/core/util/state_keys.py,sha256=ovYwJBRGGflDR9Ck3zfINOrlTEuPVOzTo6fTpYQVdLQ,3391
322
- ansys/systemcoupling/core/util/yaml_helper.py,sha256=Bpix9OS01GxqXAwKbXB4xG6y_2h1r3RqTB3jjIC9qd0,1828
323
- ansys_systemcoupling_core-0.3.1.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
324
- ansys_systemcoupling_core-0.3.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
325
- ansys_systemcoupling_core-0.3.1.dist-info/METADATA,sha256=6f4_Ua0HUoRPemjJcXlrzrCB4wY2y7oOndlh0DH50V0,10884
326
- ansys_systemcoupling_core-0.3.1.dist-info/RECORD,,
292
+ ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=3wSnWTUS3q4VdufmHZ7jxyVCZONITFtP_tUB-8NnQuU,4210
293
+ ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=CIq2J8h8Eapq_jrXpMMHAa9oqSSaNR5G7NAYZseVgJg,2489
294
+ ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=TZQ2goZrUdHK9MwR_nfrF54RlpOiIJa3ufcXVYhaE0o,12247
295
+ ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=d-NSP104VjR65qTiqp1rlST6VYJRUPf9YHcpR8ABssQ,12828
296
+ ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=9mNFxRrn_52Cn4bJWpyFQKUhliwSWBZbzY_Fj8s-TVo,14927
297
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=FHe3EI5dhgWlXvT8mhiORm2zC2nmPCvq4gIYC1GDRmk,4784
298
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=oksliTfRt5IINxzkUUwqsAGPqs3iplwMlp6Y8xOLz28,2281
299
+ ansys/systemcoupling/core/adaptor/impl/types.py,sha256=EzoB2mBUBSK1gJpK59-GAihi3GCkXgwqsQtdzsWIhps,25130
300
+ ansys/systemcoupling/core/client/grpc_client.py,sha256=c7P9oANHN_c-hNUBlHWjACoj5_UCk-yCsFNkjYHo6-A,11278
301
+ ansys/systemcoupling/core/client/syc_container.py,sha256=Dnv-NWGdX0KNUrAhqTpIoX3AaMv55eaYff9Op2ei-jg,2752
302
+ ansys/systemcoupling/core/client/syc_process.py,sha256=udVsRxD5QaaL1n7MPjmpIvybv5dlPmXiO2KCPRNnWGE,5635
303
+ ansys/systemcoupling/core/client/variant.py,sha256=di_eWRZnDQ69cknunYxRAOnbnwXnG6aZ_Se1VxOX7VQ,3064
304
+ ansys/systemcoupling/core/client/services/command_query.py,sha256=3qd0qTQDMxW5qz2DuQIC30RKEPIwe8JWxJwSaRd_X8E,2256
305
+ ansys/systemcoupling/core/client/services/output_stream.py,sha256=Tk2dzbqtY9zro-DQ_qRGqhaef1y0geBbXKxvKcTB_Ck,2148
306
+ ansys/systemcoupling/core/client/services/process.py,sha256=u_gSQ14w5KVKIb_APjba-FOxv4u27YYUCN43CXjl6cM,1683
307
+ ansys/systemcoupling/core/client/services/solution.py,sha256=W4QlrRIkt-YihpwZh2sIZWQOH2Eg2741F7s6kUKepGM,2518
308
+ ansys/systemcoupling/core/examples/__init__.py,sha256=ENNPCQaRxb-NZsFsj-_eaMkLmJmbiwe_IhD5xNaXQFc,1223
309
+ ansys/systemcoupling/core/examples/downloads.py,sha256=7ISdG09kjIiw9GaHDeLI__C6OwMvZ9wZbERsmhvEuYs,4101
310
+ ansys/systemcoupling/core/native_api/__init__.py,sha256=2ZbeOsasqkAfqneB_iavb-qotNw3jtUCXWQAuBVQCuE,1188
311
+ ansys/systemcoupling/core/native_api/command_metadata.py,sha256=hyjDSYNU77xsV7VB24wCa7SenS3PQ-FtYeuF7BzkmGQ,1734
312
+ ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=igFtxBTSh1VlN2Ni2ubzXHcV7Ca-DjjcCn9w5mqfJBk,4836
313
+ ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=ddyT0ea2GBAQHu99BJw9SA9wz8f9Q1j1bOt3KVJG0cE,1462
314
+ ansys/systemcoupling/core/native_api/native_api.py,sha256=3dP17JYzZa1PFP2jbCaEhzDi9B00ESlIcamxswRKcU0,7116
315
+ ansys/systemcoupling/core/native_api/object_path.py,sha256=DAULeS_asHMf1O3PiFnLLF_ZinTBakmrBQcfie34eKs,4153
316
+ ansys/systemcoupling/core/participant/manager.py,sha256=JlLGlLBtaP_4iwt0g27znqj1OBAn016ZxWATgNPBoE8,8839
317
+ ansys/systemcoupling/core/participant/mapdl.py,sha256=v9Ms6uVaPj1-AbZYsaAY9JR_WpkLD7xSOJ3kQRGgtT0,11166
318
+ ansys/systemcoupling/core/participant/protocol.py,sha256=BAcuagcLroZWAOwAsktQZ3Ga47-8OFTXVr84pDZmwcs,2427
319
+ ansys/systemcoupling/core/util/logging.py,sha256=0nGv41rqH6sJqwMyuyOqsW_Fd35eLKQFEYPOGKFNbKM,5040
320
+ ansys/systemcoupling/core/util/name_util.py,sha256=AqALTBRe9hjS0SqbKk2BnN09pCq0M1irhd9illTTuwk,1470
321
+ ansys/systemcoupling/core/util/pathstr.py,sha256=xfnBAee68WG1R8s2LkoO9fLYZsJ0Nrx84woVuQv9bVY,1941
322
+ ansys/systemcoupling/core/util/state_keys.py,sha256=52gk88CJw1K3YIC6hg7Jc6_C2_EznQjrB1FrpcjhI1M,4545
323
+ ansys/systemcoupling/core/util/yaml_helper.py,sha256=6j2VNGXSEiJ11GUsUn4Z3wbPB9Cw-5JBsb5gWHAVsYo,2982
324
+ ansys_systemcoupling_core-0.4.dev0.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
325
+ ansys_systemcoupling_core-0.4.dev0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
326
+ ansys_systemcoupling_core-0.4.dev0.dist-info/METADATA,sha256=B4OTrzJv5SkP5zKxG-YLydRzv2Kc8EmJOdKeVdGebCM,10887
327
+ ansys_systemcoupling_core-0.4.dev0.dist-info/RECORD,,