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.
- ansys/systemcoupling/core/__init__.py +11 -5
- ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +4 -2
- ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +4 -2
- ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +4 -2
- ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +80 -0
- ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/abort.py +39 -0
- ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +190 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +191 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +61 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +77 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +78 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +42 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +162 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +40 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +102 -0
- ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +283 -0
- ansys/systemcoupling/core/adaptor/api_24_2/apip.py +33 -0
- ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +44 -0
- ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +54 -0
- ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +40 -0
- ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +62 -0
- ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +18 -0
- ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +41 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +42 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +23 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +265 -0
- ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +187 -0
- ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +28 -0
- ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +42 -0
- ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +96 -0
- ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +246 -0
- ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +24 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +24 -0
- ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +77 -0
- ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +156 -0
- ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +41 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +30 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +31 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +25 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +52 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +143 -0
- ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +27 -0
- ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +23 -0
- ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +39 -0
- ansys/systemcoupling/core/adaptor/api_24_2/library.py +37 -0
- ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +100 -0
- ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +239 -0
- ansys/systemcoupling/core/adaptor/api_24_2/open.py +102 -0
- ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +56 -0
- ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +37 -0
- ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +134 -0
- ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +56 -0
- ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +138 -0
- ansys/systemcoupling/core/adaptor/api_24_2/properties.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_24_2/region.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +14 -0
- ansys/systemcoupling/core/adaptor/api_24_2/results.py +89 -0
- ansys/systemcoupling/core/adaptor/api_24_2/save.py +51 -0
- ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +54 -0
- ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +251 -0
- ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +25 -0
- ansys/systemcoupling/core/adaptor/api_24_2/side.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +56 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +115 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +122 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solve.py +30 -0
- ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +157 -0
- ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +47 -0
- ansys/systemcoupling/core/adaptor/api_24_2/step.py +57 -0
- ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +21 -0
- ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_24_2/type.py +38 -0
- ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +158 -0
- ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +61 -0
- ansys/systemcoupling/core/adaptor/api_24_2/variable.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +231 -0
- ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +21 -0
- ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +46 -0
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py +228 -27
- ansys/systemcoupling/core/adaptor/impl/static_info.py +17 -0
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +3 -0
- ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +4 -0
- ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
- ansys/systemcoupling/core/charts/chart_datatypes.py +169 -0
- ansys/systemcoupling/core/charts/csv_chartdata.py +299 -0
- ansys/systemcoupling/core/charts/live_csv_datasource.py +87 -0
- ansys/systemcoupling/core/charts/message_dispatcher.py +84 -0
- ansys/systemcoupling/core/charts/plot_functions.py +92 -0
- ansys/systemcoupling/core/charts/plotdefinition_manager.py +303 -0
- ansys/systemcoupling/core/charts/plotter.py +343 -0
- ansys/systemcoupling/core/client/grpc_client.py +6 -1
- ansys/systemcoupling/core/participant/manager.py +25 -9
- ansys/systemcoupling/core/participant/protocol.py +1 -0
- ansys/systemcoupling/core/session.py +4 -4
- ansys/systemcoupling/core/syc_version.py +1 -1
- ansys/systemcoupling/core/util/file_transfer.py +4 -0
- ansys/systemcoupling/core/util/logging.py +1 -1
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/METADATA +17 -16
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/RECORD +148 -26
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/WHEEL +0 -0
{ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/RECORD
RENAMED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
ansys/systemcoupling/core/__init__.py,sha256=
|
|
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=
|
|
4
|
-
ansys/systemcoupling/core/syc_version.py,sha256=
|
|
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=
|
|
26
|
-
ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py,sha256=
|
|
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=
|
|
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=
|
|
117
|
-
ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=
|
|
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=
|
|
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=
|
|
215
|
-
ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
297
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256
|
|
298
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=
|
|
299
|
-
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=
|
|
300
|
-
ansys/systemcoupling/core/
|
|
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=
|
|
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=
|
|
319
|
-
ansys/systemcoupling/core/util/file_transfer.py,sha256=
|
|
320
|
-
ansys/systemcoupling/core/util/logging.py,sha256=
|
|
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.
|
|
326
|
-
ansys_systemcoupling_core-0.
|
|
327
|
-
ansys_systemcoupling_core-0.
|
|
328
|
-
ansys_systemcoupling_core-0.
|
|
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,,
|
{ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|