ansys-systemcoupling-core 0.9.1__py3-none-any.whl → 0.10.1__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_participant.py +80 -0
- ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +13 -0
- ansys/systemcoupling/core/adaptor/api_25_2/abort.py +39 -0
- ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +46 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +190 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +61 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +32 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +77 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +42 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +41 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +177 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +40 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
- ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +333 -0
- ansys/systemcoupling/core/adaptor/api_25_2/apip.py +33 -0
- ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +44 -0
- ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +74 -0
- ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +46 -0
- ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +40 -0
- ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +56 -0
- ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +62 -0
- ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +18 -0
- ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +41 -0
- ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +42 -0
- ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +23 -0
- ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +272 -0
- ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +28 -0
- ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +195 -0
- ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +30 -0
- ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +42 -0
- ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +96 -0
- ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +266 -0
- ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +24 -0
- ansys/systemcoupling/core/adaptor/api_25_2/expression.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +36 -0
- ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +46 -0
- ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +24 -0
- ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +77 -0
- ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +164 -0
- ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +53 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +29 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +34 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +29 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +32 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +25 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +52 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +13 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +32 -0
- ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +43 -0
- ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +155 -0
- ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +36 -0
- ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +36 -0
- ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +27 -0
- ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +25 -0
- ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +114 -0
- ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +39 -0
- ansys/systemcoupling/core/adaptor/api_25_2/library.py +37 -0
- ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +100 -0
- ansys/systemcoupling/core/adaptor/api_25_2/map.py +19 -0
- ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +273 -0
- ansys/systemcoupling/core/adaptor/api_25_2/open.py +107 -0
- ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +56 -0
- ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +37 -0
- ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +134 -0
- ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +60 -0
- ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +148 -0
- ansys/systemcoupling/core/adaptor/api_25_2/properties.py +36 -0
- ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +46 -0
- ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_25_2/region.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +14 -0
- ansys/systemcoupling/core/adaptor/api_25_2/results.py +89 -0
- ansys/systemcoupling/core/adaptor/api_25_2/save.py +53 -0
- ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +54 -0
- ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +243 -0
- ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +75 -0
- ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +25 -0
- ansys/systemcoupling/core/adaptor/api_25_2/side.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +56 -0
- ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +127 -0
- ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +134 -0
- ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
- ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +157 -0
- ansys/systemcoupling/core/adaptor/api_25_2/step.py +57 -0
- ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +21 -0
- ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_25_2/type.py +39 -0
- ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +158 -0
- ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +43 -0
- ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +19 -0
- ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +61 -0
- ansys/systemcoupling/core/adaptor/api_25_2/variable.py +20 -0
- ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +231 -0
- ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +21 -0
- ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +46 -0
- ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +32 -0
- ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +4 -1
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py +3 -1
- 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/yaml_helper.py +5 -5
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.1.dist-info}/METADATA +16 -10
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.1.dist-info}/RECORD +129 -18
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.1.dist-info}/WHEEL +0 -0
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.1.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,
|
|
@@ -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.1.dist-info → ansys_systemcoupling_core-0.10.1.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.1
|
|
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.
|
|
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"
|
|
@@ -137,25 +138,30 @@ in this order:
|
|
|
137
138
|
|
|
138
139
|
* ``SYSC_ROOT``
|
|
139
140
|
* ``AWP_ROOT``
|
|
140
|
-
* ``
|
|
141
|
+
* ``AWP_ROOT252``
|
|
141
142
|
|
|
142
143
|
If a variable is set but does not refer to a valid installation, PySystemCoupling
|
|
143
144
|
fails at that point, rather than attempting to use the next variable.
|
|
144
145
|
|
|
145
|
-
In a standard user installation, the expectation is that only ``
|
|
146
|
+
In a standard user installation, the expectation is that only ``AWP_ROOT252`` is set.
|
|
146
147
|
|
|
147
148
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
148
149
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
|
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.1.dist-info → ansys_systemcoupling_core-0.10.1.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
|
|
@@ -514,24 +514,134 @@ ansys/systemcoupling/core/adaptor/api_25_1/variable.py,sha256=BJldfmMGuyO9riy6Lw
|
|
|
514
514
|
ansys/systemcoupling/core/adaptor/api_25_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
515
515
|
ansys/systemcoupling/core/adaptor/api_25_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
516
516
|
ansys/systemcoupling/core/adaptor/api_25_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
517
|
+
ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py,sha256=zbTC_i9XBHO7nMnw-Dqm83V_LbLJl7BlVYlzctZ8NOk,1374
|
|
518
|
+
ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
519
|
+
ansys/systemcoupling/core/adaptor/api_25_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
520
|
+
ansys/systemcoupling/core/adaptor/api_25_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
521
|
+
ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
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=dlac4YwLeB-w-oq1imO0prmgqODNU-1KxXlWWXqzTbc,8243
|
|
524
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
|
|
525
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py,sha256=vHmh6lKLoRo_8lZh5_bYJB-dUOi_DGs5cJItaaWw8Ms,724
|
|
526
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
|
|
527
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py,sha256=ORcZ4_Ge_IL02xZYVwSZtpDFYDtTaCLVJjZnxUF6JL4,2549
|
|
528
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
|
|
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
|
|
531
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
|
|
532
|
+
ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
|
|
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
|
|
535
|
+
ansys/systemcoupling/core/adaptor/api_25_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
|
|
536
|
+
ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
|
|
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
|
|
539
|
+
ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
540
|
+
ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
541
|
+
ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py,sha256=eZ1AMdk8YPIPS5GayPllYAdW9xrjasHtz3qYEOBtVU0,1592
|
|
542
|
+
ansys/systemcoupling/core/adaptor/api_25_2/case_root.py,sha256=7GfAdVlNwimuuiii9EWeemEXN3YpouckhFp3cw27_Jw,1378
|
|
543
|
+
ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
544
|
+
ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py,sha256=LhrmimlCstSX4GVjNgOR11Wbhe3PXydJdAKrBxknjNI,1180
|
|
545
|
+
ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
546
|
+
ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
547
|
+
ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
548
|
+
ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py,sha256=LqYHNWiHAOXln02g-FI4CzBVpvkPsos4F1eVVGUBvQ0,9139
|
|
549
|
+
ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py,sha256=JJZfKASeMZx19-8OAYTxR4PpY8jhl5hEoSt4iC_xa8M,1083
|
|
550
|
+
ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
|
|
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
|
|
553
|
+
ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
|
|
554
|
+
ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
|
|
555
|
+
ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py,sha256=BRIxFv8aF6NwZ6DGcpO0v8JYZru6LCQrbOuL8stfJ1Q,9796
|
|
556
|
+
ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py,sha256=lYYPEWRHb4ztgLKlm5iU9CoWR9js54PWoiuqgU-Zvz8,556
|
|
557
|
+
ansys/systemcoupling/core/adaptor/api_25_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
|
|
558
|
+
ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
|
|
559
|
+
ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
|
|
560
|
+
ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
|
|
561
|
+
ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
|
|
562
|
+
ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
|
|
563
|
+
ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
|
|
564
|
+
ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py,sha256=O1xQ5ADVR3y-S6NDI302MgRoVKpyckMqbJDgW6kUs48,5040
|
|
565
|
+
ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py,sha256=NHVAP384E1XX9H548vb6_c7t2E8tOHoAMWVqsU1B32A,1463
|
|
566
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
|
|
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
|
|
569
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
|
|
570
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py,sha256=8omhxsKf-QeZxY_lX5lBa9-o1ZELu6vCohiHQsDXIuM,729
|
|
571
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
|
|
572
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
|
|
573
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py,sha256=Q87bRy0PDB7OaTMy5GOu-DUQ27IX-n62kZ6NnYIpR4E,304
|
|
574
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
|
|
575
|
+
ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py,sha256=S4XWsDhtsDKs-nEJMEUgD4zxh76C4G_n3h2zfgSy9ds,1000
|
|
576
|
+
ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py,sha256=GKoUGq563wEntUqM-uqST_yd0xnoMXO5kTfPMlDDAXg,4903
|
|
577
|
+
ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
|
|
578
|
+
ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
|
|
579
|
+
ansys/systemcoupling/core/adaptor/api_25_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
|
|
580
|
+
ansys/systemcoupling/core/adaptor/api_25_2/instancing.py,sha256=J_TJ50x8eU6zcGnrNzMTGUgP5_y2KDqivoKRINEZwss,575
|
|
581
|
+
ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py,sha256=PxmBCSWlVR45wZKhmf_3xjJ8M0Z-TBtHMN194cmf9N4,3968
|
|
582
|
+
ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
|
|
583
|
+
ansys/systemcoupling/core/adaptor/api_25_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
|
|
584
|
+
ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
|
|
585
|
+
ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py,sha256=1s-mZXROuCMnUTex47s5reCfwl5QPIftIuSUt63Bgcc,3217
|
|
586
|
+
ansys/systemcoupling/core/adaptor/api_25_2/map.py,sha256=MHmHvyo_bUC67mj0U6-Zl_g24y1NilwEGKTBxhTYwtk,506
|
|
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
|
|
589
|
+
ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
|
|
590
|
+
ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
|
|
591
|
+
ansys/systemcoupling/core/adaptor/api_25_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
|
|
592
|
+
ansys/systemcoupling/core/adaptor/api_25_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
|
|
593
|
+
ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py,sha256=N-2cgILu8mOrvjwiVQvz84eBQzzX5rFV89UPYo3q2yI,1768
|
|
594
|
+
ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py,sha256=-frzpQ3NKxmA9gKgIFwPt2ZHbUuxFBSOuPX9xrWKKks,6760
|
|
595
|
+
ansys/systemcoupling/core/adaptor/api_25_2/properties.py,sha256=nhwhkbDvBsMkkBpSgd2_1kJPyPINA7YWJF-Yasu5Wp4,1036
|
|
596
|
+
ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
|
|
597
|
+
ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
|
|
598
|
+
ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
|
|
599
|
+
ansys/systemcoupling/core/adaptor/api_25_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
|
|
600
|
+
ansys/systemcoupling/core/adaptor/api_25_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
|
|
601
|
+
ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
|
|
602
|
+
ansys/systemcoupling/core/adaptor/api_25_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
|
|
603
|
+
ansys/systemcoupling/core/adaptor/api_25_2/save.py,sha256=UKX_8Mv5H0PP7rF_WuhaTAjoK8y3IdcB9HgAFAoVrSg,1789
|
|
604
|
+
ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
605
|
+
ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py,sha256=v6HPZmzIeZ8WcS8tnBpFiE5N5EyIXCHFLESXlOJX8TI,8413
|
|
606
|
+
ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py,sha256=qGa4acJb2LU3CqytIFrWKQ59aQLtCQnUCs1HbOR6lDc,1887
|
|
607
|
+
ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
608
|
+
ansys/systemcoupling/core/adaptor/api_25_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
609
|
+
ansys/systemcoupling/core/adaptor/api_25_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
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
|
|
613
|
+
ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
614
|
+
ansys/systemcoupling/core/adaptor/api_25_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
|
|
615
|
+
ansys/systemcoupling/core/adaptor/api_25_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
|
|
616
|
+
ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
|
|
617
|
+
ansys/systemcoupling/core/adaptor/api_25_2/type.py,sha256=fC5twjCM-g2J3Q2s0Fzq33-xy6MKIrHUluBTx41LmvQ,886
|
|
618
|
+
ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
|
|
619
|
+
ansys/systemcoupling/core/adaptor/api_25_2/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
|
|
620
|
+
ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py,sha256=j5RljODkriegdx9UYRbVlbWbSz4aVx4z-bmOnPPclCw,620
|
|
621
|
+
ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py,sha256=JoaRINNMXUaPlbh6WNk7cRim6vMD4pIQtJIyHGQW6S8,2109
|
|
622
|
+
ansys/systemcoupling/core/adaptor/api_25_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
|
|
623
|
+
ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
624
|
+
ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
625
|
+
ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py,sha256=3UzT6ZX9XASOjUBcDOkLLAYlE6vqO1BLms_LjjSyEs0,1278
|
|
626
|
+
ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py,sha256=mXpCjJoG2wFK5RriBgfRsCgqFqUDFNrjv5Z2VwhMU_M,882
|
|
517
627
|
ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=HFyhLn_Rw7mO23zGJsHq1XQ7Gnxh0ffHIXM5AxlGvqQ,4210
|
|
518
|
-
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256
|
|
519
|
-
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
|
|
520
630
|
ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=RIQlBtqnQEOlR8nXMfzNtdeNU3cIiciH-UW8StQoN8w,12828
|
|
521
631
|
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=J1EN5rI0kaGPupUwxXfe3XlYuBHUWQwkbNy9s8U--QQ,15938
|
|
522
632
|
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=JXKYT0CWwm4CIADSwJsZJ48qXfhNLhEQqzCqA5fpLHA,6072
|
|
523
633
|
ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py,sha256=pByFumJFde3LytQtRjuKWB0D7Qz9q51ivulEktTfwy4,2361
|
|
524
634
|
ansys/systemcoupling/core/adaptor/impl/types.py,sha256=LTzLPzEwSsDOtV-1fNiJDJP38UMOIMZ08ugdti68Ax4,25132
|
|
525
635
|
ansys/systemcoupling/core/charts/chart_datatypes.py,sha256=ml5uWQdC6zNpQzks-wjSV0GsEd8npU20Dc0qRibfxVM,6711
|
|
526
|
-
ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=
|
|
636
|
+
ansys/systemcoupling/core/charts/csv_chartdata.py,sha256=5qZ-Qvjp0iWaUpoj8RpYUAs1dRsIyNPYB3X4m06pX3Q,11979
|
|
527
637
|
ansys/systemcoupling/core/charts/live_csv_datasource.py,sha256=b5VkE8fMSv-C6LQk0OUTc6FtbJ2tmHSkw1Imo2E6lyg,3385
|
|
528
638
|
ansys/systemcoupling/core/charts/message_dispatcher.py,sha256=Z5SQ7huo7-naQ37NzCSBH-cEnwZlUUyK2p_7jxWRnIw,2940
|
|
529
|
-
ansys/systemcoupling/core/charts/plot_functions.py,sha256=
|
|
639
|
+
ansys/systemcoupling/core/charts/plot_functions.py,sha256=FGKWCQlIj-GCRGMZO41t4-GC3pYczHnckZCxe9iDj3M,3542
|
|
530
640
|
ansys/systemcoupling/core/charts/plotdefinition_manager.py,sha256=_rEc5FyqzgZXBAYM-ztbHT61IG8VJlHFu9-7gF5TLuE,12446
|
|
531
|
-
ansys/systemcoupling/core/charts/plotter.py,sha256=
|
|
532
|
-
ansys/systemcoupling/core/client/grpc_client.py,sha256=
|
|
533
|
-
ansys/systemcoupling/core/client/syc_container.py,sha256=
|
|
534
|
-
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
|
|
535
645
|
ansys/systemcoupling/core/client/variant.py,sha256=Py_0bfqcmqfHqqrsfkp7Q-K0NFf4lAZQuZKCzrNKGZ0,3064
|
|
536
646
|
ansys/systemcoupling/core/client/services/command_query.py,sha256=L2hM-dahtvwVWezh2Tnj0pkDJeiATBOnREG39pD27BY,1766
|
|
537
647
|
ansys/systemcoupling/core/client/services/handle_rpc_error.py,sha256=3nUNJ6enE1REnkCKH7dvkEPF01JLrxZw9Q0F_cpI0iI,2641
|
|
@@ -542,20 +652,21 @@ ansys/systemcoupling/core/examples/__init__.py,sha256=bv0y1__s_vWioAMICbRbHIX9CS
|
|
|
542
652
|
ansys/systemcoupling/core/examples/downloads.py,sha256=L1M3M4bCv-POCoCZ4w18mAgz-JWBvVmXCg0y_87ngW8,3708
|
|
543
653
|
ansys/systemcoupling/core/native_api/__init__.py,sha256=AFAIdTi-UVI_UZXtAZ2tZUw-zglXBb4aPCBTokuNQn8,1188
|
|
544
654
|
ansys/systemcoupling/core/native_api/command_metadata.py,sha256=1rgid0cCwMNQf9pBXCluakw0ZObnh5R7Cd9byPK57-4,1734
|
|
545
|
-
ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=
|
|
655
|
+
ansys/systemcoupling/core/native_api/datamodel_metadata.py,sha256=v-Xu4_ieAtOOEsSPX3Y1K3zZBKUWhbXliDZ_ku0h7T8,4901
|
|
546
656
|
ansys/systemcoupling/core/native_api/meta_wrapper.py,sha256=zvWrdZxx15ezJ_b4OZ0DVBytEaT_0Nrr6Si66mrpjjs,1462
|
|
547
657
|
ansys/systemcoupling/core/native_api/native_api.py,sha256=3uu6iRunf5ZrTCnNeERFsYepo5jPInhvqa-1NB_1psE,7116
|
|
548
|
-
ansys/systemcoupling/core/native_api/object_path.py,sha256=
|
|
658
|
+
ansys/systemcoupling/core/native_api/object_path.py,sha256=gz0ybgMQQMSliGnvtybEWXc1j5Bg4T01gI3Tl0Wntfw,4216
|
|
549
659
|
ansys/systemcoupling/core/participant/manager.py,sha256=xnRx_oG82mnk9trR1jqlb5CXtHwfbdwVt8jmcs4vKVQ,9685
|
|
550
660
|
ansys/systemcoupling/core/participant/mapdl.py,sha256=j6AWvFqUAbzBJMbDWILFxS6XVLP7NVYwDjeKSBbDA_s,11166
|
|
551
661
|
ansys/systemcoupling/core/participant/protocol.py,sha256=7c4_GejvtfsCRizTZgX4pDOp0VlEx9CVPCFxDbNvgIM,2479
|
|
552
|
-
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
|
|
553
664
|
ansys/systemcoupling/core/util/logging.py,sha256=BMhDGQWucYjSNGrS3hYIiNxmvmj5chayo1djZcMwiM8,5059
|
|
554
665
|
ansys/systemcoupling/core/util/name_util.py,sha256=5p3dFIkPJheSX4r4hAcUaGrpmzGg385CruWo--sCCbc,1470
|
|
555
666
|
ansys/systemcoupling/core/util/pathstr.py,sha256=UVewX1DMeWpHgSAZDXX_p1TNs9O-fKDGT7G_38aC6JI,1941
|
|
556
667
|
ansys/systemcoupling/core/util/state_keys.py,sha256=d9TYahJFvafHfH900S4ELouK41hjKIBnRqunPZMzzSc,4998
|
|
557
|
-
ansys/systemcoupling/core/util/yaml_helper.py,sha256=
|
|
558
|
-
ansys_systemcoupling_core-0.
|
|
559
|
-
ansys_systemcoupling_core-0.
|
|
560
|
-
ansys_systemcoupling_core-0.
|
|
561
|
-
ansys_systemcoupling_core-0.
|
|
668
|
+
ansys/systemcoupling/core/util/yaml_helper.py,sha256=sT9ztbKMak7rRYoHoqFyNQCsKOnd10rk7EdVNmnTJjE,2978
|
|
669
|
+
ansys_systemcoupling_core-0.10.1.dist-info/licenses/LICENSE,sha256=EYDaskLuQxdNNOubsr9Xmgf_0bebDOEcd1ewKBOLCnQ,1098
|
|
670
|
+
ansys_systemcoupling_core-0.10.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
671
|
+
ansys_systemcoupling_core-0.10.1.dist-info/METADATA,sha256=ARFQXDLU2Vk5RNgN58LQ1grQWYhx6R_FeNhcgfDggfg,11910
|
|
672
|
+
ansys_systemcoupling_core-0.10.1.dist-info/RECORD,,
|
{ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|