ansys-systemcoupling-core 0.4.dev0__py3-none-any.whl → 0.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-systemcoupling-core might be problematic. Click here for more details.
- ansys/systemcoupling/core/__init__.py +44 -8
- 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_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_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_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/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 +116 -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 +18 -0
- ansys/systemcoupling/core/client/grpc_client.py +113 -14
- ansys/systemcoupling/core/session.py +50 -0
- ansys/systemcoupling/core/util/file_transfer.py +133 -0
- ansys/systemcoupling/core/util/logging.py +1 -1
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/METADATA +14 -13
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/RECORD +127 -15
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/WHEEL +0 -0
|
@@ -204,6 +204,56 @@ class Session:
|
|
|
204
204
|
self.__native_api = NativeApi(self.__rpc)
|
|
205
205
|
return self.__native_api
|
|
206
206
|
|
|
207
|
+
@property
|
|
208
|
+
def _grpc(self):
|
|
209
|
+
"""The gRPC connection object, exposed for testing purposes only."""
|
|
210
|
+
return self.__rpc
|
|
211
|
+
|
|
212
|
+
def upload_file(
|
|
213
|
+
self,
|
|
214
|
+
file_name: str,
|
|
215
|
+
remote_file_name: Optional[str] = None,
|
|
216
|
+
overwrite: bool = False,
|
|
217
|
+
):
|
|
218
|
+
"""For internal use only: upload a file to the PIM-managed instance.
|
|
219
|
+
|
|
220
|
+
Reduces to a no-op if the System Coupling instance is not managed by PIM.
|
|
221
|
+
|
|
222
|
+
The remote file may optionally be given a different name from the local one.
|
|
223
|
+
|
|
224
|
+
Unless ``overwrite`` is ``True``, a ``FileExistsError`` will be raised if
|
|
225
|
+
the remote file already exists.
|
|
226
|
+
|
|
227
|
+
Parameters
|
|
228
|
+
----------
|
|
229
|
+
file_name : str
|
|
230
|
+
local file name
|
|
231
|
+
remote_file_name : str, optional
|
|
232
|
+
remote file name - default is None
|
|
233
|
+
overwrite: bool, optional
|
|
234
|
+
whether to overwrite the remote file if it already exists - default is False
|
|
235
|
+
"""
|
|
236
|
+
self.__rpc.upload_file(file_name, remote_file_name, overwrite)
|
|
237
|
+
|
|
238
|
+
def download_file(
|
|
239
|
+
self, file_name: str, local_file_dir: str = ".", overwrite: bool = False
|
|
240
|
+
):
|
|
241
|
+
"""For internal use only: download a file from the PIM-managed instance.
|
|
242
|
+
|
|
243
|
+
Unless ``overwrite`` is ``True``, a ``FileExistsError`` will be raised if
|
|
244
|
+
the local file already exists.
|
|
245
|
+
|
|
246
|
+
Parameters
|
|
247
|
+
----------
|
|
248
|
+
file_name : str
|
|
249
|
+
file name
|
|
250
|
+
local_file_dir : str, optional
|
|
251
|
+
local directory to write the file - default is current directory, "."
|
|
252
|
+
overwrite : bool, optional
|
|
253
|
+
whether to overwrite the remote file if it already exists - default is False
|
|
254
|
+
"""
|
|
255
|
+
self.__rpc.download_file(file_name, local_file_dir, overwrite)
|
|
256
|
+
|
|
207
257
|
def __enter__(self):
|
|
208
258
|
return self
|
|
209
259
|
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
23
|
+
import os
|
|
24
|
+
from typing import Any, Optional, Protocol
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# Note: generally exclude items in this file from coverage for now
|
|
28
|
+
class FileTransferService(Protocol): # pragma: no cover
|
|
29
|
+
def upload_file(
|
|
30
|
+
self, file_name: str, remote_file_name: Optional[str], overwrite: bool
|
|
31
|
+
): ...
|
|
32
|
+
|
|
33
|
+
def download_file(self, file_name: str, local_file_dir: str, overwrite: bool): ...
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class NullFileTransferService(FileTransferService): # pragma: no cover
|
|
37
|
+
"""A do-nothing implementation of file upload/download service."""
|
|
38
|
+
|
|
39
|
+
...
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class PimFileTransferService: # pragma: no cover
|
|
43
|
+
"""Provides a file upload and download service for the case when PySystemCoupling
|
|
44
|
+
is running as a remote instance managed by
|
|
45
|
+
`PyPIM<https://pypim.docs.pyansys.com/version/stable/>`.
|
|
46
|
+
|
|
47
|
+
Currently for internal use only.
|
|
48
|
+
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
def __init__(self, pim_instance: Any):
|
|
52
|
+
|
|
53
|
+
self.pim_instance = pim_instance
|
|
54
|
+
self.file_service = None
|
|
55
|
+
|
|
56
|
+
try:
|
|
57
|
+
upload_server = self.pim_instance.services["http-simple-upload-server"]
|
|
58
|
+
except KeyError:
|
|
59
|
+
raise RuntimeError("PIM instance is not configured with the upload service")
|
|
60
|
+
else:
|
|
61
|
+
# This import is available in the Ansys Lab environment
|
|
62
|
+
from simple_upload_server.client import Client
|
|
63
|
+
|
|
64
|
+
self.file_service = Client(
|
|
65
|
+
token="token",
|
|
66
|
+
url=upload_server.uri,
|
|
67
|
+
headers=upload_server.headers,
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
def upload_file(
|
|
71
|
+
self, file_name: str, remote_file_name: Optional[str], overwrite: bool
|
|
72
|
+
):
|
|
73
|
+
"""Upload a file to the PIM-managed instance.
|
|
74
|
+
|
|
75
|
+
The remote file may optionally be given a different name from the local one.
|
|
76
|
+
|
|
77
|
+
Unless ``overwrite`` is ``True``, a ``FileExistsError`` will be raised if
|
|
78
|
+
the remote file already exists.
|
|
79
|
+
|
|
80
|
+
Parameters
|
|
81
|
+
----------
|
|
82
|
+
file_name : str
|
|
83
|
+
local file name
|
|
84
|
+
remote_file_name : str or None
|
|
85
|
+
remote file name (or use local file name if None)
|
|
86
|
+
overwrite: bool
|
|
87
|
+
whether to overwrite the remote file if it already exists
|
|
88
|
+
"""
|
|
89
|
+
if os.path.isfile(file_name):
|
|
90
|
+
remote_file_name = remote_file_name or os.path.basename(file_name)
|
|
91
|
+
if not overwrite and self.file_service.file_exist(remote_file_name):
|
|
92
|
+
raise FileExistsError(f"{remote_file_name} already exists remotely.")
|
|
93
|
+
self.file_service.upload_file(file_name, remote_file_name)
|
|
94
|
+
else:
|
|
95
|
+
raise FileNotFoundError(f"Local file {file_name} does not exist.")
|
|
96
|
+
|
|
97
|
+
def download_file(self, file_name: str, local_file_dir: str, overwrite: bool):
|
|
98
|
+
"""Download a file from the PIM-managed instance.
|
|
99
|
+
|
|
100
|
+
Unless ``overwrite`` is ``True``, a ``FileExistsError`` will be raised if
|
|
101
|
+
the local file already exists.
|
|
102
|
+
|
|
103
|
+
Parameters
|
|
104
|
+
----------
|
|
105
|
+
file_name : str
|
|
106
|
+
file name
|
|
107
|
+
local_file_dir : str
|
|
108
|
+
local directory to write the file
|
|
109
|
+
overwrite : bool
|
|
110
|
+
whether to overwrite the remote file if it already exists
|
|
111
|
+
"""
|
|
112
|
+
if self.file_service.file_exist(file_name):
|
|
113
|
+
if not overwrite:
|
|
114
|
+
local_file_path = os.path.join(local_file_dir, file_name)
|
|
115
|
+
if os.path.isfile(local_file_path):
|
|
116
|
+
raise FileExistsError(
|
|
117
|
+
f"Local file {local_file_path} already exists."
|
|
118
|
+
)
|
|
119
|
+
self.file_service.download_file(file_name, local_file_dir)
|
|
120
|
+
else:
|
|
121
|
+
raise FileNotFoundError(f"Remote file {file_name} does not exist.")
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
def file_transfer_service(
|
|
125
|
+
pim_instance: Optional[Any] = None,
|
|
126
|
+
) -> FileTransferService: # pragma: no cover
|
|
127
|
+
"""If a ``PIM`` instance is provided, returns an object providing remote
|
|
128
|
+
file upload and download, otherwise returns a 'no-op' version of the object.
|
|
129
|
+
"""
|
|
130
|
+
if pim_instance:
|
|
131
|
+
return PimFileTransferService(pim_instance)
|
|
132
|
+
else:
|
|
133
|
+
return NullFileTransferService()
|
{ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/METADATA
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: A Python wrapper for Ansys System Coupling.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
6
|
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.9,<3.13
|
|
8
8
|
Description-Content-Type: text/x-rst
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -13,13 +13,14 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
13
13
|
Classifier: Operating System :: Microsoft :: Windows
|
|
14
14
|
Classifier: Operating System :: POSIX
|
|
15
15
|
Classifier: Operating System :: MacOS
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Requires-Dist: ansys-api-systemcoupling==0.1.0
|
|
21
|
+
Requires-Dist: ansys-platform-instancemanagement~=1.0
|
|
21
22
|
Requires-Dist: grpcio>=1.30.0
|
|
22
|
-
Requires-Dist: grpcio-status>=1.30.0,<1.
|
|
23
|
+
Requires-Dist: grpcio-status>=1.30.0,<1.62.2
|
|
23
24
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
24
25
|
Requires-Dist: protobuf>=3.20.1,<4.0.0
|
|
25
26
|
Requires-Dist: psutil>=5.7.0
|
|
@@ -27,19 +28,19 @@ Requires-Dist: pyyaml
|
|
|
27
28
|
Requires-Dist: appdirs>=1.4.0
|
|
28
29
|
Requires-Dist: importlib-metadata>=4.0
|
|
29
30
|
Requires-Dist: build ; extra == "build"
|
|
30
|
-
Requires-Dist: black==24.
|
|
31
|
+
Requires-Dist: black==24.4.2 ; extra == "classesgen"
|
|
31
32
|
Requires-Dist: isort==5.13.2 ; extra == "classesgen"
|
|
32
|
-
Requires-Dist: ansys-sphinx-theme==0.
|
|
33
|
+
Requires-Dist: ansys-sphinx-theme==0.15.2 ; extra == "doc"
|
|
33
34
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
34
35
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
35
|
-
Requires-Dist: numpydoc==1.
|
|
36
|
-
Requires-Dist: pypandoc==1.
|
|
37
|
-
Requires-Dist: pytest-sphinx==0.6.
|
|
36
|
+
Requires-Dist: numpydoc==1.7.0 ; extra == "doc"
|
|
37
|
+
Requires-Dist: pypandoc==1.13 ; extra == "doc"
|
|
38
|
+
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
|
38
39
|
Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx-autobuild==2024.
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints==
|
|
40
|
+
Requires-Dist: sphinx-autobuild==2024.4.16 ; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-autodoc-typehints==2.0.1 ; extra == "doc"
|
|
41
42
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
42
|
-
Requires-Dist: sphinx-gallery==0.
|
|
43
|
+
Requires-Dist: sphinx-gallery==0.16.0 ; extra == "doc"
|
|
43
44
|
Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
|
|
44
45
|
Requires-Dist: sphinxcontrib-websupport==1.2.7 ; extra == "doc"
|
|
45
46
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
{ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/RECORD
RENAMED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
ansys/systemcoupling/core/__init__.py,sha256=
|
|
1
|
+
ansys/systemcoupling/core/__init__.py,sha256=N54XV9a-muJTDnPrvlxXjp3rQD1KdwGt3QdtZIrUTAg,7031
|
|
2
2
|
ansys/systemcoupling/core/_version.py,sha256=WDT4Te1BIWgZU3Gt3WrwVwiGFs4nolWZXbwX-Ubj_r4,1579
|
|
3
|
-
ansys/systemcoupling/core/session.py,sha256=
|
|
3
|
+
ansys/systemcoupling/core/session.py,sha256=Y2W5hUQ9A9POwXboLOc0VTCQx3JZqFGuQFHEiVEreQA,10219
|
|
4
4
|
ansys/systemcoupling/core/syc_version.py,sha256=WMP3A8aKHC7lF59ydsx8poz06B3XZWomCS47EPDFcF4,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
|
|
@@ -93,6 +94,7 @@ ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py,sha256=f_YqcdGrdwa8
|
|
|
93
94
|
ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
94
95
|
ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
95
96
|
ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
|
|
97
|
+
ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
96
98
|
ansys/systemcoupling/core/adaptor/api_23_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
97
99
|
ansys/systemcoupling/core/adaptor/api_23_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
98
100
|
ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
@@ -113,8 +115,8 @@ ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py,sha256=uMc8dFRJjwd
|
|
|
113
115
|
ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
114
116
|
ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
115
117
|
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=
|
|
118
|
+
ansys/systemcoupling/core/adaptor/api_23_2/case_root.py,sha256=K6CMJqVqF60OkZYznFslB29Un6veJyVYsPdj_z_NU4M,1549
|
|
119
|
+
ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
118
120
|
ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
119
121
|
ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
120
122
|
ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
@@ -187,6 +189,7 @@ ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py,sha256=czWKByOsUAFR
|
|
|
187
189
|
ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
188
190
|
ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
189
191
|
ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
|
|
192
|
+
ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
190
193
|
ansys/systemcoupling/core/adaptor/api_24_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
191
194
|
ansys/systemcoupling/core/adaptor/api_24_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
192
195
|
ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
@@ -211,8 +214,8 @@ ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py,sha256=uMc8dFRJjwd
|
|
|
211
214
|
ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
212
215
|
ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
213
216
|
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=
|
|
217
|
+
ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
|
|
218
|
+
ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
216
219
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
217
220
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
218
221
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
@@ -289,15 +292,123 @@ ansys/systemcoupling/core/adaptor/api_24_1/variable.py,sha256=BJldfmMGuyO9riy6Lw
|
|
|
289
292
|
ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
290
293
|
ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
291
294
|
ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
295
|
+
ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py,sha256=zbTC_i9XBHO7nMnw-Dqm83V_LbLJl7BlVYlzctZ8NOk,1374
|
|
296
|
+
ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
297
|
+
ansys/systemcoupling/core/adaptor/api_24_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
298
|
+
ansys/systemcoupling/core/adaptor/api_24_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
299
|
+
ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
300
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py,sha256=bEa1I3IUBpJvta4I7OrmuOOy7eAXIGx7Zd5ZxJsnTO8,1113
|
|
301
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py,sha256=9B5IeJo1xTJ74J5wBKwpTlUuiXNM2ylVk2usF-F-G3E,8251
|
|
302
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
|
|
303
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
|
|
304
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
|
|
305
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
|
|
306
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
|
|
307
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
|
|
308
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
|
|
309
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py,sha256=-oQTyzmbkyttIxRAM5v27BJjXeRnLLNvcOuC9MgoLRg,6389
|
|
310
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
|
|
311
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
|
|
312
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
|
|
313
|
+
ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py,sha256=VM5rSA4x3dtje-ah5AIA3on6ZPcRo3y9nYie4L4Q8QE,10857
|
|
314
|
+
ansys/systemcoupling/core/adaptor/api_24_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
|
|
315
|
+
ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
|
|
316
|
+
ansys/systemcoupling/core/adaptor/api_24_2/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
|
|
317
|
+
ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
|
|
318
|
+
ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
319
|
+
ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
320
|
+
ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
|
|
321
|
+
ansys/systemcoupling/core/adaptor/api_24_2/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
|
|
322
|
+
ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
323
|
+
ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py,sha256=70-dhniz9W3MoChR95iz1jFHl75w92DV-UXAzVl5YL4,1180
|
|
324
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
325
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
326
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
327
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py,sha256=WsQNIlUpf1e2AGwV_cpxZ2tK0ad1HcuxSGCL67j6K4w,8961
|
|
328
|
+
ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
|
|
329
|
+
ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
|
|
330
|
+
ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
|
|
331
|
+
ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
|
|
332
|
+
ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
|
|
333
|
+
ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
|
|
334
|
+
ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py,sha256=ycSdfbRGCFPqJnIhXDBUvsZ7RkF4GkxeEuI--8KPN6M,9047
|
|
335
|
+
ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py,sha256=lYYPEWRHb4ztgLKlm5iU9CoWR9js54PWoiuqgU-Zvz8,556
|
|
336
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
|
|
337
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
|
|
338
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
|
|
339
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
|
|
340
|
+
ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
|
|
341
|
+
ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
|
|
342
|
+
ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
|
|
343
|
+
ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
|
|
344
|
+
ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
|
|
345
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
|
|
346
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
|
|
347
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
|
|
348
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
|
|
349
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
|
|
350
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
|
|
351
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
|
|
352
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py,sha256=Q87bRy0PDB7OaTMy5GOu-DUQ27IX-n62kZ6NnYIpR4E,304
|
|
353
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
|
|
354
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py,sha256=S4XWsDhtsDKs-nEJMEUgD4zxh76C4G_n3h2zfgSy9ds,1000
|
|
355
|
+
ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
|
|
356
|
+
ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
|
|
357
|
+
ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
|
|
358
|
+
ansys/systemcoupling/core/adaptor/api_24_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
|
|
359
|
+
ansys/systemcoupling/core/adaptor/api_24_2/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
|
|
360
|
+
ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
|
|
361
|
+
ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
|
|
362
|
+
ansys/systemcoupling/core/adaptor/api_24_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
|
|
363
|
+
ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
|
|
364
|
+
ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py,sha256=bRhRPpjgWIRgpLiAB3Rc6_LJnrD1WmsvURITDjtaADY,3258
|
|
365
|
+
ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
|
|
366
|
+
ansys/systemcoupling/core/adaptor/api_24_2/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
|
|
367
|
+
ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
|
|
368
|
+
ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
|
|
369
|
+
ansys/systemcoupling/core/adaptor/api_24_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
|
|
370
|
+
ansys/systemcoupling/core/adaptor/api_24_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
|
|
371
|
+
ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py,sha256=cbWCTWoLtidkiu1YasufFmfmbx6iHgCXFGC5gUeZtLo,1686
|
|
372
|
+
ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
|
|
373
|
+
ansys/systemcoupling/core/adaptor/api_24_2/properties.py,sha256=nhwhkbDvBsMkkBpSgd2_1kJPyPINA7YWJF-Yasu5Wp4,1036
|
|
374
|
+
ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
|
|
375
|
+
ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
|
|
376
|
+
ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
|
|
377
|
+
ansys/systemcoupling/core/adaptor/api_24_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
|
|
378
|
+
ansys/systemcoupling/core/adaptor/api_24_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
|
|
379
|
+
ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
|
|
380
|
+
ansys/systemcoupling/core/adaptor/api_24_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
|
|
381
|
+
ansys/systemcoupling/core/adaptor/api_24_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
382
|
+
ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
383
|
+
ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py,sha256=8UL2I5sAleqiwZ9XtyVjp_z4DWAnwP1UrN2E7OX5Tlg,8734
|
|
384
|
+
ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
385
|
+
ansys/systemcoupling/core/adaptor/api_24_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
386
|
+
ansys/systemcoupling/core/adaptor/api_24_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
387
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py,sha256=PJSTDi5fXgXl2npmrdzMBKq_BBtAxCbylRD7If9oF8E,4048
|
|
388
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py,sha256=-raOFtBqgDbzZehM6MXS4icTH5EnD4nER6q5mWtZ3ew,3157
|
|
389
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
390
|
+
ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
391
|
+
ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
|
|
392
|
+
ansys/systemcoupling/core/adaptor/api_24_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
|
|
393
|
+
ansys/systemcoupling/core/adaptor/api_24_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
|
|
394
|
+
ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
|
|
395
|
+
ansys/systemcoupling/core/adaptor/api_24_2/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
|
|
396
|
+
ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
|
|
397
|
+
ansys/systemcoupling/core/adaptor/api_24_2/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
|
|
398
|
+
ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
|
|
399
|
+
ansys/systemcoupling/core/adaptor/api_24_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
|
|
400
|
+
ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
401
|
+
ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
402
|
+
ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
292
403
|
ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=3wSnWTUS3q4VdufmHZ7jxyVCZONITFtP_tUB-8NnQuU,4210
|
|
293
404
|
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=CIq2J8h8Eapq_jrXpMMHAa9oqSSaNR5G7NAYZseVgJg,2489
|
|
294
|
-
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=
|
|
405
|
+
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=cFnPP1MEEUrwaRFzROvHTEZ0iXr69102PChqlw3GMIc,12693
|
|
295
406
|
ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=d-NSP104VjR65qTiqp1rlST6VYJRUPf9YHcpR8ABssQ,12828
|
|
296
407
|
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=9mNFxRrn_52Cn4bJWpyFQKUhliwSWBZbzY_Fj8s-TVo,14927
|
|
297
408
|
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=FHe3EI5dhgWlXvT8mhiORm2zC2nmPCvq4gIYC1GDRmk,4784
|
|
298
409
|
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=oksliTfRt5IINxzkUUwqsAGPqs3iplwMlp6Y8xOLz28,2281
|
|
299
410
|
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=EzoB2mBUBSK1gJpK59-GAihi3GCkXgwqsQtdzsWIhps,25130
|
|
300
|
-
ansys/systemcoupling/core/client/grpc_client.py,sha256=
|
|
411
|
+
ansys/systemcoupling/core/client/grpc_client.py,sha256=Of91BkNKaxRjl94-zb53Z5euuc9I1tguhzmifu1MHgY,14735
|
|
301
412
|
ansys/systemcoupling/core/client/syc_container.py,sha256=Dnv-NWGdX0KNUrAhqTpIoX3AaMv55eaYff9Op2ei-jg,2752
|
|
302
413
|
ansys/systemcoupling/core/client/syc_process.py,sha256=udVsRxD5QaaL1n7MPjmpIvybv5dlPmXiO2KCPRNnWGE,5635
|
|
303
414
|
ansys/systemcoupling/core/client/variant.py,sha256=di_eWRZnDQ69cknunYxRAOnbnwXnG6aZ_Se1VxOX7VQ,3064
|
|
@@ -316,12 +427,13 @@ ansys/systemcoupling/core/native_api/object_path.py,sha256=DAULeS_asHMf1O3PiFnLL
|
|
|
316
427
|
ansys/systemcoupling/core/participant/manager.py,sha256=JlLGlLBtaP_4iwt0g27znqj1OBAn016ZxWATgNPBoE8,8839
|
|
317
428
|
ansys/systemcoupling/core/participant/mapdl.py,sha256=v9Ms6uVaPj1-AbZYsaAY9JR_WpkLD7xSOJ3kQRGgtT0,11166
|
|
318
429
|
ansys/systemcoupling/core/participant/protocol.py,sha256=BAcuagcLroZWAOwAsktQZ3Ga47-8OFTXVr84pDZmwcs,2427
|
|
319
|
-
ansys/systemcoupling/core/util/
|
|
430
|
+
ansys/systemcoupling/core/util/file_transfer.py,sha256=kzn5dnEhmPmahwbooeTxf5Zv-CaTORlv53fOfLJwits,5186
|
|
431
|
+
ansys/systemcoupling/core/util/logging.py,sha256=dFj0migeyUGke7sYL-hN80amMnUvuIO1kkCsOH_8ipc,5059
|
|
320
432
|
ansys/systemcoupling/core/util/name_util.py,sha256=AqALTBRe9hjS0SqbKk2BnN09pCq0M1irhd9illTTuwk,1470
|
|
321
433
|
ansys/systemcoupling/core/util/pathstr.py,sha256=xfnBAee68WG1R8s2LkoO9fLYZsJ0Nrx84woVuQv9bVY,1941
|
|
322
434
|
ansys/systemcoupling/core/util/state_keys.py,sha256=52gk88CJw1K3YIC6hg7Jc6_C2_EznQjrB1FrpcjhI1M,4545
|
|
323
435
|
ansys/systemcoupling/core/util/yaml_helper.py,sha256=6j2VNGXSEiJ11GUsUn4Z3wbPB9Cw-5JBsb5gWHAVsYo,2982
|
|
324
|
-
ansys_systemcoupling_core-0.
|
|
325
|
-
ansys_systemcoupling_core-0.
|
|
326
|
-
ansys_systemcoupling_core-0.
|
|
327
|
-
ansys_systemcoupling_core-0.
|
|
436
|
+
ansys_systemcoupling_core-0.5.0.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
|
|
437
|
+
ansys_systemcoupling_core-0.5.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
438
|
+
ansys_systemcoupling_core-0.5.0.dist-info/METADATA,sha256=a73nNHU6B772GTlBdbNFoBhrwp77K2iu456fSQZmvgs,10946
|
|
439
|
+
ansys_systemcoupling_core-0.5.0.dist-info/RECORD,,
|
{ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/WHEEL
RENAMED
|
File without changes
|