ansys-systemcoupling-core 0.4.1__py3-none-any.whl → 0.6__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 (148) hide show
  1. ansys/systemcoupling/core/__init__.py +11 -5
  2. ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +13 -0
  3. ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +7 -1
  4. ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +4 -2
  5. ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +75 -0
  6. ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +7 -1
  7. ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +13 -0
  8. ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +7 -1
  9. ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +4 -2
  10. ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +75 -0
  11. ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +7 -1
  12. ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +13 -0
  13. ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +7 -1
  14. ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +4 -2
  15. ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +75 -0
  16. ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +7 -1
  17. ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +80 -0
  18. ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +13 -0
  19. ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +13 -0
  20. ansys/systemcoupling/core/adaptor/api_24_2/abort.py +39 -0
  21. ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +46 -0
  22. ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +43 -0
  23. ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +190 -0
  24. ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +191 -0
  25. ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +61 -0
  26. ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +43 -0
  27. ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +77 -0
  28. ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +78 -0
  29. ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +42 -0
  30. ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +32 -0
  31. ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +162 -0
  32. ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +40 -0
  33. ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +43 -0
  34. ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +102 -0
  35. ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +283 -0
  36. ansys/systemcoupling/core/adaptor/api_24_2/apip.py +33 -0
  37. ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +44 -0
  38. ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +20 -0
  39. ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +54 -0
  40. ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +46 -0
  41. ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +40 -0
  42. ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +46 -0
  43. ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +62 -0
  44. ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +18 -0
  45. ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +41 -0
  46. ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +20 -0
  47. ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +42 -0
  48. ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +23 -0
  49. ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +265 -0
  50. ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +29 -0
  51. ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +20 -0
  52. ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +187 -0
  53. ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +28 -0
  54. ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +42 -0
  55. ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +96 -0
  56. ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +246 -0
  57. ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +24 -0
  58. ansys/systemcoupling/core/adaptor/api_24_2/expression.py +20 -0
  59. ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +36 -0
  60. ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +20 -0
  61. ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +46 -0
  62. ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +24 -0
  63. ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +77 -0
  64. ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +20 -0
  65. ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +156 -0
  66. ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +41 -0
  67. ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +29 -0
  68. ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +30 -0
  69. ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +13 -0
  70. ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +29 -0
  71. ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +31 -0
  72. ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +25 -0
  73. ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +52 -0
  74. ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +13 -0
  75. ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +32 -0
  76. ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +43 -0
  77. ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +143 -0
  78. ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +36 -0
  79. ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +36 -0
  80. ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +27 -0
  81. ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +23 -0
  82. ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +62 -0
  83. ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +39 -0
  84. ansys/systemcoupling/core/adaptor/api_24_2/library.py +37 -0
  85. ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +20 -0
  86. ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +100 -0
  87. ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +239 -0
  88. ansys/systemcoupling/core/adaptor/api_24_2/open.py +102 -0
  89. ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +56 -0
  90. ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +37 -0
  91. ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +134 -0
  92. ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +20 -0
  93. ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +56 -0
  94. ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +138 -0
  95. ansys/systemcoupling/core/adaptor/api_24_2/properties.py +36 -0
  96. ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +46 -0
  97. ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +20 -0
  98. ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +71 -0
  99. ansys/systemcoupling/core/adaptor/api_24_2/region.py +20 -0
  100. ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +71 -0
  101. ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +14 -0
  102. ansys/systemcoupling/core/adaptor/api_24_2/results.py +89 -0
  103. ansys/systemcoupling/core/adaptor/api_24_2/save.py +51 -0
  104. ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +54 -0
  105. ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +251 -0
  106. ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +75 -0
  107. ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +25 -0
  108. ansys/systemcoupling/core/adaptor/api_24_2/side.py +20 -0
  109. ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +56 -0
  110. ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +115 -0
  111. ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +122 -0
  112. ansys/systemcoupling/core/adaptor/api_24_2/solve.py +30 -0
  113. ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +157 -0
  114. ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +47 -0
  115. ansys/systemcoupling/core/adaptor/api_24_2/step.py +57 -0
  116. ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +21 -0
  117. ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +62 -0
  118. ansys/systemcoupling/core/adaptor/api_24_2/type.py +38 -0
  119. ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +158 -0
  120. ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +43 -0
  121. ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +61 -0
  122. ansys/systemcoupling/core/adaptor/api_24_2/variable.py +20 -0
  123. ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +231 -0
  124. ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +21 -0
  125. ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +46 -0
  126. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +228 -27
  127. ansys/systemcoupling/core/adaptor/impl/static_info.py +17 -0
  128. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +3 -0
  129. ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +4 -0
  130. ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
  131. ansys/systemcoupling/core/charts/chart_datatypes.py +169 -0
  132. ansys/systemcoupling/core/charts/csv_chartdata.py +299 -0
  133. ansys/systemcoupling/core/charts/live_csv_datasource.py +87 -0
  134. ansys/systemcoupling/core/charts/message_dispatcher.py +84 -0
  135. ansys/systemcoupling/core/charts/plot_functions.py +92 -0
  136. ansys/systemcoupling/core/charts/plotdefinition_manager.py +303 -0
  137. ansys/systemcoupling/core/charts/plotter.py +343 -0
  138. ansys/systemcoupling/core/client/grpc_client.py +6 -1
  139. ansys/systemcoupling/core/participant/manager.py +25 -9
  140. ansys/systemcoupling/core/participant/protocol.py +1 -0
  141. ansys/systemcoupling/core/session.py +4 -4
  142. ansys/systemcoupling/core/syc_version.py +1 -1
  143. ansys/systemcoupling/core/util/file_transfer.py +4 -0
  144. ansys/systemcoupling/core/util/logging.py +1 -1
  145. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/METADATA +17 -16
  146. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/RECORD +148 -26
  147. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/LICENSE +0 -0
  148. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/WHEEL +0 -0
@@ -1,8 +1,9 @@
1
- ansys/systemcoupling/core/__init__.py,sha256=N54XV9a-muJTDnPrvlxXjp3rQD1KdwGt3QdtZIrUTAg,7031
1
+ ansys/systemcoupling/core/__init__.py,sha256=9dek5li8pDDRA5oBI3mPeOwu784_qzwzse3lTNLyUWU,7404
2
2
  ansys/systemcoupling/core/_version.py,sha256=WDT4Te1BIWgZU3Gt3WrwVwiGFs4nolWZXbwX-Ubj_r4,1579
3
- ansys/systemcoupling/core/session.py,sha256=Y2W5hUQ9A9POwXboLOc0VTCQx3JZqFGuQFHEiVEreQA,10219
4
- ansys/systemcoupling/core/syc_version.py,sha256=WMP3A8aKHC7lF59ydsx8poz06B3XZWomCS47EPDFcF4,3783
3
+ ansys/systemcoupling/core/session.py,sha256=PP3cmMqb0zgOJbtFIfESkTLFOFlLt29IArRhWG4V__k,10260
4
+ ansys/systemcoupling/core/syc_version.py,sha256=dn1BRe9hzGD2QAsuk6OLjxNcznJlpyiPIZh9Zjrwdqc,3783
5
5
  ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
6
+ ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
6
7
  ansys/systemcoupling/core/adaptor/api_23_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
7
8
  ansys/systemcoupling/core/adaptor/api_23_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
8
9
  ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
@@ -22,8 +23,8 @@ ansys/systemcoupling/core/adaptor/api_23_1/attribute.py,sha256=00Nmgao_xIWkCZWUj
22
23
  ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
23
24
  ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
24
25
  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
26
+ ansys/systemcoupling/core/adaptor/api_23_1/case_root.py,sha256=K6CMJqVqF60OkZYznFslB29Un6veJyVYsPdj_z_NU4M,1549
27
+ ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
27
28
  ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
28
29
  ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
29
30
  ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
@@ -73,11 +74,12 @@ ansys/systemcoupling/core/adaptor/api_23_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo
73
74
  ansys/systemcoupling/core/adaptor/api_23_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
74
75
  ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
75
76
  ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py,sha256=Db4QxXFu0vuOpDbHiSV0n38OUGYP3sXb-sBz93Oi5Ac,6426
77
+ ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
76
78
  ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
77
79
  ansys/systemcoupling/core/adaptor/api_23_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
78
80
  ansys/systemcoupling/core/adaptor/api_23_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
79
81
  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
82
+ ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py,sha256=oZt6GdSHiBN2cEJBKMg3rO1iWd0oHbX0pRS7S4umGPk,2877
81
83
  ansys/systemcoupling/core/adaptor/api_23_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
82
84
  ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
83
85
  ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
@@ -93,6 +95,7 @@ ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py,sha256=f_YqcdGrdwa8
93
95
  ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
94
96
  ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
95
97
  ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
98
+ ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
96
99
  ansys/systemcoupling/core/adaptor/api_23_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
97
100
  ansys/systemcoupling/core/adaptor/api_23_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
98
101
  ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
@@ -113,8 +116,8 @@ ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py,sha256=uMc8dFRJjwd
113
116
  ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
114
117
  ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
115
118
  ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
116
- ansys/systemcoupling/core/adaptor/api_23_2/case_root.py,sha256=nEr0h5tWxvtFwgrmQuBp_axUWpilMiKoHs7QZE2Cfd4,1385
117
- ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
119
+ ansys/systemcoupling/core/adaptor/api_23_2/case_root.py,sha256=K6CMJqVqF60OkZYznFslB29Un6veJyVYsPdj_z_NU4M,1549
120
+ ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
118
121
  ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
119
122
  ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
120
123
  ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
@@ -167,11 +170,12 @@ ansys/systemcoupling/core/adaptor/api_23_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo
167
170
  ansys/systemcoupling/core/adaptor/api_23_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
168
171
  ansys/systemcoupling/core/adaptor/api_23_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
169
172
  ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py,sha256=Wlh8E_AzzA0do5YVjeSIxfCiwyZLGbzyMSFRTFhND50,6426
173
+ ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
170
174
  ansys/systemcoupling/core/adaptor/api_23_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
171
175
  ansys/systemcoupling/core/adaptor/api_23_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
172
176
  ansys/systemcoupling/core/adaptor/api_23_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
173
177
  ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
174
- ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py,sha256=25pQ3GVDuAWm0DmdEynCMzHU8s7Qd4Jx71zQjbeXsD0,2947
178
+ ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py,sha256=RKjSL5tPPuXWwYi6yU7WUaJx7CWv9cFRN7vMhR_9QwQ,3094
175
179
  ansys/systemcoupling/core/adaptor/api_23_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
176
180
  ansys/systemcoupling/core/adaptor/api_23_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
177
181
  ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
@@ -187,6 +191,7 @@ ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py,sha256=czWKByOsUAFR
187
191
  ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
188
192
  ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
189
193
  ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
194
+ ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
190
195
  ansys/systemcoupling/core/adaptor/api_24_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
191
196
  ansys/systemcoupling/core/adaptor/api_24_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
192
197
  ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
@@ -211,8 +216,8 @@ ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py,sha256=uMc8dFRJjwd
211
216
  ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
212
217
  ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
213
218
  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
215
- ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
219
+ ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
220
+ ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
216
221
  ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
217
222
  ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
218
223
  ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
@@ -270,11 +275,12 @@ ansys/systemcoupling/core/adaptor/api_24_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo
270
275
  ansys/systemcoupling/core/adaptor/api_24_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
271
276
  ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
272
277
  ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=TdQViEYiZf3QbkuoGYaUIUftBr7da1zA9CKun4i2f-E,8420
278
+ ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
273
279
  ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
274
280
  ansys/systemcoupling/core/adaptor/api_24_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
275
281
  ansys/systemcoupling/core/adaptor/api_24_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
276
282
  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
283
+ ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=rrCc4DTnRWOHTavGeQOXjvQjSUztXpLLLiGRk2Q7KU8,3087
278
284
  ansys/systemcoupling/core/adaptor/api_24_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
279
285
  ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
280
286
  ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
@@ -289,15 +295,131 @@ ansys/systemcoupling/core/adaptor/api_24_1/variable.py,sha256=BJldfmMGuyO9riy6Lw
289
295
  ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
290
296
  ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
291
297
  ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
298
+ ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py,sha256=zbTC_i9XBHO7nMnw-Dqm83V_LbLJl7BlVYlzctZ8NOk,1374
299
+ ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
300
+ ansys/systemcoupling/core/adaptor/api_24_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
301
+ ansys/systemcoupling/core/adaptor/api_24_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
302
+ ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
303
+ ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py,sha256=bEa1I3IUBpJvta4I7OrmuOOy7eAXIGx7Zd5ZxJsnTO8,1113
304
+ ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py,sha256=9B5IeJo1xTJ74J5wBKwpTlUuiXNM2ylVk2usF-F-G3E,8251
305
+ ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
306
+ ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
307
+ ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
308
+ ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
309
+ ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
310
+ ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
311
+ ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
312
+ ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py,sha256=a9NN0u20-7FdxxpKhV9NW7MCdq9s6aTn5ERlyoqocvQ,6395
313
+ ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
314
+ ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
315
+ ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
316
+ ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py,sha256=VM5rSA4x3dtje-ah5AIA3on6ZPcRo3y9nYie4L4Q8QE,10857
317
+ ansys/systemcoupling/core/adaptor/api_24_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
318
+ ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
319
+ ansys/systemcoupling/core/adaptor/api_24_2/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
320
+ ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
321
+ ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
322
+ ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
323
+ ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
324
+ ansys/systemcoupling/core/adaptor/api_24_2/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
325
+ ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
326
+ ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py,sha256=70-dhniz9W3MoChR95iz1jFHl75w92DV-UXAzVl5YL4,1180
327
+ ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
328
+ ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
329
+ ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
330
+ ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py,sha256=WsQNIlUpf1e2AGwV_cpxZ2tK0ad1HcuxSGCL67j6K4w,8961
331
+ ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
332
+ ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
333
+ ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
334
+ ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
335
+ ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
336
+ ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
337
+ ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py,sha256=ycSdfbRGCFPqJnIhXDBUvsZ7RkF4GkxeEuI--8KPN6M,9047
338
+ ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py,sha256=lYYPEWRHb4ztgLKlm5iU9CoWR9js54PWoiuqgU-Zvz8,556
339
+ ansys/systemcoupling/core/adaptor/api_24_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
340
+ ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
341
+ ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
342
+ ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
343
+ ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
344
+ ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
345
+ ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
346
+ ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
347
+ ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
348
+ ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
349
+ ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
350
+ ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
351
+ ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
352
+ ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
353
+ ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
354
+ ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
355
+ ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py,sha256=Q87bRy0PDB7OaTMy5GOu-DUQ27IX-n62kZ6NnYIpR4E,304
356
+ ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
357
+ ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py,sha256=S4XWsDhtsDKs-nEJMEUgD4zxh76C4G_n3h2zfgSy9ds,1000
358
+ ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
359
+ ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
360
+ ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
361
+ ansys/systemcoupling/core/adaptor/api_24_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
362
+ ansys/systemcoupling/core/adaptor/api_24_2/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
363
+ ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
364
+ ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
365
+ ansys/systemcoupling/core/adaptor/api_24_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
366
+ ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
367
+ ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py,sha256=bRhRPpjgWIRgpLiAB3Rc6_LJnrD1WmsvURITDjtaADY,3258
368
+ ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
369
+ ansys/systemcoupling/core/adaptor/api_24_2/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
370
+ ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
371
+ ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
372
+ ansys/systemcoupling/core/adaptor/api_24_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
373
+ ansys/systemcoupling/core/adaptor/api_24_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
374
+ ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py,sha256=cbWCTWoLtidkiu1YasufFmfmbx6iHgCXFGC5gUeZtLo,1686
375
+ ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
376
+ ansys/systemcoupling/core/adaptor/api_24_2/properties.py,sha256=nhwhkbDvBsMkkBpSgd2_1kJPyPINA7YWJF-Yasu5Wp4,1036
377
+ ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
378
+ ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
379
+ ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
380
+ ansys/systemcoupling/core/adaptor/api_24_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
381
+ ansys/systemcoupling/core/adaptor/api_24_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
382
+ ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
383
+ ansys/systemcoupling/core/adaptor/api_24_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
384
+ ansys/systemcoupling/core/adaptor/api_24_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
385
+ ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
386
+ ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py,sha256=J5a2ZlaWi2HlhuIbI1lmmCA4gOOIIcEKfR6eZUEiJ0M,8734
387
+ ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
388
+ ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
389
+ ansys/systemcoupling/core/adaptor/api_24_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
390
+ ansys/systemcoupling/core/adaptor/api_24_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
391
+ ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py,sha256=PJSTDi5fXgXl2npmrdzMBKq_BBtAxCbylRD7If9oF8E,4048
392
+ ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py,sha256=ITuTVKGu1Use3jLPqtRyL1xw3Pb-_7JK8x4Cssg4c6o,3304
393
+ ansys/systemcoupling/core/adaptor/api_24_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
394
+ ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
395
+ ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
396
+ ansys/systemcoupling/core/adaptor/api_24_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
397
+ ansys/systemcoupling/core/adaptor/api_24_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
398
+ ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
399
+ ansys/systemcoupling/core/adaptor/api_24_2/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
400
+ ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
401
+ ansys/systemcoupling/core/adaptor/api_24_2/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
402
+ ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
403
+ ansys/systemcoupling/core/adaptor/api_24_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
404
+ ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
405
+ ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
406
+ ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
292
407
  ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=3wSnWTUS3q4VdufmHZ7jxyVCZONITFtP_tUB-8NnQuU,4210
293
408
  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
409
+ ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=kXjaL9Ik9fLCL6S6RY__Q024V_oB1tR31J-acVq1j6g,18990
295
410
  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=Of91BkNKaxRjl94-zb53Z5euuc9I1tguhzmifu1MHgY,14735
411
+ ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=5U1CYNASPl4zNGjIw3Slwkhq-8v7GVKrih0HO_bIjSk,15691
412
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=-jF5zSwwiyJXLxocWK01v5AYDDtLyZRiMPfcqeOvim8,4906
413
+ ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=oEEo1hyCtV-HFml7p0LuDKtmb918XmrBejkwx3Y_rkk,2361
414
+ ansys/systemcoupling/core/adaptor/impl/types.py,sha256=Q-19IykEuUYQA2yVx-wJkP2tO9Am1IWzg3pFquFgI1c,25132
415
+ ansys/systemcoupling/core/charts/chart_datatypes.py,sha256=rlN9_rOaUGMLjEuxaSqpIBWcht3cnBpxm2uNYghbJU4,6711
416
+ ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=kmoglFJmAkZE8o5iV9GJNbOyL9CMVeLNLOVxfyS0D1M,11043
417
+ ansys/systemcoupling/core/charts/live_csv_datasource.py,sha256=R8r1WGjKx0-VxwYq_MqnRQYEIqFeJTICOaDpd4QLMs0,3385
418
+ ansys/systemcoupling/core/charts/message_dispatcher.py,sha256=zuNY3NthWag1yf7Rkj9CapaSyi0Bd0WSx8aMU1NfNgQ,2940
419
+ ansys/systemcoupling/core/charts/plot_functions.py,sha256=Li5HYCWkRTAvFGqnI6p636qayTPqphHLOtWI861vtgA,3276
420
+ ansys/systemcoupling/core/charts/plotdefinition_manager.py,sha256=UFQjYei3gk3GYVUksSPYbtcxFbcfepZscGg55ok5OQg,12446
421
+ ansys/systemcoupling/core/charts/plotter.py,sha256=L_hIanq5sV6LVSu3dn3yjoeCPBpEccyxXk2fFCt85_s,11833
422
+ ansys/systemcoupling/core/client/grpc_client.py,sha256=KxVzj--kLOL6ij0YlgxG3t8YgvLK2sHqjeDJuQtbAtc,14933
301
423
  ansys/systemcoupling/core/client/syc_container.py,sha256=Dnv-NWGdX0KNUrAhqTpIoX3AaMv55eaYff9Op2ei-jg,2752
302
424
  ansys/systemcoupling/core/client/syc_process.py,sha256=udVsRxD5QaaL1n7MPjmpIvybv5dlPmXiO2KCPRNnWGE,5635
303
425
  ansys/systemcoupling/core/client/variant.py,sha256=di_eWRZnDQ69cknunYxRAOnbnwXnG6aZ_Se1VxOX7VQ,3064
@@ -313,16 +435,16 @@ ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=igFtxBTSh1VlN2
313
435
  ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=ddyT0ea2GBAQHu99BJw9SA9wz8f9Q1j1bOt3KVJG0cE,1462
314
436
  ansys/systemcoupling/core/native_api/native_api.py,sha256=3dP17JYzZa1PFP2jbCaEhzDi9B00ESlIcamxswRKcU0,7116
315
437
  ansys/systemcoupling/core/native_api/object_path.py,sha256=DAULeS_asHMf1O3PiFnLLF_ZinTBakmrBQcfie34eKs,4153
316
- ansys/systemcoupling/core/participant/manager.py,sha256=JlLGlLBtaP_4iwt0g27znqj1OBAn016ZxWATgNPBoE8,8839
438
+ ansys/systemcoupling/core/participant/manager.py,sha256=kJzfsTA1HquDQT-j3ib9OQMD0QRpvWGpnPMYDDvnYZU,9685
317
439
  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/file_transfer.py,sha256=kzn5dnEhmPmahwbooeTxf5Zv-CaTORlv53fOfLJwits,5186
320
- ansys/systemcoupling/core/util/logging.py,sha256=0nGv41rqH6sJqwMyuyOqsW_Fd35eLKQFEYPOGKFNbKM,5040
440
+ ansys/systemcoupling/core/participant/protocol.py,sha256=Kc90wvz-ZDJfhvL-SrlFymdb_mn2oqVucaRZW7BfFWM,2479
441
+ ansys/systemcoupling/core/util/file_transfer.py,sha256=frtzdCmIQFmhRbhrmnjdki1r4rDbmz1wyqcsG5DMI84,5370
442
+ ansys/systemcoupling/core/util/logging.py,sha256=dFj0migeyUGke7sYL-hN80amMnUvuIO1kkCsOH_8ipc,5059
321
443
  ansys/systemcoupling/core/util/name_util.py,sha256=AqALTBRe9hjS0SqbKk2BnN09pCq0M1irhd9illTTuwk,1470
322
444
  ansys/systemcoupling/core/util/pathstr.py,sha256=xfnBAee68WG1R8s2LkoO9fLYZsJ0Nrx84woVuQv9bVY,1941
323
445
  ansys/systemcoupling/core/util/state_keys.py,sha256=52gk88CJw1K3YIC6hg7Jc6_C2_EznQjrB1FrpcjhI1M,4545
324
446
  ansys/systemcoupling/core/util/yaml_helper.py,sha256=6j2VNGXSEiJ11GUsUn4Z3wbPB9Cw-5JBsb5gWHAVsYo,2982
325
- ansys_systemcoupling_core-0.4.1.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
326
- ansys_systemcoupling_core-0.4.1.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
327
- ansys_systemcoupling_core-0.4.1.dist-info/METADATA,sha256=pH0_fwkR1n6ODo_NAqiaqhPtV15AXPTp41qksHDwu6U,10946
328
- ansys_systemcoupling_core-0.4.1.dist-info/RECORD,,
447
+ ansys_systemcoupling_core-0.6.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
448
+ ansys_systemcoupling_core-0.6.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
449
+ ansys_systemcoupling_core-0.6.dist-info/METADATA,sha256=UcFAGT-Fq5zROeIEalN-rHZJeAh0vIrb6tEfuF1ruMo,10977
450
+ ansys_systemcoupling_core-0.6.dist-info/RECORD,,