ansys-systemcoupling-core 0.3.0__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.
- ansys/systemcoupling/core/__init__.py +23 -1
- ansys/systemcoupling/core/_version.py +22 -0
- ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py +70 -0
- ansys/systemcoupling/core/adaptor/api_23_1/_solve.py +13 -0
- ansys/systemcoupling/core/adaptor/api_23_1/abort.py +39 -0
- ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py +46 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer.py +190 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer_by_display_names.py +188 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_expression_function.py +61 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_interface.py +75 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_interface_by_display_names.py +75 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_named_expression.py +42 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_participant.py +160 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_reference_frame.py +40 -0
- ansys/systemcoupling/core/adaptor/api_23_1/add_transformation.py +102 -0
- ansys/systemcoupling/core/adaptor/api_23_1/analysis_control.py +241 -0
- ansys/systemcoupling/core/adaptor/api_23_1/apip.py +33 -0
- ansys/systemcoupling/core/adaptor/api_23_1/ascii_output.py +44 -0
- ansys/systemcoupling/core/adaptor/api_23_1/attribute.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py +54 -0
- ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py +40 -0
- ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py +36 -0
- ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +62 -0
- ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +16 -0
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py +42 -0
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py +23 -0
- ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py +173 -0
- ansys/systemcoupling/core/adaptor/api_23_1/create_restart_point.py +29 -0
- ansys/systemcoupling/core/adaptor/api_23_1/data_transfer.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/data_transfer_child.py +187 -0
- ansys/systemcoupling/core/adaptor/api_23_1/delete_snapshot.py +28 -0
- ansys/systemcoupling/core/adaptor/api_23_1/delete_transformation.py +42 -0
- ansys/systemcoupling/core/adaptor/api_23_1/dimensionality.py +96 -0
- ansys/systemcoupling/core/adaptor/api_23_1/execution_control.py +186 -0
- ansys/systemcoupling/core/adaptor/api_23_1/expression.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/expression_child.py +36 -0
- ansys/systemcoupling/core/adaptor/api_23_1/expression_function.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/expression_function_child.py +46 -0
- ansys/systemcoupling/core/adaptor/api_23_1/external_data_file.py +24 -0
- ansys/systemcoupling/core/adaptor/api_23_1/fluent_input.py +67 -0
- ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py +126 -0
- ansys/systemcoupling/core/adaptor/api_23_1/generate_input_file.py +41 -0
- ansys/systemcoupling/core/adaptor/api_23_1/get_execution_command.py +30 -0
- ansys/systemcoupling/core/adaptor/api_23_1/get_machines.py +13 -0
- ansys/systemcoupling/core/adaptor/api_23_1/get_region_names_for_participant.py +31 -0
- ansys/systemcoupling/core/adaptor/api_23_1/get_setup_summary.py +25 -0
- ansys/systemcoupling/core/adaptor/api_23_1/get_status_messages.py +52 -0
- ansys/systemcoupling/core/adaptor/api_23_1/global_stabilization.py +143 -0
- ansys/systemcoupling/core/adaptor/api_23_1/has_input_file_changed.py +36 -0
- ansys/systemcoupling/core/adaptor/api_23_1/import_system_coupling_input_file.py +36 -0
- ansys/systemcoupling/core/adaptor/api_23_1/initialize.py +27 -0
- ansys/systemcoupling/core/adaptor/api_23_1/instancing.py +23 -0
- ansys/systemcoupling/core/adaptor/api_23_1/instancing_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_23_1/interrupt.py +39 -0
- ansys/systemcoupling/core/adaptor/api_23_1/library.py +37 -0
- ansys/systemcoupling/core/adaptor/api_23_1/mapping_control.py +229 -0
- ansys/systemcoupling/core/adaptor/api_23_1/open.py +102 -0
- ansys/systemcoupling/core/adaptor/{api_24_1/open_results_in_en_sight.py → api_23_1/open_results_in_ensight.py} +1 -29
- ansys/systemcoupling/core/adaptor/api_23_1/open_snapshot.py +37 -0
- ansys/systemcoupling/core/adaptor/api_23_1/output_control.py +129 -0
- ansys/systemcoupling/core/adaptor/api_23_1/partition_participants.py +138 -0
- ansys/systemcoupling/core/adaptor/api_23_1/reference_frame.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/reference_frame_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_23_1/region.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/region_child.py +72 -0
- ansys/systemcoupling/core/adaptor/api_23_1/reload_expression_function_modules.py +14 -0
- ansys/systemcoupling/core/adaptor/api_23_1/results.py +89 -0
- ansys/systemcoupling/core/adaptor/api_23_1/save.py +51 -0
- ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py +54 -0
- ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py +195 -0
- ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py +25 -0
- ansys/systemcoupling/core/adaptor/api_23_1/side.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/side_child.py +56 -0
- ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py +91 -0
- ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +104 -0
- ansys/systemcoupling/core/adaptor/api_23_1/solve.py +30 -0
- ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py +157 -0
- ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py +47 -0
- ansys/systemcoupling/core/adaptor/api_23_1/step.py +57 -0
- ansys/systemcoupling/core/adaptor/api_23_1/transformation.py +21 -0
- ansys/systemcoupling/core/adaptor/api_23_1/transformation_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_23_1/type.py +38 -0
- ansys/systemcoupling/core/adaptor/api_23_1/unmapped_value_options.py +158 -0
- ansys/systemcoupling/core/adaptor/api_23_1/update_control.py +44 -0
- ansys/systemcoupling/core/adaptor/api_23_1/update_participant.py +61 -0
- ansys/systemcoupling/core/adaptor/api_23_1/variable.py +20 -0
- ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py +201 -0
- ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py +21 -0
- ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_1/add_aerodamping_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_1/add_thermal_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +34 -0
- ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +1 -7
- ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +26 -0
- ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +11 -1
- ansys/systemcoupling/core/adaptor/api_24_1/get_add_data_transfer_group_commands.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_1/get_mode_shape_variables.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_1/get_thermal_data_transfer_options.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +10 -0
- ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +28 -0
- ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py +0 -8
- ansys/systemcoupling/core/adaptor/api_24_1/record_interactions.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +49 -1
- ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +12 -0
- ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +5 -5
- ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +1 -2
- ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +22 -0
- ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +26 -2
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py +29 -0
- ansys/systemcoupling/core/adaptor/impl/root_source.py +22 -1
- ansys/systemcoupling/core/adaptor/impl/static_info.py +22 -0
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +22 -0
- ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +22 -0
- ansys/systemcoupling/core/adaptor/impl/types.py +23 -0
- ansys/systemcoupling/core/client/grpc_client.py +22 -0
- ansys/systemcoupling/core/client/services/command_query.py +22 -0
- ansys/systemcoupling/core/client/services/output_stream.py +22 -0
- ansys/systemcoupling/core/client/services/process.py +22 -0
- ansys/systemcoupling/core/client/services/solution.py +22 -0
- ansys/systemcoupling/core/client/syc_container.py +22 -0
- ansys/systemcoupling/core/client/syc_process.py +22 -0
- ansys/systemcoupling/core/client/variant.py +22 -0
- ansys/systemcoupling/core/examples/__init__.py +22 -0
- ansys/systemcoupling/core/examples/downloads.py +23 -0
- ansys/systemcoupling/core/native_api/__init__.py +22 -0
- ansys/systemcoupling/core/native_api/command_metadata.py +23 -0
- ansys/systemcoupling/core/native_api/datamodel_metadata.py +22 -0
- ansys/systemcoupling/core/native_api/meta_wrapper.py +23 -0
- ansys/systemcoupling/core/native_api/native_api.py +22 -0
- ansys/systemcoupling/core/native_api/object_path.py +22 -0
- ansys/systemcoupling/core/participant/manager.py +22 -0
- ansys/systemcoupling/core/participant/mapdl.py +298 -0
- ansys/systemcoupling/core/participant/protocol.py +22 -0
- ansys/systemcoupling/core/session.py +22 -0
- ansys/systemcoupling/core/syc_version.py +22 -0
- ansys/systemcoupling/core/util/logging.py +22 -0
- ansys/systemcoupling/core/util/name_util.py +22 -0
- ansys/systemcoupling/core/util/pathstr.py +23 -1
- ansys/systemcoupling/core/util/state_keys.py +22 -0
- ansys/systemcoupling/core/util/yaml_helper.py +22 -0
- {ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/METADATA +19 -18
- {ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/RECORD +149 -52
- /ansys/systemcoupling/core/adaptor/{api_24_1 → api_23_1}/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/WHEEL +0 -0
{ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.dev0
|
|
4
4
|
Summary: A Python wrapper for Ansys System Coupling.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
6
|
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
20
|
Requires-Dist: ansys-api-systemcoupling==0.1.0
|
|
21
21
|
Requires-Dist: grpcio>=1.30.0
|
|
22
|
-
Requires-Dist: grpcio-status>=1.30.0,<1.
|
|
22
|
+
Requires-Dist: grpcio-status>=1.30.0,<1.60.2
|
|
23
23
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
24
24
|
Requires-Dist: protobuf>=3.20.1,<4.0.0
|
|
25
25
|
Requires-Dist: psutil>=5.7.0
|
|
@@ -27,26 +27,26 @@ Requires-Dist: pyyaml
|
|
|
27
27
|
Requires-Dist: appdirs>=1.4.0
|
|
28
28
|
Requires-Dist: importlib-metadata>=4.0
|
|
29
29
|
Requires-Dist: build ; extra == "build"
|
|
30
|
-
Requires-Dist: black==
|
|
31
|
-
Requires-Dist: isort==5.
|
|
32
|
-
Requires-Dist: ansys-sphinx-theme==0.
|
|
33
|
-
Requires-Dist: jupyter_sphinx==0.
|
|
30
|
+
Requires-Dist: black==24.1.1 ; extra == "classesgen"
|
|
31
|
+
Requires-Dist: isort==5.13.2 ; extra == "classesgen"
|
|
32
|
+
Requires-Dist: ansys-sphinx-theme==0.13.3 ; extra == "doc"
|
|
33
|
+
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
34
34
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
35
|
-
Requires-Dist: numpydoc==1.
|
|
36
|
-
Requires-Dist: pypandoc==1.
|
|
37
|
-
Requires-Dist: pytest-sphinx==0.
|
|
35
|
+
Requires-Dist: numpydoc==1.6.0 ; extra == "doc"
|
|
36
|
+
Requires-Dist: pypandoc==1.12 ; extra == "doc"
|
|
37
|
+
Requires-Dist: pytest-sphinx==0.6.0 ; extra == "doc"
|
|
38
38
|
Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx-autobuild==
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints==1.
|
|
39
|
+
Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-autodoc-typehints==1.25.2 ; extra == "doc"
|
|
41
41
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
42
|
-
Requires-Dist: sphinx-gallery==0.
|
|
42
|
+
Requires-Dist: sphinx-gallery==0.15.0 ; extra == "doc"
|
|
43
43
|
Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinxcontrib-websupport==1.2.
|
|
45
|
-
Requires-Dist: sphinxemoji==0.
|
|
44
|
+
Requires-Dist: sphinxcontrib-websupport==1.2.7 ; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
|
46
46
|
Requires-Dist: ansys-fluent-core ; extra == "doc"
|
|
47
47
|
Requires-Dist: ansys-dpf-core ; extra == "doc"
|
|
48
|
-
Requires-Dist: codespell==2.2.
|
|
49
|
-
Requires-Dist: flake8==
|
|
48
|
+
Requires-Dist: codespell==2.2.6 ; extra == "style"
|
|
49
|
+
Requires-Dist: flake8==7.0.0 ; extra == "style"
|
|
50
50
|
Requires-Dist: pytest ; extra == "tests"
|
|
51
51
|
Requires-Dist: pytest-cov ; extra == "tests"
|
|
52
52
|
Requires-Dist: psutil>=5.7.0 ; extra == "tests"
|
|
@@ -135,12 +135,12 @@ in this order:
|
|
|
135
135
|
|
|
136
136
|
* ``SYSC_ROOT``
|
|
137
137
|
* ``AWP_ROOT``
|
|
138
|
-
* ``
|
|
138
|
+
* ``AWP_ROOT241``
|
|
139
139
|
|
|
140
140
|
If a variable is set but does not refer to a valid installation, PySystemCoupling
|
|
141
141
|
fails at that point, rather than attempting to use the next variable.
|
|
142
142
|
|
|
143
|
-
In a standard user installation, the expectation is that only ``
|
|
143
|
+
In a standard user installation, the expectation is that only ``AWP_ROOT241`` is set.
|
|
144
144
|
|
|
145
145
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
146
146
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
|
@@ -157,6 +157,7 @@ However, if you are transitioning existing scripts, the native System Coupling A
|
|
|
157
157
|
as a convenience.
|
|
158
158
|
|
|
159
159
|
.. note::
|
|
160
|
+
|
|
160
161
|
While most commands should work as expected via the native System Coupling API,
|
|
161
162
|
no guarantees can be given because of the nature of how it is exposed.
|
|
162
163
|
|
{ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,97 @@
|
|
|
1
|
-
ansys/systemcoupling/core/__init__.py,sha256=
|
|
2
|
-
ansys/systemcoupling/core/_version.py,sha256=
|
|
3
|
-
ansys/systemcoupling/core/session.py,sha256=
|
|
4
|
-
ansys/systemcoupling/core/syc_version.py,sha256=
|
|
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,16 +190,20 @@ 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
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
|
|
197
|
+
ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py,sha256=CSKP2QOIwQsYtVUKJAbg0iwFOIcwV-u89LQQfEcwRI8,694
|
|
106
198
|
ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
|
|
107
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
|
|
201
|
+
ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
|
|
109
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=
|
|
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
|
|
@@ -117,19 +211,19 @@ ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py,sha256=uMc8dFRJjwd
|
|
|
117
211
|
ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
118
212
|
ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
119
213
|
ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
|
|
120
|
-
ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=
|
|
214
|
+
ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=RxLWjVHDa8HR2usbsvTKD4Y2FBxHnhfDv4hm6SsrEr4,1214
|
|
121
215
|
ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=A75bVCl0IOfuryONC7YhbQAbH6zPKxSJiMH4oTPETkM,380
|
|
122
216
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
123
217
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
124
218
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
125
|
-
ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py,sha256=
|
|
219
|
+
ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py,sha256=TYeFbM89ahXEQq7HpRhF-pEtZJqFDmet6EEdOFXe6_4,8720
|
|
126
220
|
ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
|
|
127
221
|
ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
|
|
128
222
|
ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
|
|
129
223
|
ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
|
|
130
224
|
ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
|
|
131
225
|
ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
|
|
132
|
-
ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py,sha256=
|
|
226
|
+
ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py,sha256=Wrp93NRXbxHdLqTFMBcWshGU1HH4EX_7zfE1kYJ9L6s,7049
|
|
133
227
|
ansys/systemcoupling/core/adaptor/api_24_1/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
|
|
134
228
|
ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
|
|
135
229
|
ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
|
|
@@ -139,12 +233,14 @@ ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py,sha256=xi1Pf2L_0CFoAz
|
|
|
139
233
|
ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
|
|
140
234
|
ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
|
|
141
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
|
|
142
237
|
ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
|
|
143
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
|
|
144
240
|
ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
|
|
145
241
|
ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
|
|
146
|
-
ansys/systemcoupling/core/adaptor/api_24_1/get_snapshots.py,sha256=-Y2prBF2RflYTCLnX6G4tYSwRHC0bEOPFtRVAZTqswE,277
|
|
147
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
|
|
148
244
|
ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py,sha256=IKp2KNsuyN1zmbpn2BdPY8l7C6Vz4lQzof2dNiQB1a4,999
|
|
149
245
|
ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
|
|
150
246
|
ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
|
|
@@ -156,15 +252,15 @@ ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py,sha256=r3rfTKTDykPKVWxLE
|
|
|
156
252
|
ansys/systemcoupling/core/adaptor/api_24_1/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
|
|
157
253
|
ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
|
|
158
254
|
ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py,sha256=Vl5KOV8FhA0hnaF_LkULVw2UWZyBVDTHHNHSso7YEJ0,2250
|
|
159
|
-
ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py,sha256=
|
|
255
|
+
ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
|
|
160
256
|
ansys/systemcoupling/core/adaptor/api_24_1/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
|
|
161
|
-
ansys/systemcoupling/core/adaptor/api_24_1/
|
|
162
|
-
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
|
|
163
258
|
ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
|
|
164
259
|
ansys/systemcoupling/core/adaptor/api_24_1/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
|
|
165
260
|
ansys/systemcoupling/core/adaptor/api_24_1/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
|
|
166
|
-
ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py,sha256=
|
|
261
|
+
ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py,sha256=cbWCTWoLtidkiu1YasufFmfmbx6iHgCXFGC5gUeZtLo,1686
|
|
167
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
|
|
168
264
|
ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
|
|
169
265
|
ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
|
|
170
266
|
ansys/systemcoupling/core/adaptor/api_24_1/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
|
|
@@ -173,12 +269,12 @@ ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py
|
|
|
173
269
|
ansys/systemcoupling/core/adaptor/api_24_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
|
|
174
270
|
ansys/systemcoupling/core/adaptor/api_24_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
175
271
|
ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
176
|
-
ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=
|
|
272
|
+
ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=TdQViEYiZf3QbkuoGYaUIUftBr7da1zA9CKun4i2f-E,8420
|
|
177
273
|
ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
178
274
|
ansys/systemcoupling/core/adaptor/api_24_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
179
275
|
ansys/systemcoupling/core/adaptor/api_24_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
180
|
-
ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py,sha256=
|
|
181
|
-
ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=
|
|
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
|
|
182
278
|
ansys/systemcoupling/core/adaptor/api_24_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
183
279
|
ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
184
280
|
ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
|
|
@@ -190,41 +286,42 @@ ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py,sha256=hO4Z
|
|
|
190
286
|
ansys/systemcoupling/core/adaptor/api_24_1/update_control.py,sha256=cnoOrAgFatOEEQV4YqFnX-N1mJwF1dihe6yHWrcO2Wk,1086
|
|
191
287
|
ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
|
|
192
288
|
ansys/systemcoupling/core/adaptor/api_24_1/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
|
|
193
|
-
ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=
|
|
289
|
+
ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
194
290
|
ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
195
291
|
ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
196
|
-
ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=
|
|
197
|
-
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=
|
|
198
|
-
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=
|
|
199
|
-
ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=
|
|
200
|
-
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=
|
|
201
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=
|
|
202
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=
|
|
203
|
-
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=
|
|
204
|
-
ansys/systemcoupling/core/client/grpc_client.py,sha256=
|
|
205
|
-
ansys/systemcoupling/core/client/syc_container.py,sha256=
|
|
206
|
-
ansys/systemcoupling/core/client/syc_process.py,sha256=
|
|
207
|
-
ansys/systemcoupling/core/client/variant.py,sha256=
|
|
208
|
-
ansys/systemcoupling/core/client/services/command_query.py,sha256=
|
|
209
|
-
ansys/systemcoupling/core/client/services/output_stream.py,sha256=
|
|
210
|
-
ansys/systemcoupling/core/client/services/process.py,sha256=
|
|
211
|
-
ansys/systemcoupling/core/client/services/solution.py,sha256=
|
|
212
|
-
ansys/systemcoupling/core/examples/__init__.py,sha256=
|
|
213
|
-
ansys/systemcoupling/core/examples/downloads.py,sha256=
|
|
214
|
-
ansys/systemcoupling/core/native_api/__init__.py,sha256=
|
|
215
|
-
ansys/systemcoupling/core/native_api/command_metadata.py,sha256=
|
|
216
|
-
ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=
|
|
217
|
-
ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=
|
|
218
|
-
ansys/systemcoupling/core/native_api/native_api.py,sha256=
|
|
219
|
-
ansys/systemcoupling/core/native_api/object_path.py,sha256=
|
|
220
|
-
ansys/systemcoupling/core/participant/manager.py,sha256=
|
|
221
|
-
ansys/systemcoupling/core/participant/
|
|
222
|
-
ansys/systemcoupling/core/
|
|
223
|
-
ansys/systemcoupling/core/util/
|
|
224
|
-
ansys/systemcoupling/core/util/
|
|
225
|
-
ansys/systemcoupling/core/util/
|
|
226
|
-
ansys/systemcoupling/core/util/
|
|
227
|
-
|
|
228
|
-
ansys_systemcoupling_core-0.
|
|
229
|
-
ansys_systemcoupling_core-0.
|
|
230
|
-
ansys_systemcoupling_core-0.
|
|
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,,
|
|
File without changes
|
{ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{ansys_systemcoupling_core-0.3.0.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/WHEEL
RENAMED
|
File without changes
|