ansys-systemcoupling-core 0.9.0__py3-none-any.whl → 0.10.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 +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +9 -9
- ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +12 -3
- ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +27 -12
- ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +14 -14
- ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +30 -0
- ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +12 -2
- ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +4 -5
- ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +9 -1
- ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +3 -1
- ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +10 -0
- ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +12 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +22 -1
- ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +6 -5
- ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +24 -0
- ansys/systemcoupling/core/adaptor/api_25_2/open.py +19 -14
- ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +48 -38
- ansys/systemcoupling/core/adaptor/api_25_2/save.py +17 -15
- ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +1 -17
- ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +10 -0
- ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/solve.py +5 -5
- ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +4 -4
- ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +4 -1
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py +3 -1
- ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +34 -4
- ansys/systemcoupling/core/charts/csv_chartdata.py +4 -3
- ansys/systemcoupling/core/charts/plot_functions.py +12 -4
- ansys/systemcoupling/core/charts/plotter.py +3 -2
- ansys/systemcoupling/core/client/grpc_client.py +11 -2
- ansys/systemcoupling/core/client/syc_container.py +40 -35
- ansys/systemcoupling/core/client/syc_process.py +5 -2
- ansys/systemcoupling/core/native_api/datamodel_metadata.py +3 -2
- ansys/systemcoupling/core/native_api/object_path.py +2 -1
- ansys/systemcoupling/core/syc_version.py +1 -1
- ansys/systemcoupling/core/util/assertion.py +38 -0
- ansys/systemcoupling/core/util/file_transfer.py +2 -1
- ansys/systemcoupling/core/util/state_keys.py +11 -2
- ansys/systemcoupling/core/util/yaml_helper.py +5 -5
- {ansys_systemcoupling_core-0.9.0.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/METADATA +14 -8
- {ansys_systemcoupling_core-0.9.0.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/RECORD +47 -48
- {ansys_systemcoupling_core-0.9.0.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/WHEEL +1 -1
- ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py +0 -191
- ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py +0 -78
- {ansys_systemcoupling_core-0.9.0.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
|
|
23
23
|
import os
|
|
24
24
|
from pathlib import Path
|
|
25
|
-
import subprocess
|
|
26
25
|
|
|
27
26
|
from ansys.systemcoupling.core.syc_version import SYC_VERSION_DOT, normalize_version
|
|
27
|
+
from ansys.systemcoupling.core.util.logging import LOG
|
|
28
28
|
|
|
29
29
|
_MPI_VERSION_VAR = "FLUENT_INTEL_MPI_VERSION"
|
|
30
30
|
_MPI_VERSION = "2021"
|
|
@@ -41,15 +41,22 @@ def _image_tag(version: str) -> str:
|
|
|
41
41
|
|
|
42
42
|
def start_container(
|
|
43
43
|
mounted_from: str, mounted_to: str, network: str, port: int, version: str
|
|
44
|
-
) ->
|
|
44
|
+
) -> object:
|
|
45
45
|
"""Start a System Coupling container.
|
|
46
46
|
|
|
47
47
|
Parameters
|
|
48
48
|
----------
|
|
49
49
|
port : int
|
|
50
50
|
gPRC server local port, mapped to the same port in container.
|
|
51
|
+
|
|
52
|
+
Returns
|
|
53
|
+
-------
|
|
54
|
+
object
|
|
55
|
+
The container instance (``Container`` object from Python docker library).
|
|
51
56
|
"""
|
|
52
|
-
|
|
57
|
+
import docker
|
|
58
|
+
|
|
59
|
+
LOG.debug("Starting System Coupling docker container...")
|
|
53
60
|
|
|
54
61
|
if version:
|
|
55
62
|
image_tag = _image_tag(version)
|
|
@@ -58,47 +65,45 @@ def start_container(
|
|
|
58
65
|
|
|
59
66
|
mounted_from = str(Path(mounted_from).absolute())
|
|
60
67
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"-d",
|
|
65
|
-
"--rm",
|
|
66
|
-
"-p",
|
|
67
|
-
f"{port}:{port}",
|
|
68
|
-
"-v",
|
|
69
|
-
f"{mounted_from}:{mounted_to}",
|
|
70
|
-
"-w",
|
|
71
|
-
mounted_to,
|
|
72
|
-
"-e",
|
|
73
|
-
f"{_MPI_VERSION_VAR}={_MPI_VERSION}",
|
|
74
|
-
"-e",
|
|
75
|
-
f"AWP_ROOT=/ansys_inc",
|
|
76
|
-
f"ghcr.io/ansys/pysystem-coupling:{image_tag}",
|
|
77
|
-
] + args
|
|
68
|
+
image_name = f"ghcr.io/ansys/pysystem-coupling:{image_tag}"
|
|
69
|
+
|
|
70
|
+
environment = [f"{_MPI_VERSION_VAR}={_MPI_VERSION}", f"AWP_ROOT=/ansys_inc"]
|
|
78
71
|
|
|
72
|
+
# Additional environment
|
|
79
73
|
container_user = os.getenv("SYC_CONTAINER_USER")
|
|
80
74
|
if container_user:
|
|
81
|
-
idx = run_args.index("-p")
|
|
82
|
-
run_args.insert(idx, container_user)
|
|
83
|
-
run_args.insert(idx, "--user")
|
|
84
75
|
# Licensing can't log to default location if user is not the default 'root'
|
|
85
|
-
|
|
86
|
-
|
|
76
|
+
environment.append(f"ANSYSLC_APPLOGDIR={mounted_to}")
|
|
77
|
+
# See also "user" argument added to args below
|
|
87
78
|
|
|
88
79
|
license_server = os.getenv("ANSYSLMD_LICENSE_FILE")
|
|
89
80
|
if license_server:
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
81
|
+
environment.append(f"ANSYSLMD_LICENSE_FILE={license_server}")
|
|
82
|
+
|
|
83
|
+
run_args = dict(
|
|
84
|
+
image=image_name,
|
|
85
|
+
command=["-m", "cosimgui", f"--grpcport=0.0.0.0:{port}"],
|
|
86
|
+
detach=True,
|
|
87
|
+
environment=environment,
|
|
88
|
+
remove=True,
|
|
89
|
+
ports={f"{port}/tcp": f"{port}"},
|
|
90
|
+
volumes=[f"{mounted_from}:{mounted_to}"],
|
|
91
|
+
working_dir=f"{mounted_to}",
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
# Additional args
|
|
95
|
+
if container_user:
|
|
96
|
+
run_args["user"] = container_user
|
|
94
97
|
if network:
|
|
95
|
-
|
|
96
|
-
run_args.insert(idx, network)
|
|
97
|
-
run_args.insert(idx, "--network")
|
|
98
|
+
run_args["network"] = network
|
|
98
99
|
|
|
99
|
-
|
|
100
|
-
return
|
|
100
|
+
docker_client = docker.from_env()
|
|
101
|
+
return docker_client.containers.run(**run_args)
|
|
101
102
|
|
|
102
103
|
|
|
103
104
|
def create_network(name):
|
|
104
|
-
|
|
105
|
+
import docker
|
|
106
|
+
|
|
107
|
+
LOG.debug(f"Creating docker network '{name}'")
|
|
108
|
+
docker_client = docker.from_env()
|
|
109
|
+
docker_client.networks.create(name)
|
|
@@ -23,7 +23,9 @@
|
|
|
23
23
|
from copy import deepcopy
|
|
24
24
|
import os
|
|
25
25
|
import platform
|
|
26
|
-
|
|
26
|
+
|
|
27
|
+
# Exclude Bandit check. Subprocess is needed to start the System Coupling.
|
|
28
|
+
import subprocess # nosec B404
|
|
27
29
|
|
|
28
30
|
import psutil
|
|
29
31
|
|
|
@@ -99,7 +101,8 @@ def _start_system_coupling(
|
|
|
99
101
|
args += extra_args
|
|
100
102
|
|
|
101
103
|
LOG.info(f"Starting System Coupling: {args[0]}")
|
|
102
|
-
|
|
104
|
+
# Exclude Bandit check. No untrusted input to arguments.
|
|
105
|
+
return subprocess.Popen( # nosec B603
|
|
103
106
|
args,
|
|
104
107
|
env=env,
|
|
105
108
|
cwd=working_dir,
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
|
+
from ansys.systemcoupling.core.util.assertion import assert_
|
|
23
24
|
from ansys.systemcoupling.core.util.pathstr import to_typelist
|
|
24
25
|
|
|
25
26
|
|
|
@@ -39,7 +40,7 @@ class Node:
|
|
|
39
40
|
|
|
40
41
|
class Container(Node):
|
|
41
42
|
def __init__(self, id, category, parent=None):
|
|
42
|
-
|
|
43
|
+
assert_(category != Node.Parameter)
|
|
43
44
|
super().__init__(id, category, parent)
|
|
44
45
|
self.children = []
|
|
45
46
|
|
|
@@ -52,7 +53,7 @@ class Container(Node):
|
|
|
52
53
|
|
|
53
54
|
class Parameter(Node):
|
|
54
55
|
def __init__(self, name, data_type, parent):
|
|
55
|
-
|
|
56
|
+
assert_(parent is not None)
|
|
56
57
|
super().__init__(name, Node.Parameter, parent)
|
|
57
58
|
self.data_type = data_type
|
|
58
59
|
self.options = None
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
|
+
from ansys.systemcoupling.core.util.assertion import assert_
|
|
23
24
|
from ansys.systemcoupling.core.util.pathstr import join_path_strs
|
|
24
25
|
|
|
25
26
|
|
|
@@ -81,7 +82,7 @@ class ObjectPath(str):
|
|
|
81
82
|
|
|
82
83
|
def get_name(self):
|
|
83
84
|
left, sep, right = self.rpartition("/")
|
|
84
|
-
|
|
85
|
+
assert_(":" in right)
|
|
85
86
|
type, sep, name = right.partition(":")
|
|
86
87
|
return name
|
|
87
88
|
|
|
@@ -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 = 25
|
|
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}"
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 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
|
+
|
|
24
|
+
def assert_(condition: bool, failure_msg: str = ""):
|
|
25
|
+
"""Function that can be used to replace ``assert`` statements in code.
|
|
26
|
+
|
|
27
|
+
Assertions are not always preserved in run-time code and some tools will
|
|
28
|
+
warn about their use. However, sometimes the use of an assertion seems
|
|
29
|
+
appropriate to indicate something that should "never happen", such as
|
|
30
|
+
when used to confirm an invariant or a pre- or post-condition.
|
|
31
|
+
|
|
32
|
+
This function can be used in place of an ``assert`` statement and raises
|
|
33
|
+
an exception if the provided boolean is ``False``. Since only ``assert``
|
|
34
|
+
itself should raise an ``AssertionError``, ``RuntimeError`` is raised
|
|
35
|
+
here.
|
|
36
|
+
"""
|
|
37
|
+
if not condition:
|
|
38
|
+
raise RuntimeError(failure_msg or "Assertion failed")
|
|
@@ -69,7 +69,8 @@ class PimFileTransferService: # pragma: no cover
|
|
|
69
69
|
# This import is available in the Ansys Lab environment
|
|
70
70
|
from simple_upload_server.client import Client
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
# Exclude Bandit check. Hardcoded token only used in constrained Ansys Lab environment.
|
|
73
|
+
self.file_service = Client( # nosec B106
|
|
73
74
|
token="token",
|
|
74
75
|
url=upload_server.uri,
|
|
75
76
|
headers=upload_server.headers,
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
23
|
import copy
|
|
24
|
+
from typing import Any, Dict, Set
|
|
24
25
|
|
|
25
26
|
|
|
26
27
|
def adapt_native_named_object_keys(state):
|
|
@@ -74,7 +75,9 @@ def adapt_native_named_object_keys_in_place(state):
|
|
|
74
75
|
del state[k]
|
|
75
76
|
|
|
76
77
|
|
|
77
|
-
def adapt_client_named_object_keys(
|
|
78
|
+
def adapt_client_named_object_keys(
|
|
79
|
+
state: Dict[str, Any], level_type_map: Dict[int, Set[str]], start_level: int = 0
|
|
80
|
+
) -> Dict[str, Any]:
|
|
78
81
|
"""Transform a System Coupling client-style nested state dictionary
|
|
79
82
|
to an equivalent native format.
|
|
80
83
|
|
|
@@ -89,12 +92,18 @@ def adapt_client_named_object_keys(state, level_type_map):
|
|
|
89
92
|
|
|
90
93
|
Parameters
|
|
91
94
|
----------
|
|
95
|
+
state: dict
|
|
96
|
+
The nested state dictionary to transform to the native format.
|
|
92
97
|
level_type_map: dict
|
|
93
98
|
Dictionary from the integer nest level (0-based) to sets of
|
|
94
99
|
named object types at this level. Note that the level is
|
|
95
100
|
the data model level. This means it does not include the extra
|
|
96
101
|
levels introduced by the client-side format but more closely
|
|
97
102
|
aligns with the target native format.
|
|
103
|
+
start_level: int, optional
|
|
104
|
+
If state is a sub-state of a larger state, and the level_type_map
|
|
105
|
+
is for the larger state, then this parameter can be used to
|
|
106
|
+
provide a starting level for the transformation.
|
|
98
107
|
"""
|
|
99
108
|
|
|
100
109
|
def do_adapt(s, level=0):
|
|
@@ -110,4 +119,4 @@ def adapt_client_named_object_keys(state, level_type_map):
|
|
|
110
119
|
state_out[id] = copy.copy(sub_state)
|
|
111
120
|
return state_out
|
|
112
121
|
|
|
113
|
-
return do_adapt(state)
|
|
122
|
+
return do_adapt(state, level=start_level)
|
|
@@ -27,10 +27,10 @@ import yaml
|
|
|
27
27
|
|
|
28
28
|
"""Simple utility wrappers for common YAML functionality."""
|
|
29
29
|
|
|
30
|
-
try:
|
|
31
|
-
from yaml import CLoader as Loader
|
|
32
|
-
except ImportError:
|
|
33
|
-
from yaml import Loader
|
|
30
|
+
# try:
|
|
31
|
+
# from yaml import CLoader as Loader
|
|
32
|
+
# except ImportError:
|
|
33
|
+
# from yaml import Loader
|
|
34
34
|
|
|
35
35
|
# Define and add a "representer" so that we get the "|" format
|
|
36
36
|
# for multiline strings.
|
|
@@ -75,7 +75,7 @@ def _yaml_dump_to_stream(data: Any, stream: TextIO, sort_keys: bool) -> None:
|
|
|
75
75
|
def yaml_load_from_file(filepath: str) -> Any: # pragma: no cover
|
|
76
76
|
"""Load the content in a specified YAML file."""
|
|
77
77
|
with open(filepath, "r") as f:
|
|
78
|
-
return yaml.
|
|
78
|
+
return yaml.safe_load(stream=f)
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
def yaml_load_from_string(strdata: str) -> Any:
|
{ansys_systemcoupling_core-0.9.0.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.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>
|
|
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: ansys-api-systemcoupling==0.2.0
|
|
22
22
|
Requires-Dist: ansys-platform-instancemanagement~=1.0
|
|
23
|
+
Requires-Dist: docker>=7.1.0
|
|
23
24
|
Requires-Dist: grpcio>=1.30.0
|
|
24
25
|
Requires-Dist: grpcio-status>=1.30.0
|
|
25
26
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
@@ -31,10 +32,10 @@ Requires-Dist: matplotlib>=3.8.2
|
|
|
31
32
|
Requires-Dist: build ; extra == "build"
|
|
32
33
|
Requires-Dist: black==25.1.0 ; extra == "classesgen"
|
|
33
34
|
Requires-Dist: isort==6.0.1 ; extra == "classesgen"
|
|
34
|
-
Requires-Dist: ansys-sphinx-theme==1.3
|
|
35
|
+
Requires-Dist: ansys-sphinx-theme==1.5.3 ; extra == "doc"
|
|
35
36
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
36
37
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
37
|
-
Requires-Dist: numpydoc==1.
|
|
38
|
+
Requires-Dist: numpydoc==1.9.0 ; extra == "doc"
|
|
38
39
|
Requires-Dist: pypandoc==1.15 ; extra == "doc"
|
|
39
40
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx>=8.1.3 ; extra == "doc"
|
|
@@ -45,10 +46,10 @@ Requires-Dist: sphinx-gallery==0.19.0 ; extra == "doc"
|
|
|
45
46
|
Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
|
|
46
47
|
Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
|
|
47
48
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
|
48
|
-
Requires-Dist: ansys-fluent-core==0.
|
|
49
|
-
Requires-Dist: ansys-mapdl-core==0.
|
|
49
|
+
Requires-Dist: ansys-fluent-core==0.33.0 ; extra == "doc"
|
|
50
|
+
Requires-Dist: ansys-mapdl-core==0.70.2 ; extra == "doc"
|
|
50
51
|
Requires-Dist: codespell==2.4.1 ; extra == "style"
|
|
51
|
-
Requires-Dist: flake8==7.
|
|
52
|
+
Requires-Dist: flake8==7.3.0 ; extra == "style"
|
|
52
53
|
Requires-Dist: pytest ; extra == "tests"
|
|
53
54
|
Requires-Dist: pytest-cov ; extra == "tests"
|
|
54
55
|
Requires-Dist: psutil>=5.7.0 ; extra == "tests"
|
|
@@ -149,13 +150,18 @@ function. This will affect which ``AWP_ROOT<version>`` environment variable is e
|
|
|
149
150
|
|
|
150
151
|
**WARNING**
|
|
151
152
|
|
|
153
|
+
Note that the following applies only to the 25 R1 release of Ansys System Coupling.
|
|
154
|
+
|
|
152
155
|
There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
|
|
153
156
|
working in the gRPC server mode on which PySystemCoupling depends. A small patch
|
|
154
157
|
is available that may be applied to some of the Python files in the System Coupling
|
|
155
158
|
installation. This is provided in the ``patches/`` directory of this repository and will
|
|
156
|
-
allow System Coupling to work with
|
|
159
|
+
allow System Coupling 25 R1 to work with PySystemCoupling releases 0.9 and later.
|
|
160
|
+
|
|
161
|
+
This issue is not present in later releases of System Coupling. If a later release
|
|
162
|
+
is available, you are recommended to use that.
|
|
157
163
|
|
|
158
|
-
|
|
164
|
+
Alternatively, PySystemCoupling can be used with an earlier release of System Coupling by
|
|
159
165
|
setting the environment variable ``AWP_ROOT`` or specifying the version number as an
|
|
160
166
|
argument to the ``launch()`` function.
|
|
161
167
|
|
{ansys_systemcoupling_core-0.9.0.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
ansys/systemcoupling/core/__init__.py,sha256=
|
|
1
|
+
ansys/systemcoupling/core/__init__.py,sha256=TBvhfkOcpx6yNlW0GY63vhkb5yrPEOw9HZ7OsK0S2Tc,7404
|
|
2
2
|
ansys/systemcoupling/core/_version.py,sha256=0O92dThGL6WonU1LHCRjVhowmSx2G6APw-gxOsSN9ME,1579
|
|
3
3
|
ansys/systemcoupling/core/session.py,sha256=gdUOivOdKOhOn7oA9Z2kqZKekFPcURwV_bIODBK1KO0,10983
|
|
4
|
-
ansys/systemcoupling/core/syc_version.py,sha256=
|
|
4
|
+
ansys/systemcoupling/core/syc_version.py,sha256=76I2NBmwoRot_c0W4343SyhGxtY4eMm1zK4YbOGffdU,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
|
|
@@ -520,41 +520,39 @@ ansys/systemcoupling/core/adaptor/api_25_2/_solve.py,sha256=MOOadf9YEzjm67-3VUew
|
|
|
520
520
|
ansys/systemcoupling/core/adaptor/api_25_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
521
521
|
ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
522
522
|
ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py,sha256=M2Ma8DQI0899pHrGyM8mk_Vb5daEX_W8gXltyngAqxg,1101
|
|
523
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py,sha256=
|
|
524
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
|
|
523
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py,sha256=dlac4YwLeB-w-oq1imO0prmgqODNU-1KxXlWWXqzTbc,8243
|
|
525
524
|
ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
|
|
526
525
|
ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py,sha256=vHmh6lKLoRo_8lZh5_bYJB-dUOi_DGs5cJItaaWw8Ms,724
|
|
527
526
|
ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
|
|
528
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py,sha256=
|
|
529
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py,sha256=fHqrLSHNK29LxYgS4aSHKC1iEB1BJqWKBhthn4V3CGw,2300
|
|
527
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py,sha256=ORcZ4_Ge_IL02xZYVwSZtpDFYDtTaCLVJjZnxUF6JL4,2549
|
|
530
528
|
ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
|
|
531
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py,sha256=
|
|
532
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py,sha256=
|
|
529
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py,sha256=L4vSHbiXiKI5EqLl3vmrW3h7CwAn4-jxMnJ2K_PTSvQ,1191
|
|
530
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py,sha256=pH5gHzBMsLHdFHi7UFU7sd0yudLi8TEOViiyMQbBWR4,7024
|
|
533
531
|
ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
|
|
534
532
|
ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
|
|
535
|
-
ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py,sha256=
|
|
536
|
-
ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py,sha256=
|
|
533
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py,sha256=UYewk7m_hcOLbk1FWe-xnh9x7Jctfeu33Ey-GjCnQeU,3260
|
|
534
|
+
ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py,sha256=I8VX-zZWMYazEZu0VoFxTqCWDfY4YPrIofSznsL0pio,12877
|
|
537
535
|
ansys/systemcoupling/core/adaptor/api_25_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
|
|
538
536
|
ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
|
|
539
|
-
ansys/systemcoupling/core/adaptor/api_25_2/attribute.py,sha256=
|
|
540
|
-
ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py,sha256=
|
|
537
|
+
ansys/systemcoupling/core/adaptor/api_25_2/attribute.py,sha256=zWhjU3OIRcuzU4mQ2DtzCKIXkdEt9Doq1PL9xw8H4pc,392
|
|
538
|
+
ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py,sha256=J4lt2nT3hD8q4QRW97LF4uaovNV5N7rRk5vlzkFk2SQ,2093
|
|
541
539
|
ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
542
540
|
ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
543
541
|
ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py,sha256=eZ1AMdk8YPIPS5GayPllYAdW9xrjasHtz3qYEOBtVU0,1592
|
|
544
|
-
ansys/systemcoupling/core/adaptor/api_25_2/case_root.py,sha256=
|
|
542
|
+
ansys/systemcoupling/core/adaptor/api_25_2/case_root.py,sha256=7GfAdVlNwimuuiii9EWeemEXN3YpouckhFp3cw27_Jw,1378
|
|
545
543
|
ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
546
544
|
ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py,sha256=LhrmimlCstSX4GVjNgOR11Wbhe3PXydJdAKrBxknjNI,1180
|
|
547
545
|
ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
548
546
|
ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
549
547
|
ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
550
548
|
ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py,sha256=LqYHNWiHAOXln02g-FI4CzBVpvkPsos4F1eVVGUBvQ0,9139
|
|
551
|
-
ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py,sha256=
|
|
549
|
+
ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py,sha256=JJZfKASeMZx19-8OAYTxR4PpY8jhl5hEoSt4iC_xa8M,1083
|
|
552
550
|
ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
|
|
553
|
-
ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py,sha256=
|
|
554
|
-
ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py,sha256=
|
|
551
|
+
ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py,sha256=gQhOgYT9EU4UbFrau2MOk1M3ZpKjUoU_95vV4HqJz2I,6816
|
|
552
|
+
ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py,sha256=trVmhTCZHYne9P4gAPH1Qhxh5lLunAVqsOSFW_tBM9Q,573
|
|
555
553
|
ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
|
|
556
554
|
ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
|
|
557
|
-
ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py,sha256=
|
|
555
|
+
ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py,sha256=BRIxFv8aF6NwZ6DGcpO0v8JYZru6LCQrbOuL8stfJ1Q,9796
|
|
558
556
|
ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py,sha256=lYYPEWRHb4ztgLKlm5iU9CoWR9js54PWoiuqgU-Zvz8,556
|
|
559
557
|
ansys/systemcoupling/core/adaptor/api_25_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
|
|
560
558
|
ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
|
|
@@ -564,12 +562,12 @@ ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py,sha256=kStH-C9Y
|
|
|
564
562
|
ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
|
|
565
563
|
ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
|
|
566
564
|
ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py,sha256=O1xQ5ADVR3y-S6NDI302MgRoVKpyckMqbJDgW6kUs48,5040
|
|
567
|
-
ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py,sha256=
|
|
565
|
+
ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py,sha256=NHVAP384E1XX9H548vb6_c7t2E8tOHoAMWVqsU1B32A,1463
|
|
568
566
|
ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
|
|
569
|
-
ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py,sha256=
|
|
570
|
-
ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py,sha256=
|
|
567
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py,sha256=i-5tY39jIXnj2asTm_dxgdkrTElU_3WVq9BVQbD0ZHE,661
|
|
568
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py,sha256=8Ge_8--kKPIfac5h4o6EhT7Felx7vx-KVvH5yKfVaGk,957
|
|
571
569
|
ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
|
|
572
|
-
ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py,sha256=
|
|
570
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py,sha256=8omhxsKf-QeZxY_lX5lBa9-o1ZELu6vCohiHQsDXIuM,729
|
|
573
571
|
ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
|
|
574
572
|
ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
|
|
575
573
|
ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py,sha256=Q87bRy0PDB7OaTMy5GOu-DUQ27IX-n62kZ6NnYIpR4E,304
|
|
@@ -586,14 +584,14 @@ ansys/systemcoupling/core/adaptor/api_25_2/library.py,sha256=woA6i5bJwuvX0rpwPvA
|
|
|
586
584
|
ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
|
|
587
585
|
ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py,sha256=1s-mZXROuCMnUTex47s5reCfwl5QPIftIuSUt63Bgcc,3217
|
|
588
586
|
ansys/systemcoupling/core/adaptor/api_25_2/map.py,sha256=MHmHvyo_bUC67mj0U6-Zl_g24y1NilwEGKTBxhTYwtk,506
|
|
589
|
-
ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py,sha256=
|
|
590
|
-
ansys/systemcoupling/core/adaptor/api_25_2/open.py,sha256=
|
|
587
|
+
ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py,sha256=ZkHgiLN4vTLOJ0Gk-j2stAQn4_TuBizAThXgWqGoVSo,10489
|
|
588
|
+
ansys/systemcoupling/core/adaptor/api_25_2/open.py,sha256=wGop9omcQiA9mWjj83JFDMKENzGUMp2q9w-1Y1ghFz4,5134
|
|
591
589
|
ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
|
|
592
590
|
ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
|
|
593
591
|
ansys/systemcoupling/core/adaptor/api_25_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
|
|
594
592
|
ansys/systemcoupling/core/adaptor/api_25_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
|
|
595
593
|
ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py,sha256=N-2cgILu8mOrvjwiVQvz84eBQzzX5rFV89UPYo3q2yI,1768
|
|
596
|
-
ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py,sha256
|
|
594
|
+
ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py,sha256=-frzpQ3NKxmA9gKgIFwPt2ZHbUuxFBSOuPX9xrWKKks,6760
|
|
597
595
|
ansys/systemcoupling/core/adaptor/api_25_2/properties.py,sha256=nhwhkbDvBsMkkBpSgd2_1kJPyPINA7YWJF-Yasu5Wp4,1036
|
|
598
596
|
ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
|
|
599
597
|
ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
|
|
@@ -602,16 +600,16 @@ ansys/systemcoupling/core/adaptor/api_25_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ
|
|
|
602
600
|
ansys/systemcoupling/core/adaptor/api_25_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
|
|
603
601
|
ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
|
|
604
602
|
ansys/systemcoupling/core/adaptor/api_25_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
|
|
605
|
-
ansys/systemcoupling/core/adaptor/api_25_2/save.py,sha256=
|
|
603
|
+
ansys/systemcoupling/core/adaptor/api_25_2/save.py,sha256=UKX_8Mv5H0PP7rF_WuhaTAjoK8y3IdcB9HgAFAoVrSg,1789
|
|
606
604
|
ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
607
|
-
ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py,sha256=
|
|
605
|
+
ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py,sha256=v6HPZmzIeZ8WcS8tnBpFiE5N5EyIXCHFLESXlOJX8TI,8413
|
|
608
606
|
ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py,sha256=qGa4acJb2LU3CqytIFrWKQ59aQLtCQnUCs1HbOR6lDc,1887
|
|
609
607
|
ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
610
608
|
ansys/systemcoupling/core/adaptor/api_25_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
611
609
|
ansys/systemcoupling/core/adaptor/api_25_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
612
|
-
ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py,sha256=
|
|
613
|
-
ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py,sha256=
|
|
614
|
-
ansys/systemcoupling/core/adaptor/api_25_2/solve.py,sha256=
|
|
610
|
+
ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py,sha256=GnKtA735KcKlnXWPh1Nc_5ipSYO6qXGz6fSCt-tMPRY,4655
|
|
611
|
+
ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py,sha256=OnuDfr8i8sGxAnS2DWGv0u94cJssgOZG8K0WiLzxMVE,3605
|
|
612
|
+
ansys/systemcoupling/core/adaptor/api_25_2/solve.py,sha256=QMTysFjwL0VdS4lywGHm5g56nlc52_MjOX1crCbjl24,1046
|
|
615
613
|
ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
616
614
|
ansys/systemcoupling/core/adaptor/api_25_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
|
|
617
615
|
ansys/systemcoupling/core/adaptor/api_25_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
|
|
@@ -620,30 +618,30 @@ ansys/systemcoupling/core/adaptor/api_25_2/type.py,sha256=fC5twjCM-g2J3Q2s0Fzq33
|
|
|
620
618
|
ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
|
|
621
619
|
ansys/systemcoupling/core/adaptor/api_25_2/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
|
|
622
620
|
ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py,sha256=j5RljODkriegdx9UYRbVlbWbSz4aVx4z-bmOnPPclCw,620
|
|
623
|
-
ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py,sha256=
|
|
621
|
+
ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py,sha256=JoaRINNMXUaPlbh6WNk7cRim6vMD4pIQtJIyHGQW6S8,2109
|
|
624
622
|
ansys/systemcoupling/core/adaptor/api_25_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
|
|
625
623
|
ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
626
624
|
ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
627
625
|
ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py,sha256=3UzT6ZX9XASOjUBcDOkLLAYlE6vqO1BLms_LjjSyEs0,1278
|
|
628
626
|
ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py,sha256=mXpCjJoG2wFK5RriBgfRsCgqFqUDFNrjv5Z2VwhMU_M,882
|
|
629
627
|
ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=HFyhLn_Rw7mO23zGJsHq1XQ7Gnxh0ffHIXM5AxlGvqQ,4210
|
|
630
|
-
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256
|
|
631
|
-
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=
|
|
628
|
+
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=-sj9JcCAh61Qr1jFFok9wckVWu_CgTIGj9Aa0VqXtkg,2742
|
|
629
|
+
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=K3af_CrdLWPl6Cmf0Aag0mCiexC4p3pMuLdc2DRL9ys,19333
|
|
632
630
|
ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=RIQlBtqnQEOlR8nXMfzNtdeNU3cIiciH-UW8StQoN8w,12828
|
|
633
631
|
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=J1EN5rI0kaGPupUwxXfe3XlYuBHUWQwkbNy9s8U--QQ,15938
|
|
634
|
-
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=
|
|
632
|
+
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=JXKYT0CWwm4CIADSwJsZJ48qXfhNLhEQqzCqA5fpLHA,6072
|
|
635
633
|
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=pByFumJFde3LytQtRjuKWB0D7Qz9q51ivulEktTfwy4,2361
|
|
636
634
|
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=LTzLPzEwSsDOtV-1fNiJDJP38UMOIMZ08ugdti68Ax4,25132
|
|
637
635
|
ansys/systemcoupling/core/charts/chart_datatypes.py,sha256=ml5uWQdC6zNpQzks-wjSV0GsEd8npU20Dc0qRibfxVM,6711
|
|
638
|
-
ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=
|
|
636
|
+
ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=5qZ-Qvjp0iWaUpoj8RpYUAs1dRsIyNPYB3X4m06pX3Q,11979
|
|
639
637
|
ansys/systemcoupling/core/charts/live_csv_datasource.py,sha256=b5VkE8fMSv-C6LQk0OUTc6FtbJ2tmHSkw1Imo2E6lyg,3385
|
|
640
638
|
ansys/systemcoupling/core/charts/message_dispatcher.py,sha256=Z5SQ7huo7-naQ37NzCSBH-cEnwZlUUyK2p_7jxWRnIw,2940
|
|
641
|
-
ansys/systemcoupling/core/charts/plot_functions.py,sha256=
|
|
639
|
+
ansys/systemcoupling/core/charts/plot_functions.py,sha256=FGKWCQlIj-GCRGMZO41t4-GC3pYczHnckZCxe9iDj3M,3542
|
|
642
640
|
ansys/systemcoupling/core/charts/plotdefinition_manager.py,sha256=_rEc5FyqzgZXBAYM-ztbHT61IG8VJlHFu9-7gF5TLuE,12446
|
|
643
|
-
ansys/systemcoupling/core/charts/plotter.py,sha256=
|
|
644
|
-
ansys/systemcoupling/core/client/grpc_client.py,sha256=
|
|
645
|
-
ansys/systemcoupling/core/client/syc_container.py,sha256=
|
|
646
|
-
ansys/systemcoupling/core/client/syc_process.py,sha256=
|
|
641
|
+
ansys/systemcoupling/core/charts/plotter.py,sha256=IV_znv1ym29viJDqOFg9UMIUHFXEG8maz9I1oSkIrbI,11898
|
|
642
|
+
ansys/systemcoupling/core/client/grpc_client.py,sha256=TC7OFqmHsVwiBXTAy3hG6UCD4zjtPZgeqNStve_tWw4,15583
|
|
643
|
+
ansys/systemcoupling/core/client/syc_container.py,sha256=eH3j8Htidh9FFMowpzbqlp5XQRcj8ybLxrQsU392clU,3619
|
|
644
|
+
ansys/systemcoupling/core/client/syc_process.py,sha256=sGFNmy1GvrSzy8k72osIfJziM87GOGkDU4_mij2Zapo,5899
|
|
647
645
|
ansys/systemcoupling/core/client/variant.py,sha256=Py_0bfqcmqfHqqrsfkp7Q-K0NFf4lAZQuZKCzrNKGZ0,3064
|
|
648
646
|
ansys/systemcoupling/core/client/services/command_query.py,sha256=L2hM-dahtvwVWezh2Tnj0pkDJeiATBOnREG39pD27BY,1766
|
|
649
647
|
ansys/systemcoupling/core/client/services/handle_rpc_error.py,sha256=3nUNJ6enE1REnkCKH7dvkEPF01JLrxZw9Q0F_cpI0iI,2641
|
|
@@ -654,20 +652,21 @@ ansys/systemcoupling/core/examples/__init__.py,sha256=bv0y1__s_vWioAMICbRbHIX9CS
|
|
|
654
652
|
ansys/systemcoupling/core/examples/downloads.py,sha256=L1M3M4bCv-POCoCZ4w18mAgz-JWBvVmXCg0y_87ngW8,3708
|
|
655
653
|
ansys/systemcoupling/core/native_api/__init__.py,sha256=AFAIdTi-UVI_UZXtAZ2tZUw-zglXBb4aPCBTokuNQn8,1188
|
|
656
654
|
ansys/systemcoupling/core/native_api/command_metadata.py,sha256=1rgid0cCwMNQf9pBXCluakw0ZObnh5R7Cd9byPK57-4,1734
|
|
657
|
-
ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=
|
|
655
|
+
ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=v-Xu4_ieAtOOEsSPX3Y1K3zZBKUWhbXliDZ_ku0h7T8,4901
|
|
658
656
|
ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=zvWrdZxx15ezJ_b4OZ0DVBytEaT_0Nrr6Si66mrpjjs,1462
|
|
659
657
|
ansys/systemcoupling/core/native_api/native_api.py,sha256=3uu6iRunf5ZrTCnNeERFsYepo5jPInhvqa-1NB_1psE,7116
|
|
660
|
-
ansys/systemcoupling/core/native_api/object_path.py,sha256=
|
|
658
|
+
ansys/systemcoupling/core/native_api/object_path.py,sha256=gz0ybgMQQMSliGnvtybEWXc1j5Bg4T01gI3Tl0Wntfw,4216
|
|
661
659
|
ansys/systemcoupling/core/participant/manager.py,sha256=xnRx_oG82mnk9trR1jqlb5CXtHwfbdwVt8jmcs4vKVQ,9685
|
|
662
660
|
ansys/systemcoupling/core/participant/mapdl.py,sha256=j6AWvFqUAbzBJMbDWILFxS6XVLP7NVYwDjeKSBbDA_s,11166
|
|
663
661
|
ansys/systemcoupling/core/participant/protocol.py,sha256=7c4_GejvtfsCRizTZgX4pDOp0VlEx9CVPCFxDbNvgIM,2479
|
|
664
|
-
ansys/systemcoupling/core/util/
|
|
662
|
+
ansys/systemcoupling/core/util/assertion.py,sha256=BAG7q-By8OjuWTDSbV8tgZaMdxs9TMxpEDxmH1UEIlc,1908
|
|
663
|
+
ansys/systemcoupling/core/util/file_transfer.py,sha256=WMUg3qGGRASSmUq1v2gPAaKSdJ38jCtw3g48cVgO9ME,6674
|
|
665
664
|
ansys/systemcoupling/core/util/logging.py,sha256=BMhDGQWucYjSNGrS3hYIiNxmvmj5chayo1djZcMwiM8,5059
|
|
666
665
|
ansys/systemcoupling/core/util/name_util.py,sha256=5p3dFIkPJheSX4r4hAcUaGrpmzGg385CruWo--sCCbc,1470
|
|
667
666
|
ansys/systemcoupling/core/util/pathstr.py,sha256=UVewX1DMeWpHgSAZDXX_p1TNs9O-fKDGT7G_38aC6JI,1941
|
|
668
|
-
ansys/systemcoupling/core/util/state_keys.py,sha256=
|
|
669
|
-
ansys/systemcoupling/core/util/yaml_helper.py,sha256=
|
|
670
|
-
ansys_systemcoupling_core-0.
|
|
671
|
-
ansys_systemcoupling_core-0.
|
|
672
|
-
ansys_systemcoupling_core-0.
|
|
673
|
-
ansys_systemcoupling_core-0.
|
|
667
|
+
ansys/systemcoupling/core/util/state_keys.py,sha256=d9TYahJFvafHfH900S4ELouK41hjKIBnRqunPZMzzSc,4998
|
|
668
|
+
ansys/systemcoupling/core/util/yaml_helper.py,sha256=sT9ztbKMak7rRYoHoqFyNQCsKOnd10rk7EdVNmnTJjE,2978
|
|
669
|
+
ansys_systemcoupling_core-0.10.0.dist-info/licenses/LICENSE,sha256=EYDaskLuQxdNNOubsr9Xmgf_0bebDOEcd1ewKBOLCnQ,1098
|
|
670
|
+
ansys_systemcoupling_core-0.10.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
671
|
+
ansys_systemcoupling_core-0.10.0.dist-info/METADATA,sha256=hPh2CnqnkA5kLuEBrr1EnMyyyilZ0UWSmqEy3OJs9Eg,11910
|
|
672
|
+
ansys_systemcoupling_core-0.10.0.dist-info/RECORD,,
|