ansys-systemcoupling-core 0.9.1__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_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.0.dist-info}/METADATA +14 -8
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/RECORD +129 -18
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/WHEEL +0 -0
- {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -72,7 +72,7 @@ def launch(
|
|
|
72
72
|
(The forms ``"24.1"`` and ``"24_1"`` are also acceptable.)
|
|
73
73
|
The version will be sought in the standard installation location. The
|
|
74
74
|
default is ``None``, which is equivalent to specifying
|
|
75
|
-
``"
|
|
75
|
+
``"252"`` ("2025 R2" release), unless either of the environment
|
|
76
76
|
variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. It is considered
|
|
77
77
|
to be an error if either these is set *and* ``version`` is provided.
|
|
78
78
|
start_output: bool, optional
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class _add_participant(Command):
|
|
9
|
+
"""
|
|
10
|
+
For internal use only.
|
|
11
|
+
|
|
12
|
+
Parameters
|
|
13
|
+
----------
|
|
14
|
+
participant_type : str, optional
|
|
15
|
+
...
|
|
16
|
+
input_file : str, optional
|
|
17
|
+
...
|
|
18
|
+
executable : str, optional
|
|
19
|
+
...
|
|
20
|
+
additional_arguments : str, optional
|
|
21
|
+
...
|
|
22
|
+
working_directory : str, optional
|
|
23
|
+
...
|
|
24
|
+
python_script : str, optional
|
|
25
|
+
...
|
|
26
|
+
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
syc_name = "AddParticipant"
|
|
30
|
+
|
|
31
|
+
argument_names = [
|
|
32
|
+
"participant_type",
|
|
33
|
+
"input_file",
|
|
34
|
+
"executable",
|
|
35
|
+
"additional_arguments",
|
|
36
|
+
"working_directory",
|
|
37
|
+
"python_script",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
class participant_type(String):
|
|
41
|
+
"""
|
|
42
|
+
...
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
syc_name = "ParticipantType"
|
|
46
|
+
|
|
47
|
+
class input_file(String):
|
|
48
|
+
"""
|
|
49
|
+
...
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
syc_name = "InputFile"
|
|
53
|
+
|
|
54
|
+
class executable(String):
|
|
55
|
+
"""
|
|
56
|
+
...
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
syc_name = "Executable"
|
|
60
|
+
|
|
61
|
+
class additional_arguments(String):
|
|
62
|
+
"""
|
|
63
|
+
...
|
|
64
|
+
"""
|
|
65
|
+
|
|
66
|
+
syc_name = "AdditionalArguments"
|
|
67
|
+
|
|
68
|
+
class working_directory(String):
|
|
69
|
+
"""
|
|
70
|
+
...
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
syc_name = "WorkingDirectory"
|
|
74
|
+
|
|
75
|
+
class python_script(String):
|
|
76
|
+
"""
|
|
77
|
+
...
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
syc_name = "PythonScript"
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class abort(InjectedCommand):
|
|
9
|
+
"""
|
|
10
|
+
Aborts a solve in progress.
|
|
11
|
+
|
|
12
|
+
See also ``interrupt``. In contrast to an interrupted solve,
|
|
13
|
+
an aborted solve cannot be resumed.
|
|
14
|
+
|
|
15
|
+
Parameters
|
|
16
|
+
----------
|
|
17
|
+
reason_msg : str, optional
|
|
18
|
+
Text to describe the reason for the abort.
|
|
19
|
+
|
|
20
|
+
This might be used for such purposes as providing
|
|
21
|
+
additional annotation in transcript output.
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
syc_name = "abort"
|
|
26
|
+
|
|
27
|
+
cmd_name = "abort"
|
|
28
|
+
|
|
29
|
+
argument_names = ["reason_msg"]
|
|
30
|
+
|
|
31
|
+
class reason_msg(String):
|
|
32
|
+
"""
|
|
33
|
+
Text to describe the reason for the abort.
|
|
34
|
+
|
|
35
|
+
This might be used for such purposes as providing
|
|
36
|
+
additional annotation in transcript output.
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
syc_name = "reason_msg"
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class activate_hidden(Container):
|
|
9
|
+
"""
|
|
10
|
+
Contains settings to control exposure of hidden features.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
syc_name = "ActivateHidden"
|
|
14
|
+
|
|
15
|
+
property_names_types = [
|
|
16
|
+
("beta_features", "BetaFeatures", "bool"),
|
|
17
|
+
("alpha_features", "AlphaFeatures", "bool"),
|
|
18
|
+
("lenient_validation", "LenientValidation", "bool"),
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
@property
|
|
22
|
+
def beta_features(self) -> bool:
|
|
23
|
+
"""Turn on exposure of Beta features."""
|
|
24
|
+
return self.get_property_state("beta_features")
|
|
25
|
+
|
|
26
|
+
@beta_features.setter
|
|
27
|
+
def beta_features(self, value: bool):
|
|
28
|
+
self.set_property_state("beta_features", value)
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def alpha_features(self) -> bool:
|
|
32
|
+
"""Turn on exposure of Alpha features. (Beta features must be turned on first)"""
|
|
33
|
+
return self.get_property_state("alpha_features")
|
|
34
|
+
|
|
35
|
+
@alpha_features.setter
|
|
36
|
+
def alpha_features(self, value: bool):
|
|
37
|
+
self.set_property_state("alpha_features", value)
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def lenient_validation(self) -> bool:
|
|
41
|
+
"""Allow a case with zero participants and zero coupling interfaces to be set up."""
|
|
42
|
+
return self.get_property_state("lenient_validation")
|
|
43
|
+
|
|
44
|
+
@lenient_validation.setter
|
|
45
|
+
def lenient_validation(self, value: bool):
|
|
46
|
+
self.set_property_state("lenient_validation", value)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_aerodamping_data_transfers(Command):
|
|
9
|
+
"""
|
|
10
|
+
Adds data transfer for each specified mode shape.
|
|
11
|
+
|
|
12
|
+
Returns the name of the Data Transfers created.
|
|
13
|
+
|
|
14
|
+
Parameters
|
|
15
|
+
----------
|
|
16
|
+
interface : str
|
|
17
|
+
String indicating the name of the interface on which the data transfer
|
|
18
|
+
is to be created.
|
|
19
|
+
mode_shapes : List, optional
|
|
20
|
+
List of mode shapes to transfer. If not provided, a
|
|
21
|
+
data transfer is created for each available modeshape.
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
syc_name = "AddAerodampingDataTransfers"
|
|
26
|
+
|
|
27
|
+
argument_names = ["interface", "mode_shapes"]
|
|
28
|
+
|
|
29
|
+
class interface(String):
|
|
30
|
+
"""
|
|
31
|
+
String indicating the name of the interface on which the data transfer
|
|
32
|
+
is to be created.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
syc_name = "Interface"
|
|
36
|
+
|
|
37
|
+
class mode_shapes(StringList):
|
|
38
|
+
"""
|
|
39
|
+
List of mode shapes to transfer. If not provided, a
|
|
40
|
+
data transfer is created for each available modeshape.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
syc_name = "ModeShapes"
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_data_transfer(Command):
|
|
9
|
+
"""
|
|
10
|
+
Adds data transfer based on arguments that specify the interface, target
|
|
11
|
+
side, and variables to be associated with each side of the interface.
|
|
12
|
+
The command requires that you specify variables using their names, as
|
|
13
|
+
described below in Essential Keyword Arguments. Either a variable-based or
|
|
14
|
+
expression-based data transfer may be created with this command based on
|
|
15
|
+
the Optional Keyword Arguments. If a variable-based data transfer argument
|
|
16
|
+
is given, then no expression-based data transfer arguments can be used. If
|
|
17
|
+
an expression-based data transfer argument is given, then no variable-based
|
|
18
|
+
data transfer arguments can be used.
|
|
19
|
+
|
|
20
|
+
Cannot be run after participants have been started.
|
|
21
|
+
|
|
22
|
+
Returns the name of the Data Transfer created.
|
|
23
|
+
|
|
24
|
+
Parameters
|
|
25
|
+
----------
|
|
26
|
+
interface : str
|
|
27
|
+
String indicating the name of the interface on which the data transfer
|
|
28
|
+
is to be created.
|
|
29
|
+
target_side : str
|
|
30
|
+
String indicating the side of the interface to receive the data
|
|
31
|
+
transfer variable. Possible values are \"One\" or \"Two\".
|
|
32
|
+
source_variable : str, optional
|
|
33
|
+
String specifying the name of the variable on the source side of
|
|
34
|
+
the data transfer. Used when creating a variable-based data transfer.
|
|
35
|
+
Must be combined with ``target_variable``.
|
|
36
|
+
target_variable : str, optional
|
|
37
|
+
String specifying the name of the variable on the target side of
|
|
38
|
+
the data transfer. Must be combined with either ``source_variable`` (when
|
|
39
|
+
creating a variable-based data transfer) or with ``value_{x|y|z}``
|
|
40
|
+
(when creating an expression-based data transfer).
|
|
41
|
+
value : str, optional
|
|
42
|
+
String specifying the expression to use on the source side of the data
|
|
43
|
+
transfer. Used when creating an expression-based data transfer. If the
|
|
44
|
+
``target_variable`` is a vector, a vector-valued expression must be provided.
|
|
45
|
+
Alternatively, ``value_x``, ``value_y``, ``value_z`` may be used to specify the
|
|
46
|
+
individual components of the vector expression.
|
|
47
|
+
value_x : str, optional
|
|
48
|
+
String specifying the X component of the expression to use on the
|
|
49
|
+
source side of the data transfer. This may optionally be used when creating
|
|
50
|
+
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
51
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_y`` and
|
|
52
|
+
``value_z`` are also required if ``value_x`` is used.
|
|
53
|
+
value_y : str, optional
|
|
54
|
+
String specifying the Y component of the expression to use on the
|
|
55
|
+
source side of the data transfer. This may optionally be used when creating
|
|
56
|
+
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
57
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_x`` and
|
|
58
|
+
``value_z`` are also required if ``value_y`` is used.
|
|
59
|
+
value_z : str, optional
|
|
60
|
+
String specifying the Z component of the expression to use on the
|
|
61
|
+
source side of the data transfer. This may optionally be used when creating
|
|
62
|
+
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
63
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_x`` and
|
|
64
|
+
``value_y`` are also required if ``value_z`` is used.
|
|
65
|
+
side_one_variable : str, optional
|
|
66
|
+
String specifying the name of the variable associated with side1
|
|
67
|
+
of the interface. Must be combined with ``side_two_variable``. Used only
|
|
68
|
+
when creating variable-based data transfers. Consider using
|
|
69
|
+
``source_variable``/``target_variable`` parameters instead.
|
|
70
|
+
side_two_variable : str, optional
|
|
71
|
+
String specifying the name of the variable associated with side2
|
|
72
|
+
of the interface. Must be combined with ``side_two_variable``. Used only
|
|
73
|
+
when creating variable-based data transfers. Consider using
|
|
74
|
+
``source_variable``/``target_variable`` parameters instead.
|
|
75
|
+
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
syc_name = "AddDataTransfer"
|
|
79
|
+
|
|
80
|
+
argument_names = [
|
|
81
|
+
"interface",
|
|
82
|
+
"target_side",
|
|
83
|
+
"source_variable",
|
|
84
|
+
"target_variable",
|
|
85
|
+
"value",
|
|
86
|
+
"value_x",
|
|
87
|
+
"value_y",
|
|
88
|
+
"value_z",
|
|
89
|
+
"side_one_variable",
|
|
90
|
+
"side_two_variable",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
class interface(String):
|
|
94
|
+
"""
|
|
95
|
+
String indicating the name of the interface on which the data transfer
|
|
96
|
+
is to be created.
|
|
97
|
+
"""
|
|
98
|
+
|
|
99
|
+
syc_name = "Interface"
|
|
100
|
+
|
|
101
|
+
class target_side(String):
|
|
102
|
+
"""
|
|
103
|
+
String indicating the side of the interface to receive the data
|
|
104
|
+
transfer variable. Possible values are \"One\" or \"Two\".
|
|
105
|
+
"""
|
|
106
|
+
|
|
107
|
+
syc_name = "TargetSide"
|
|
108
|
+
|
|
109
|
+
class source_variable(String):
|
|
110
|
+
"""
|
|
111
|
+
String specifying the name of the variable on the source side of
|
|
112
|
+
the data transfer. Used when creating a variable-based data transfer.
|
|
113
|
+
Must be combined with ``target_variable``.
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
syc_name = "SourceVariable"
|
|
117
|
+
|
|
118
|
+
class target_variable(String):
|
|
119
|
+
"""
|
|
120
|
+
String specifying the name of the variable on the target side of
|
|
121
|
+
the data transfer. Must be combined with either ``source_variable`` (when
|
|
122
|
+
creating a variable-based data transfer) or with ``value_{x|y|z}``
|
|
123
|
+
(when creating an expression-based data transfer).
|
|
124
|
+
"""
|
|
125
|
+
|
|
126
|
+
syc_name = "TargetVariable"
|
|
127
|
+
|
|
128
|
+
class value(String):
|
|
129
|
+
"""
|
|
130
|
+
String specifying the expression to use on the source side of the data
|
|
131
|
+
transfer. Used when creating an expression-based data transfer. If the
|
|
132
|
+
``target_variable`` is a vector, a vector-valued expression must be provided.
|
|
133
|
+
Alternatively, ``value_x``, ``value_y``, ``value_z`` may be used to specify the
|
|
134
|
+
individual components of the vector expression.
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
syc_name = "Value"
|
|
138
|
+
|
|
139
|
+
class value_x(String):
|
|
140
|
+
"""
|
|
141
|
+
String specifying the X component of the expression to use on the
|
|
142
|
+
source side of the data transfer. This may optionally be used when creating
|
|
143
|
+
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
144
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_y`` and
|
|
145
|
+
``value_z`` are also required if ``value_x`` is used.
|
|
146
|
+
"""
|
|
147
|
+
|
|
148
|
+
syc_name = "ValueX"
|
|
149
|
+
|
|
150
|
+
class value_y(String):
|
|
151
|
+
"""
|
|
152
|
+
String specifying the Y component of the expression to use on the
|
|
153
|
+
source side of the data transfer. This may optionally be used when creating
|
|
154
|
+
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
155
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_x`` and
|
|
156
|
+
``value_z`` are also required if ``value_y`` is used.
|
|
157
|
+
"""
|
|
158
|
+
|
|
159
|
+
syc_name = "ValueY"
|
|
160
|
+
|
|
161
|
+
class value_z(String):
|
|
162
|
+
"""
|
|
163
|
+
String specifying the Z component of the expression to use on the
|
|
164
|
+
source side of the data transfer. This may optionally be used when creating
|
|
165
|
+
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
166
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_x`` and
|
|
167
|
+
``value_y`` are also required if ``value_z`` is used.
|
|
168
|
+
"""
|
|
169
|
+
|
|
170
|
+
syc_name = "ValueZ"
|
|
171
|
+
|
|
172
|
+
class side_one_variable(String):
|
|
173
|
+
"""
|
|
174
|
+
String specifying the name of the variable associated with side1
|
|
175
|
+
of the interface. Must be combined with ``side_two_variable``. Used only
|
|
176
|
+
when creating variable-based data transfers. Consider using
|
|
177
|
+
``source_variable``/``target_variable`` parameters instead.
|
|
178
|
+
"""
|
|
179
|
+
|
|
180
|
+
syc_name = "SideOneVariable"
|
|
181
|
+
|
|
182
|
+
class side_two_variable(String):
|
|
183
|
+
"""
|
|
184
|
+
String specifying the name of the variable associated with side2
|
|
185
|
+
of the interface. Must be combined with ``side_two_variable``. Used only
|
|
186
|
+
when creating variable-based data transfers. Consider using
|
|
187
|
+
``source_variable``/``target_variable`` parameters instead.
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
syc_name = "SideTwoVariable"
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_expression_function(Command):
|
|
9
|
+
"""
|
|
10
|
+
Creates an expression function object in the data model that makes
|
|
11
|
+
available an external Python function for use in expressions.
|
|
12
|
+
|
|
13
|
+
The parameters specified should correspond to a module and function
|
|
14
|
+
that exists and can successfully be loaded when the application
|
|
15
|
+
starts. Otherwise, the data model object will be created but there
|
|
16
|
+
will be validation errors and the function will not be available for
|
|
17
|
+
use.
|
|
18
|
+
|
|
19
|
+
Parameters
|
|
20
|
+
----------
|
|
21
|
+
module : str
|
|
22
|
+
The name of the Python module (in the 'Modules' sub-directory of
|
|
23
|
+
the working directory) from which the function is to be obtained.
|
|
24
|
+
function : str
|
|
25
|
+
The name of the function in the module. If no ``function_name`` is
|
|
26
|
+
specified, this will also be the name by which the function should
|
|
27
|
+
be referenced when used in an expression.
|
|
28
|
+
function_name : str, optional
|
|
29
|
+
Optionally specify a different name from ``function`` which should be
|
|
30
|
+
the name used to reference the function in an expression.
|
|
31
|
+
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
syc_name = "AddExpressionFunction"
|
|
35
|
+
|
|
36
|
+
argument_names = ["module", "function", "function_name"]
|
|
37
|
+
|
|
38
|
+
class module(String):
|
|
39
|
+
"""
|
|
40
|
+
The name of the Python module (in the 'Modules' sub-directory of
|
|
41
|
+
the working directory) from which the function is to be obtained.
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
syc_name = "Module"
|
|
45
|
+
|
|
46
|
+
class function(String):
|
|
47
|
+
"""
|
|
48
|
+
The name of the function in the module. If no ``function_name`` is
|
|
49
|
+
specified, this will also be the name by which the function should
|
|
50
|
+
be referenced when used in an expression.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
syc_name = "Function"
|
|
54
|
+
|
|
55
|
+
class function_name(String):
|
|
56
|
+
"""
|
|
57
|
+
Optionally specify a different name from ``function`` which should be
|
|
58
|
+
the name used to reference the function in an expression.
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
syc_name = "FunctionName"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_flow_boundary_data_transfers(Command):
|
|
9
|
+
"""
|
|
10
|
+
Adds group of data transfers for flow boundary coupling.
|
|
11
|
+
|
|
12
|
+
Returns the list of the data transfers created.
|
|
13
|
+
|
|
14
|
+
Parameters
|
|
15
|
+
----------
|
|
16
|
+
interface : str
|
|
17
|
+
String indicating the name of the interface on which the data transfer
|
|
18
|
+
is to be created.
|
|
19
|
+
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
syc_name = "AddFlowBoundaryDataTransfers"
|
|
23
|
+
|
|
24
|
+
argument_names = ["interface"]
|
|
25
|
+
|
|
26
|
+
class interface(String):
|
|
27
|
+
"""
|
|
28
|
+
String indicating the name of the interface on which the data transfer
|
|
29
|
+
is to be created.
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
syc_name = "Interface"
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_fsi_data_transfers(Command):
|
|
9
|
+
"""
|
|
10
|
+
Adds group of data transfers for FSI physics.
|
|
11
|
+
|
|
12
|
+
Returns the list of the data transfers created.
|
|
13
|
+
|
|
14
|
+
Parameters
|
|
15
|
+
----------
|
|
16
|
+
interface : str
|
|
17
|
+
String indicating the name of the interface on which the data transfer
|
|
18
|
+
is to be created.
|
|
19
|
+
use_force_density : bool, optional
|
|
20
|
+
Boolean indicating whether to prefer force density variable over force.
|
|
21
|
+
Default value is False.
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
syc_name = "AddFSIDataTransfers"
|
|
26
|
+
|
|
27
|
+
argument_names = ["interface", "use_force_density"]
|
|
28
|
+
|
|
29
|
+
class interface(String):
|
|
30
|
+
"""
|
|
31
|
+
String indicating the name of the interface on which the data transfer
|
|
32
|
+
is to be created.
|
|
33
|
+
"""
|
|
34
|
+
|
|
35
|
+
syc_name = "Interface"
|
|
36
|
+
|
|
37
|
+
class use_force_density(Boolean):
|
|
38
|
+
"""
|
|
39
|
+
Boolean indicating whether to prefer force density variable over force.
|
|
40
|
+
Default value is False.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
syc_name = "UseForceDensity"
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_interface(Command):
|
|
9
|
+
"""
|
|
10
|
+
Adds an interface based on the participant and region names specified
|
|
11
|
+
as arguments for each side of the interface. This command requires that
|
|
12
|
+
you specify participants using their names as described below in
|
|
13
|
+
Essential Keyword Arguments. Non-FMU participants can provide a list
|
|
14
|
+
of regions as described below in Optional Keyword Arguments. For FMU
|
|
15
|
+
interfaces, specifying the regions are not allowed.
|
|
16
|
+
|
|
17
|
+
Cannot be run after participants have been started.
|
|
18
|
+
|
|
19
|
+
Returns the name of the Interface created.
|
|
20
|
+
|
|
21
|
+
Parameters
|
|
22
|
+
----------
|
|
23
|
+
side_one_participant : str
|
|
24
|
+
String indicating the name of the participant to be associated with
|
|
25
|
+
side \"One\" of the interface.
|
|
26
|
+
side_two_participant : str
|
|
27
|
+
String indicating the name of the participant to be associated with
|
|
28
|
+
side \"Two"\ of the interface.
|
|
29
|
+
side_one_regions : List, optional
|
|
30
|
+
List specifying the name(s) of region(s) to be added to side One of
|
|
31
|
+
the interface. Must be provided if ``side_one_participant`` is not an FMU.
|
|
32
|
+
side_two_regions : List, optional
|
|
33
|
+
List specifying the name(s) of region(s) to be added to side Two of
|
|
34
|
+
the interface. Must be provided if ``side_one_participant`` is not an FMU.
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
syc_name = "AddInterface"
|
|
39
|
+
|
|
40
|
+
argument_names = [
|
|
41
|
+
"side_one_participant",
|
|
42
|
+
"side_two_participant",
|
|
43
|
+
"side_one_regions",
|
|
44
|
+
"side_two_regions",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
class side_one_participant(String):
|
|
48
|
+
"""
|
|
49
|
+
String indicating the name of the participant to be associated with
|
|
50
|
+
side \"One\" of the interface.
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
syc_name = "SideOneParticipant"
|
|
54
|
+
|
|
55
|
+
class side_two_participant(String):
|
|
56
|
+
"""
|
|
57
|
+
String indicating the name of the participant to be associated with
|
|
58
|
+
side \"Two"\ of the interface.
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
syc_name = "SideTwoParticipant"
|
|
62
|
+
|
|
63
|
+
class side_one_regions(StringList):
|
|
64
|
+
"""
|
|
65
|
+
List specifying the name(s) of region(s) to be added to side One of
|
|
66
|
+
the interface. Must be provided if ``side_one_participant`` is not an FMU.
|
|
67
|
+
"""
|
|
68
|
+
|
|
69
|
+
syc_name = "SideOneRegions"
|
|
70
|
+
|
|
71
|
+
class side_two_regions(StringList):
|
|
72
|
+
"""
|
|
73
|
+
List specifying the name(s) of region(s) to be added to side Two of
|
|
74
|
+
the interface. Must be provided if ``side_one_participant`` is not an FMU.
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
syc_name = "SideTwoRegions"
|