ansys-systemcoupling-core 0.5.0__py3-none-any.whl → 0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-systemcoupling-core might be problematic. Click here for more details.
- ansys/systemcoupling/core/__init__.py +11 -5
- ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +4 -4
- ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +1 -1
- ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +7 -1
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py +215 -32
- ansys/systemcoupling/core/adaptor/impl/static_info.py +17 -0
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +3 -0
- ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +4 -0
- ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
- ansys/systemcoupling/core/charts/chart_datatypes.py +169 -0
- ansys/systemcoupling/core/charts/csv_chartdata.py +299 -0
- ansys/systemcoupling/core/charts/live_csv_datasource.py +87 -0
- ansys/systemcoupling/core/charts/message_dispatcher.py +84 -0
- ansys/systemcoupling/core/charts/plot_functions.py +92 -0
- ansys/systemcoupling/core/charts/plotdefinition_manager.py +303 -0
- ansys/systemcoupling/core/charts/plotter.py +343 -0
- ansys/systemcoupling/core/client/grpc_client.py +6 -1
- ansys/systemcoupling/core/participant/manager.py +25 -9
- ansys/systemcoupling/core/participant/protocol.py +1 -0
- ansys/systemcoupling/core/session.py +4 -4
- ansys/systemcoupling/core/syc_version.py +1 -1
- ansys/systemcoupling/core/util/file_transfer.py +4 -0
- {ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.dist-info}/METADATA +11 -10
- {ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.dist-info}/RECORD +33 -22
- {ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.dist-info}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.dist-info}/WHEEL +0 -0
|
@@ -24,6 +24,7 @@ import threading
|
|
|
24
24
|
from typing import Dict, List, Tuple
|
|
25
25
|
|
|
26
26
|
from ansys.systemcoupling.core.participant.protocol import ParticipantProtocol
|
|
27
|
+
from ansys.systemcoupling.core.syc_version import compare_versions
|
|
27
28
|
from ansys.systemcoupling.core.util.logging import LOG
|
|
28
29
|
|
|
29
30
|
|
|
@@ -54,10 +55,11 @@ class ParticipantManager:
|
|
|
54
55
|
until more participant types support the protocol.
|
|
55
56
|
"""
|
|
56
57
|
|
|
57
|
-
def __init__(self, syc_session):
|
|
58
|
+
def __init__(self, syc_session, server_version: str):
|
|
58
59
|
self.__participants: Dict[str, ParticipantProtocol] = {}
|
|
59
60
|
self.__syc_session = syc_session
|
|
60
61
|
self.__connection_lock = threading.Lock()
|
|
62
|
+
self.__server_version = server_version
|
|
61
63
|
self.clear()
|
|
62
64
|
|
|
63
65
|
def clear(self):
|
|
@@ -66,6 +68,11 @@ class ParticipantManager:
|
|
|
66
68
|
self.__solve_exception = None
|
|
67
69
|
|
|
68
70
|
def add_participant(self, participant_session: ParticipantProtocol) -> str:
|
|
71
|
+
if compare_versions(self.__server_version, "24.1") < 0:
|
|
72
|
+
raise RuntimeError(
|
|
73
|
+
f"System Coupling server version '{self.__server_version}' is too low to"
|
|
74
|
+
"support this form of 'add_participant'. Minimum version is '24.1'."
|
|
75
|
+
)
|
|
69
76
|
participant_name = (
|
|
70
77
|
f"{participant_session.participant_type}-{len(self.__participants) + 1}"
|
|
71
78
|
)
|
|
@@ -96,14 +103,23 @@ class ParticipantManager:
|
|
|
96
103
|
)
|
|
97
104
|
|
|
98
105
|
for region in participant_session.get_regions():
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
106
|
+
region_state = {
|
|
107
|
+
"topology": region.topology,
|
|
108
|
+
"input_variables": region.input_variables,
|
|
109
|
+
"output_variables": region.output_variables,
|
|
110
|
+
"display_name": region.display_name,
|
|
111
|
+
}
|
|
112
|
+
if compare_versions(self.__server_version, "24.2") >= 0:
|
|
113
|
+
region_state.update(
|
|
114
|
+
{
|
|
115
|
+
"region_discretization_type": (
|
|
116
|
+
region.region_discretization_type
|
|
117
|
+
if hasattr(region, "region_discretization_type")
|
|
118
|
+
else "Mesh Region"
|
|
119
|
+
)
|
|
120
|
+
}
|
|
121
|
+
)
|
|
122
|
+
part_state.region.create(region.name).set_state(region_state)
|
|
107
123
|
|
|
108
124
|
self.__participants[participant_name] = participant_session
|
|
109
125
|
return participant_name
|
|
@@ -83,7 +83,7 @@ class Session:
|
|
|
83
83
|
self.__rpc = rpc
|
|
84
84
|
self.__native_api = None
|
|
85
85
|
self.__syc_version = None
|
|
86
|
-
self.__part_mgr =
|
|
86
|
+
self.__part_mgr = None
|
|
87
87
|
|
|
88
88
|
def exit(self) -> None:
|
|
89
89
|
"""Close the System Coupling server instance.
|
|
@@ -176,10 +176,10 @@ class Session:
|
|
|
176
176
|
version = sycproxy.get_version()
|
|
177
177
|
self.__syc_version = version.replace(".", "_")
|
|
178
178
|
root = get_root(sycproxy, category=category, version=self.__syc_version)
|
|
179
|
+
if self.__part_mgr is None:
|
|
180
|
+
self.__part_mgr = ParticipantManager(self, self.__syc_version)
|
|
179
181
|
sycproxy.set_injected_commands(
|
|
180
|
-
get_injected_cmd_map(
|
|
181
|
-
self.__syc_version, category, root, self.__part_mgr, self.__rpc
|
|
182
|
-
)
|
|
182
|
+
get_injected_cmd_map(category, self, self.__part_mgr, self.__rpc)
|
|
183
183
|
)
|
|
184
184
|
return (root, sycproxy)
|
|
185
185
|
|
|
@@ -25,7 +25,7 @@ from typing import Tuple
|
|
|
25
25
|
# Define constants relating to the default/current version of System Coupling
|
|
26
26
|
|
|
27
27
|
SYC_MAJOR_VERSION = 24
|
|
28
|
-
SYC_MINOR_VERSION =
|
|
28
|
+
SYC_MINOR_VERSION = 2
|
|
29
29
|
|
|
30
30
|
SYC_VERSION_CONCAT = f"{SYC_MAJOR_VERSION}{SYC_MINOR_VERSION}"
|
|
31
31
|
SYC_VERSION_DOT = f"{SYC_MAJOR_VERSION}.{SYC_MINOR_VERSION}"
|
|
@@ -88,6 +88,10 @@ class PimFileTransferService: # pragma: no cover
|
|
|
88
88
|
"""
|
|
89
89
|
if os.path.isfile(file_name):
|
|
90
90
|
remote_file_name = remote_file_name or os.path.basename(file_name)
|
|
91
|
+
if os.path.dirname(file_name):
|
|
92
|
+
raise IsADirectoryError(
|
|
93
|
+
f"{remote_file_name} is not in the current working directory"
|
|
94
|
+
)
|
|
91
95
|
if not overwrite and self.file_service.file_exist(remote_file_name):
|
|
92
96
|
raise FileExistsError(f"{remote_file_name} already exists remotely.")
|
|
93
97
|
self.file_service.upload_file(file_name, remote_file_name)
|
{ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.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.6
|
|
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>
|
|
@@ -20,34 +20,35 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
20
20
|
Requires-Dist: ansys-api-systemcoupling==0.1.0
|
|
21
21
|
Requires-Dist: ansys-platform-instancemanagement~=1.0
|
|
22
22
|
Requires-Dist: grpcio>=1.30.0
|
|
23
|
-
Requires-Dist: grpcio-status>=1.30.0,<1.
|
|
23
|
+
Requires-Dist: grpcio-status>=1.30.0,<1.64.2
|
|
24
24
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
25
25
|
Requires-Dist: protobuf>=3.20.1,<4.0.0
|
|
26
26
|
Requires-Dist: psutil>=5.7.0
|
|
27
27
|
Requires-Dist: pyyaml
|
|
28
28
|
Requires-Dist: appdirs>=1.4.0
|
|
29
29
|
Requires-Dist: importlib-metadata>=4.0
|
|
30
|
+
Requires-Dist: matplotlib>=3.8.2
|
|
30
31
|
Requires-Dist: build ; extra == "build"
|
|
31
32
|
Requires-Dist: black==24.4.2 ; extra == "classesgen"
|
|
32
33
|
Requires-Dist: isort==5.13.2 ; extra == "classesgen"
|
|
33
|
-
Requires-Dist: ansys-sphinx-theme==0.
|
|
34
|
+
Requires-Dist: ansys-sphinx-theme==0.16.6 ; extra == "doc"
|
|
34
35
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
35
36
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
36
37
|
Requires-Dist: numpydoc==1.7.0 ; extra == "doc"
|
|
37
38
|
Requires-Dist: pypandoc==1.13 ; extra == "doc"
|
|
38
39
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
|
39
|
-
Requires-Dist: Sphinx==7.
|
|
40
|
+
Requires-Dist: Sphinx==7.3.7 ; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx-autobuild==2024.4.16 ; extra == "doc"
|
|
41
|
-
Requires-Dist: sphinx-autodoc-typehints==2.
|
|
42
|
+
Requires-Dist: sphinx-autodoc-typehints==2.2.2 ; extra == "doc"
|
|
42
43
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
43
44
|
Requires-Dist: sphinx-gallery==0.16.0 ; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinx-notfound-page==1.0.
|
|
45
|
+
Requires-Dist: sphinx-notfound-page==1.0.2 ; extra == "doc"
|
|
45
46
|
Requires-Dist: sphinxcontrib-websupport==1.2.7 ; extra == "doc"
|
|
46
47
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
|
47
48
|
Requires-Dist: ansys-fluent-core ; extra == "doc"
|
|
48
49
|
Requires-Dist: ansys-dpf-core ; extra == "doc"
|
|
49
|
-
Requires-Dist: codespell==2.
|
|
50
|
-
Requires-Dist: flake8==7.
|
|
50
|
+
Requires-Dist: codespell==2.3.0 ; extra == "style"
|
|
51
|
+
Requires-Dist: flake8==7.1.0 ; extra == "style"
|
|
51
52
|
Requires-Dist: pytest ; extra == "tests"
|
|
52
53
|
Requires-Dist: pytest-cov ; extra == "tests"
|
|
53
54
|
Requires-Dist: psutil>=5.7.0 ; extra == "tests"
|
|
@@ -136,12 +137,12 @@ in this order:
|
|
|
136
137
|
|
|
137
138
|
* ``SYSC_ROOT``
|
|
138
139
|
* ``AWP_ROOT``
|
|
139
|
-
* ``
|
|
140
|
+
* ``AWP_ROOT242``
|
|
140
141
|
|
|
141
142
|
If a variable is set but does not refer to a valid installation, PySystemCoupling
|
|
142
143
|
fails at that point, rather than attempting to use the next variable.
|
|
143
144
|
|
|
144
|
-
In a standard user installation, the expectation is that only ``
|
|
145
|
+
In a standard user installation, the expectation is that only ``AWP_ROOT242`` is set.
|
|
145
146
|
|
|
146
147
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
147
148
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
{ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
ansys/systemcoupling/core/__init__.py,sha256=
|
|
1
|
+
ansys/systemcoupling/core/__init__.py,sha256=9dek5li8pDDRA5oBI3mPeOwu784_qzwzse3lTNLyUWU,7404
|
|
2
2
|
ansys/systemcoupling/core/_version.py,sha256=WDT4Te1BIWgZU3Gt3WrwVwiGFs4nolWZXbwX-Ubj_r4,1579
|
|
3
|
-
ansys/systemcoupling/core/session.py,sha256=
|
|
4
|
-
ansys/systemcoupling/core/syc_version.py,sha256=
|
|
3
|
+
ansys/systemcoupling/core/session.py,sha256=PP3cmMqb0zgOJbtFIfESkTLFOFlLt29IArRhWG4V__k,10260
|
|
4
|
+
ansys/systemcoupling/core/syc_version.py,sha256=dn1BRe9hzGD2QAsuk6OLjxNcznJlpyiPIZh9Zjrwdqc,3783
|
|
5
5
|
ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
|
|
6
6
|
ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
7
7
|
ansys/systemcoupling/core/adaptor/api_23_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
@@ -74,11 +74,12 @@ ansys/systemcoupling/core/adaptor/api_23_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo
|
|
|
74
74
|
ansys/systemcoupling/core/adaptor/api_23_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
75
75
|
ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
76
76
|
ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py,sha256=Db4QxXFu0vuOpDbHiSV0n38OUGYP3sXb-sBz93Oi5Ac,6426
|
|
77
|
+
ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
|
|
77
78
|
ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
78
79
|
ansys/systemcoupling/core/adaptor/api_23_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
79
80
|
ansys/systemcoupling/core/adaptor/api_23_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
80
81
|
ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
|
|
81
|
-
ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py,sha256=
|
|
82
|
+
ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py,sha256=oZt6GdSHiBN2cEJBKMg3rO1iWd0oHbX0pRS7S4umGPk,2877
|
|
82
83
|
ansys/systemcoupling/core/adaptor/api_23_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
83
84
|
ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
84
85
|
ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
|
|
@@ -169,11 +170,12 @@ ansys/systemcoupling/core/adaptor/api_23_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo
|
|
|
169
170
|
ansys/systemcoupling/core/adaptor/api_23_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
170
171
|
ansys/systemcoupling/core/adaptor/api_23_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
171
172
|
ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py,sha256=Wlh8E_AzzA0do5YVjeSIxfCiwyZLGbzyMSFRTFhND50,6426
|
|
173
|
+
ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
|
|
172
174
|
ansys/systemcoupling/core/adaptor/api_23_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
173
175
|
ansys/systemcoupling/core/adaptor/api_23_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
174
176
|
ansys/systemcoupling/core/adaptor/api_23_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
175
177
|
ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py,sha256=0z255QBdz0L78NyTltotxm0lxd88pqfPI4MwgBVMKsI,2845
|
|
176
|
-
ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py,sha256=
|
|
178
|
+
ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py,sha256=RKjSL5tPPuXWwYi6yU7WUaJx7CWv9cFRN7vMhR_9QwQ,3094
|
|
177
179
|
ansys/systemcoupling/core/adaptor/api_23_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
178
180
|
ansys/systemcoupling/core/adaptor/api_23_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
179
181
|
ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py,sha256=9fgplQix05Ss9AsECntH2dskvu8_xy75zoOAv086IU8,1769
|
|
@@ -273,11 +275,12 @@ ansys/systemcoupling/core/adaptor/api_24_1/results.py,sha256=t-uhPT5K6WpP6C4kNlo
|
|
|
273
275
|
ansys/systemcoupling/core/adaptor/api_24_1/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
274
276
|
ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
275
277
|
ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py,sha256=TdQViEYiZf3QbkuoGYaUIUftBr7da1zA9CKun4i2f-E,8420
|
|
278
|
+
ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
|
|
276
279
|
ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
277
280
|
ansys/systemcoupling/core/adaptor/api_24_1/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
278
281
|
ansys/systemcoupling/core/adaptor/api_24_1/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
279
282
|
ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py,sha256=PJSTDi5fXgXl2npmrdzMBKq_BBtAxCbylRD7If9oF8E,4048
|
|
280
|
-
ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=
|
|
283
|
+
ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py,sha256=rrCc4DTnRWOHTavGeQOXjvQjSUztXpLLLiGRk2Q7KU8,3087
|
|
281
284
|
ansys/systemcoupling/core/adaptor/api_24_1/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
282
285
|
ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
283
286
|
ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
|
|
@@ -306,7 +309,7 @@ ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py,sha256=Oh_a3GHbHG_Jq
|
|
|
306
309
|
ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
|
|
307
310
|
ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
|
|
308
311
|
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
|
|
312
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py,sha256=a9NN0u20-7FdxxpKhV9NW7MCdq9s6aTn5ERlyoqocvQ,6395
|
|
310
313
|
ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
|
|
311
314
|
ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
|
|
312
315
|
ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
|
|
@@ -380,12 +383,13 @@ ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py
|
|
|
380
383
|
ansys/systemcoupling/core/adaptor/api_24_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
|
|
381
384
|
ansys/systemcoupling/core/adaptor/api_24_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
382
385
|
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=
|
|
386
|
+
ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py,sha256=J5a2ZlaWi2HlhuIbI1lmmCA4gOOIIcEKfR6eZUEiJ0M,8734
|
|
387
|
+
ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py,sha256=LnqVDjwGn7XZLrjh5eGae4yRwCnfSsXIBCsexZpyH0k,1899
|
|
384
388
|
ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
385
389
|
ansys/systemcoupling/core/adaptor/api_24_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
386
390
|
ansys/systemcoupling/core/adaptor/api_24_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
387
391
|
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
|
|
392
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py,sha256=ITuTVKGu1Use3jLPqtRyL1xw3Pb-_7JK8x4Cssg4c6o,3304
|
|
389
393
|
ansys/systemcoupling/core/adaptor/api_24_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
390
394
|
ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
391
395
|
ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
|
|
@@ -402,13 +406,20 @@ ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py,sha256=32YlQ
|
|
|
402
406
|
ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
403
407
|
ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=3wSnWTUS3q4VdufmHZ7jxyVCZONITFtP_tUB-8NnQuU,4210
|
|
404
408
|
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=CIq2J8h8Eapq_jrXpMMHAa9oqSSaNR5G7NAYZseVgJg,2489
|
|
405
|
-
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=
|
|
409
|
+
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=kXjaL9Ik9fLCL6S6RY__Q024V_oB1tR31J-acVq1j6g,18990
|
|
406
410
|
ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=d-NSP104VjR65qTiqp1rlST6VYJRUPf9YHcpR8ABssQ,12828
|
|
407
|
-
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=
|
|
408
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256
|
|
409
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=
|
|
410
|
-
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=
|
|
411
|
-
ansys/systemcoupling/core/
|
|
411
|
+
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=5U1CYNASPl4zNGjIw3Slwkhq-8v7GVKrih0HO_bIjSk,15691
|
|
412
|
+
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=-jF5zSwwiyJXLxocWK01v5AYDDtLyZRiMPfcqeOvim8,4906
|
|
413
|
+
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=oEEo1hyCtV-HFml7p0LuDKtmb918XmrBejkwx3Y_rkk,2361
|
|
414
|
+
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=Q-19IykEuUYQA2yVx-wJkP2tO9Am1IWzg3pFquFgI1c,25132
|
|
415
|
+
ansys/systemcoupling/core/charts/chart_datatypes.py,sha256=rlN9_rOaUGMLjEuxaSqpIBWcht3cnBpxm2uNYghbJU4,6711
|
|
416
|
+
ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=kmoglFJmAkZE8o5iV9GJNbOyL9CMVeLNLOVxfyS0D1M,11043
|
|
417
|
+
ansys/systemcoupling/core/charts/live_csv_datasource.py,sha256=R8r1WGjKx0-VxwYq_MqnRQYEIqFeJTICOaDpd4QLMs0,3385
|
|
418
|
+
ansys/systemcoupling/core/charts/message_dispatcher.py,sha256=zuNY3NthWag1yf7Rkj9CapaSyi0Bd0WSx8aMU1NfNgQ,2940
|
|
419
|
+
ansys/systemcoupling/core/charts/plot_functions.py,sha256=Li5HYCWkRTAvFGqnI6p636qayTPqphHLOtWI861vtgA,3276
|
|
420
|
+
ansys/systemcoupling/core/charts/plotdefinition_manager.py,sha256=UFQjYei3gk3GYVUksSPYbtcxFbcfepZscGg55ok5OQg,12446
|
|
421
|
+
ansys/systemcoupling/core/charts/plotter.py,sha256=L_hIanq5sV6LVSu3dn3yjoeCPBpEccyxXk2fFCt85_s,11833
|
|
422
|
+
ansys/systemcoupling/core/client/grpc_client.py,sha256=KxVzj--kLOL6ij0YlgxG3t8YgvLK2sHqjeDJuQtbAtc,14933
|
|
412
423
|
ansys/systemcoupling/core/client/syc_container.py,sha256=Dnv-NWGdX0KNUrAhqTpIoX3AaMv55eaYff9Op2ei-jg,2752
|
|
413
424
|
ansys/systemcoupling/core/client/syc_process.py,sha256=udVsRxD5QaaL1n7MPjmpIvybv5dlPmXiO2KCPRNnWGE,5635
|
|
414
425
|
ansys/systemcoupling/core/client/variant.py,sha256=di_eWRZnDQ69cknunYxRAOnbnwXnG6aZ_Se1VxOX7VQ,3064
|
|
@@ -424,16 +435,16 @@ ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=igFtxBTSh1VlN2
|
|
|
424
435
|
ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=ddyT0ea2GBAQHu99BJw9SA9wz8f9Q1j1bOt3KVJG0cE,1462
|
|
425
436
|
ansys/systemcoupling/core/native_api/native_api.py,sha256=3dP17JYzZa1PFP2jbCaEhzDi9B00ESlIcamxswRKcU0,7116
|
|
426
437
|
ansys/systemcoupling/core/native_api/object_path.py,sha256=DAULeS_asHMf1O3PiFnLLF_ZinTBakmrBQcfie34eKs,4153
|
|
427
|
-
ansys/systemcoupling/core/participant/manager.py,sha256=
|
|
438
|
+
ansys/systemcoupling/core/participant/manager.py,sha256=kJzfsTA1HquDQT-j3ib9OQMD0QRpvWGpnPMYDDvnYZU,9685
|
|
428
439
|
ansys/systemcoupling/core/participant/mapdl.py,sha256=v9Ms6uVaPj1-AbZYsaAY9JR_WpkLD7xSOJ3kQRGgtT0,11166
|
|
429
|
-
ansys/systemcoupling/core/participant/protocol.py,sha256=
|
|
430
|
-
ansys/systemcoupling/core/util/file_transfer.py,sha256=
|
|
440
|
+
ansys/systemcoupling/core/participant/protocol.py,sha256=Kc90wvz-ZDJfhvL-SrlFymdb_mn2oqVucaRZW7BfFWM,2479
|
|
441
|
+
ansys/systemcoupling/core/util/file_transfer.py,sha256=frtzdCmIQFmhRbhrmnjdki1r4rDbmz1wyqcsG5DMI84,5370
|
|
431
442
|
ansys/systemcoupling/core/util/logging.py,sha256=dFj0migeyUGke7sYL-hN80amMnUvuIO1kkCsOH_8ipc,5059
|
|
432
443
|
ansys/systemcoupling/core/util/name_util.py,sha256=AqALTBRe9hjS0SqbKk2BnN09pCq0M1irhd9illTTuwk,1470
|
|
433
444
|
ansys/systemcoupling/core/util/pathstr.py,sha256=xfnBAee68WG1R8s2LkoO9fLYZsJ0Nrx84woVuQv9bVY,1941
|
|
434
445
|
ansys/systemcoupling/core/util/state_keys.py,sha256=52gk88CJw1K3YIC6hg7Jc6_C2_EznQjrB1FrpcjhI1M,4545
|
|
435
446
|
ansys/systemcoupling/core/util/yaml_helper.py,sha256=6j2VNGXSEiJ11GUsUn4Z3wbPB9Cw-5JBsb5gWHAVsYo,2982
|
|
436
|
-
ansys_systemcoupling_core-0.
|
|
437
|
-
ansys_systemcoupling_core-0.
|
|
438
|
-
ansys_systemcoupling_core-0.
|
|
439
|
-
ansys_systemcoupling_core-0.
|
|
447
|
+
ansys_systemcoupling_core-0.6.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
|
|
448
|
+
ansys_systemcoupling_core-0.6.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
449
|
+
ansys_systemcoupling_core-0.6.dist-info/METADATA,sha256=UcFAGT-Fq5zROeIEalN-rHZJeAh0vIrb6tEfuF1ruMo,10977
|
|
450
|
+
ansys_systemcoupling_core-0.6.dist-info/RECORD,,
|
{ansys_systemcoupling_core-0.5.0.dist-info → ansys_systemcoupling_core-0.6.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|