ansys-systemcoupling-core 0.4.1__py3-none-any.whl → 0.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-systemcoupling-core might be problematic. Click here for more details.
- ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +4 -2
- ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +4 -2
- ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +7 -1
- ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +4 -2
- ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +80 -0
- ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/abort.py +39 -0
- ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +190 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +191 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +61 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +77 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +78 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +42 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +162 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +40 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +102 -0
- ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +283 -0
- ansys/systemcoupling/core/adaptor/api_24_2/apip.py +33 -0
- ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +44 -0
- ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +54 -0
- ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +40 -0
- ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +62 -0
- ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +18 -0
- ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +41 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +42 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +23 -0
- ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +265 -0
- ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +187 -0
- ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +28 -0
- ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +42 -0
- ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +96 -0
- ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +246 -0
- ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +24 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +24 -0
- ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +77 -0
- ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +156 -0
- ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +41 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +30 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +29 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +31 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +25 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +52 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +13 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +32 -0
- ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +143 -0
- ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +27 -0
- ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +23 -0
- ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +39 -0
- ansys/systemcoupling/core/adaptor/api_24_2/library.py +37 -0
- ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +100 -0
- ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +239 -0
- ansys/systemcoupling/core/adaptor/api_24_2/open.py +102 -0
- ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +56 -0
- ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +37 -0
- ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +134 -0
- ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +56 -0
- ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +138 -0
- ansys/systemcoupling/core/adaptor/api_24_2/properties.py +36 -0
- ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +46 -0
- ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_24_2/region.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +71 -0
- ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +14 -0
- ansys/systemcoupling/core/adaptor/api_24_2/results.py +89 -0
- ansys/systemcoupling/core/adaptor/api_24_2/save.py +51 -0
- ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +54 -0
- ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +251 -0
- ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +25 -0
- ansys/systemcoupling/core/adaptor/api_24_2/side.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +56 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +115 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +116 -0
- ansys/systemcoupling/core/adaptor/api_24_2/solve.py +30 -0
- ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +157 -0
- ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +47 -0
- ansys/systemcoupling/core/adaptor/api_24_2/step.py +57 -0
- ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +21 -0
- ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +62 -0
- ansys/systemcoupling/core/adaptor/api_24_2/type.py +38 -0
- ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +158 -0
- ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +43 -0
- ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +61 -0
- ansys/systemcoupling/core/adaptor/api_24_2/variable.py +20 -0
- ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +231 -0
- ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +21 -0
- ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +46 -0
- ansys/systemcoupling/core/adaptor/impl/injected_commands.py +18 -0
- ansys/systemcoupling/core/util/logging.py +1 -1
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/METADATA +10 -10
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/RECORD +123 -12
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,40 @@
|
|
|
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_reference_frame(Command):
|
|
9
|
+
"""
|
|
10
|
+
Add a reference frame to the datamodel
|
|
11
|
+
|
|
12
|
+
The function will add a blank reference frame to the datamodel. Any
|
|
13
|
+
transformations must be added separately.
|
|
14
|
+
|
|
15
|
+
Reference frame name will be "Frame-#" where # is the first positive
|
|
16
|
+
integer which yields a unique frame name.
|
|
17
|
+
|
|
18
|
+
Returns the name of the reference frame.
|
|
19
|
+
|
|
20
|
+
Parameters
|
|
21
|
+
----------
|
|
22
|
+
parent_reference_frame : str, optional
|
|
23
|
+
Name of a reference frame that the added frame should use as the
|
|
24
|
+
parent. If the argument is not provided, the default parent reference
|
|
25
|
+
frame "GlobalReferenceFrame" will be added.
|
|
26
|
+
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
syc_name = "AddReferenceFrame"
|
|
30
|
+
|
|
31
|
+
argument_names = ["parent_reference_frame"]
|
|
32
|
+
|
|
33
|
+
class parent_reference_frame(String):
|
|
34
|
+
"""
|
|
35
|
+
Name of a reference frame that the added frame should use as the
|
|
36
|
+
parent. If the argument is not provided, the default parent reference
|
|
37
|
+
frame "GlobalReferenceFrame" will be added.
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
syc_name = "ParentReferenceFrame"
|
|
@@ -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_thermal_data_transfers(Command):
|
|
9
|
+
"""
|
|
10
|
+
Adds group of data transfers for thermal 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
|
+
option : str, optional
|
|
20
|
+
Thermal data transfer option: 'Heat Rate' (default) or
|
|
21
|
+
'Heat Transfer Coefficient' (possible for surface-surface transfers).
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
syc_name = "AddThermalDataTransfers"
|
|
26
|
+
|
|
27
|
+
argument_names = ["interface", "option"]
|
|
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 option(String):
|
|
38
|
+
"""
|
|
39
|
+
Thermal data transfer option: 'Heat Rate' (default) or
|
|
40
|
+
'Heat Transfer Coefficient' (possible for surface-surface transfers).
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
syc_name = "Option"
|
|
@@ -0,0 +1,102 @@
|
|
|
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_transformation(Command):
|
|
9
|
+
"""
|
|
10
|
+
Add a transformation to a reference frame defined in the datamodel
|
|
11
|
+
|
|
12
|
+
Given the reference frame to add to the transform to, the type of transform
|
|
13
|
+
to be added, and any required information for the transformation, add the
|
|
14
|
+
transformation to the referenceFrame. Not all parameters are required for
|
|
15
|
+
every transformation.
|
|
16
|
+
|
|
17
|
+
The name of the transformation will be based on the type of transformation.
|
|
18
|
+
The name will be of the form ``<transformation_type>-#`` where ``#`` is the first
|
|
19
|
+
positive integer which yields a unique frame name.
|
|
20
|
+
|
|
21
|
+
The transformation will also be added to the end of the ``transformation_order``
|
|
22
|
+
list for the reference frame.
|
|
23
|
+
|
|
24
|
+
Returns the name of the transformation.
|
|
25
|
+
|
|
26
|
+
Parameters
|
|
27
|
+
----------
|
|
28
|
+
reference_frame : str
|
|
29
|
+
Name of the reference frame to which the transformation will be added.
|
|
30
|
+
transformation_type : str
|
|
31
|
+
Type of transformation to be added. Available options are \"Rotation\" or
|
|
32
|
+
\"Translation\".
|
|
33
|
+
|
|
34
|
+
Required Parameters for Transformation Types:
|
|
35
|
+
Rotation: ``angle``, ``axis``, ``vector`` (if ``axis`` is \"UserDefined\")
|
|
36
|
+
Translation: ``vector``
|
|
37
|
+
angle : real, optional
|
|
38
|
+
Angle to rotate a reference frame. Used with \"Rotation\"
|
|
39
|
+
``transformation_type``. Default unit is Radians.
|
|
40
|
+
axis : str, optional
|
|
41
|
+
Axis about which a rotation is applied. Used with
|
|
42
|
+
Rotation ``transformation_type``. Available options are: \"XAxis\", \"YAxis\",
|
|
43
|
+
\"ZAxis\", and \"UserDefined\".
|
|
44
|
+
vector : typing.Tuple[real, real, real], optional
|
|
45
|
+
A vector for use with \"Translation\" ``transformation_type`` or \"Rotation\"
|
|
46
|
+
``transformation_type`` if the ``axis`` is \"UserDefined\".
|
|
47
|
+
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
syc_name = "AddTransformation"
|
|
51
|
+
|
|
52
|
+
argument_names = [
|
|
53
|
+
"reference_frame",
|
|
54
|
+
"transformation_type",
|
|
55
|
+
"angle",
|
|
56
|
+
"axis",
|
|
57
|
+
"vector",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
class reference_frame(String):
|
|
61
|
+
"""
|
|
62
|
+
Name of the reference frame to which the transformation will be added.
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
syc_name = "ReferenceFrame"
|
|
66
|
+
|
|
67
|
+
class transformation_type(String):
|
|
68
|
+
"""
|
|
69
|
+
Type of transformation to be added. Available options are \"Rotation\" or
|
|
70
|
+
\"Translation\".
|
|
71
|
+
|
|
72
|
+
Required Parameters for Transformation Types:
|
|
73
|
+
Rotation: ``angle``, ``axis``, ``vector`` (if ``axis`` is \"UserDefined\")
|
|
74
|
+
Translation: ``vector``
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
syc_name = "TransformationType"
|
|
78
|
+
|
|
79
|
+
class angle(Real):
|
|
80
|
+
"""
|
|
81
|
+
Angle to rotate a reference frame. Used with \"Rotation\"
|
|
82
|
+
``transformation_type``. Default unit is Radians.
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
syc_name = "Angle"
|
|
86
|
+
|
|
87
|
+
class axis(String):
|
|
88
|
+
"""
|
|
89
|
+
Axis about which a rotation is applied. Used with
|
|
90
|
+
Rotation ``transformation_type``. Available options are: \"XAxis\", \"YAxis\",
|
|
91
|
+
\"ZAxis\", and \"UserDefined\".
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
syc_name = "Axis"
|
|
95
|
+
|
|
96
|
+
class vector(RealVector):
|
|
97
|
+
"""
|
|
98
|
+
A vector for use with \"Translation\" ``transformation_type`` or \"Rotation\"
|
|
99
|
+
``transformation_type`` if the ``axis`` is \"UserDefined\".
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
syc_name = "Vector"
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
from .apip import apip
|
|
8
|
+
from .automatic_alignment_options import automatic_alignment_options
|
|
9
|
+
from .avoid_data_reconstruction import avoid_data_reconstruction
|
|
10
|
+
from .global_stabilization import global_stabilization
|
|
11
|
+
from .unmapped_value_options import unmapped_value_options
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class analysis_control(Container):
|
|
15
|
+
"""
|
|
16
|
+
Configure coupling controls.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
syc_name = "AnalysisControl"
|
|
20
|
+
|
|
21
|
+
child_names = [
|
|
22
|
+
"global_stabilization",
|
|
23
|
+
"apip",
|
|
24
|
+
"avoid_data_reconstruction",
|
|
25
|
+
"unmapped_value_options",
|
|
26
|
+
"automatic_alignment_options",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
global_stabilization: global_stabilization = global_stabilization
|
|
30
|
+
"""
|
|
31
|
+
global_stabilization child of analysis_control.
|
|
32
|
+
"""
|
|
33
|
+
apip: apip = apip
|
|
34
|
+
"""
|
|
35
|
+
apip child of analysis_control.
|
|
36
|
+
"""
|
|
37
|
+
avoid_data_reconstruction: avoid_data_reconstruction = avoid_data_reconstruction
|
|
38
|
+
"""
|
|
39
|
+
avoid_data_reconstruction child of analysis_control.
|
|
40
|
+
"""
|
|
41
|
+
unmapped_value_options: unmapped_value_options = unmapped_value_options
|
|
42
|
+
"""
|
|
43
|
+
unmapped_value_options child of analysis_control.
|
|
44
|
+
"""
|
|
45
|
+
automatic_alignment_options: automatic_alignment_options = (
|
|
46
|
+
automatic_alignment_options
|
|
47
|
+
)
|
|
48
|
+
"""
|
|
49
|
+
automatic_alignment_options child of analysis_control.
|
|
50
|
+
"""
|
|
51
|
+
property_names_types = [
|
|
52
|
+
("analysis_type", "AnalysisType", "str"),
|
|
53
|
+
("optimize_if_one_way", "OptimizeIfOneWay", "bool"),
|
|
54
|
+
("warped_face_tolerance", "WarpedFaceTolerance", "RealType"),
|
|
55
|
+
("allow_simultaneous_update", "AllowSimultaneousUpdate", "bool"),
|
|
56
|
+
("simultaneous_participants", "SimultaneousParticipants", "str"),
|
|
57
|
+
(
|
|
58
|
+
"allow_simultaneous_initialization",
|
|
59
|
+
"AllowSimultaneousInitialization",
|
|
60
|
+
"bool",
|
|
61
|
+
),
|
|
62
|
+
("mpi_pause_timeout", "MpiPauseTimeout", "RealType"),
|
|
63
|
+
("partitioning_algorithm", "PartitioningAlgorithm", "str"),
|
|
64
|
+
("cleanup_inflated_fm_us", "CleanupInflatedFMUs", "bool"),
|
|
65
|
+
("allow_iterations_only_mode", "AllowIterationsOnlyMode", "bool"),
|
|
66
|
+
("target_initialization_option", "TargetInitializationOption", "str"),
|
|
67
|
+
("fluent_region_update_at_step", "FluentRegionUpdateAtStep", "bool"),
|
|
68
|
+
("mesh_import_on_initialization", "MeshImportOnInitialization", "bool"),
|
|
69
|
+
("import_all_regions", "ImportAllRegions", "bool"),
|
|
70
|
+
("bypass_fluent_adapter", "BypassFluentAdapter", "bool"),
|
|
71
|
+
("variable_to_expression_transfer", "VariableToExpressionTransfer", "bool"),
|
|
72
|
+
("update_mapping_weights", "UpdateMappingWeights", "str"),
|
|
73
|
+
(
|
|
74
|
+
"solve_incremental_displacement_first",
|
|
75
|
+
"SolveIncrementalDisplacementFirst",
|
|
76
|
+
"bool",
|
|
77
|
+
),
|
|
78
|
+
("write_scs_file", "WriteScsFile", "bool"),
|
|
79
|
+
("check_for_input_files_changes", "CheckForInputFilesChanges", "str"),
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def analysis_type(self) -> str:
|
|
84
|
+
"""Analysis type.
|
|
85
|
+
|
|
86
|
+
Allowed values:
|
|
87
|
+
- \"Steady\"
|
|
88
|
+
- \"Transient\" """
|
|
89
|
+
return self.get_property_state("analysis_type")
|
|
90
|
+
|
|
91
|
+
@analysis_type.setter
|
|
92
|
+
def analysis_type(self, value: str):
|
|
93
|
+
self.set_property_state("analysis_type", value)
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
def optimize_if_one_way(self) -> bool:
|
|
97
|
+
"""Optimizes various controls for a one-way workflow, if the
|
|
98
|
+
data transfers form a unidirectional graph."""
|
|
99
|
+
return self.get_property_state("optimize_if_one_way")
|
|
100
|
+
|
|
101
|
+
@optimize_if_one_way.setter
|
|
102
|
+
def optimize_if_one_way(self, value: bool):
|
|
103
|
+
self.set_property_state("optimize_if_one_way", value)
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
def warped_face_tolerance(self) -> RealType:
|
|
107
|
+
"""Set warped face detection tolerance (1e-6 is default value, 1.0 means disabled)."""
|
|
108
|
+
return self.get_property_state("warped_face_tolerance")
|
|
109
|
+
|
|
110
|
+
@warped_face_tolerance.setter
|
|
111
|
+
def warped_face_tolerance(self, value: RealType):
|
|
112
|
+
self.set_property_state("warped_face_tolerance", value)
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
def allow_simultaneous_update(self) -> bool:
|
|
116
|
+
"""Allow simultaneous update of independent participants."""
|
|
117
|
+
return self.get_property_state("allow_simultaneous_update")
|
|
118
|
+
|
|
119
|
+
@allow_simultaneous_update.setter
|
|
120
|
+
def allow_simultaneous_update(self, value: bool):
|
|
121
|
+
self.set_property_state("allow_simultaneous_update", value)
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
def simultaneous_participants(self) -> str:
|
|
125
|
+
"""Controls which participants are updated simultaneously."""
|
|
126
|
+
return self.get_property_state("simultaneous_participants")
|
|
127
|
+
|
|
128
|
+
@simultaneous_participants.setter
|
|
129
|
+
def simultaneous_participants(self, value: str):
|
|
130
|
+
self.set_property_state("simultaneous_participants", value)
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
def allow_simultaneous_initialization(self) -> bool:
|
|
134
|
+
"""Allow simultaneous initialization of participants."""
|
|
135
|
+
return self.get_property_state("allow_simultaneous_initialization")
|
|
136
|
+
|
|
137
|
+
@allow_simultaneous_initialization.setter
|
|
138
|
+
def allow_simultaneous_initialization(self, value: bool):
|
|
139
|
+
self.set_property_state("allow_simultaneous_initialization", value)
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
def mpi_pause_timeout(self) -> RealType:
|
|
143
|
+
"""Specify MPI pause time (in seconds) to wait for other participants to finish solving"""
|
|
144
|
+
return self.get_property_state("mpi_pause_timeout")
|
|
145
|
+
|
|
146
|
+
@mpi_pause_timeout.setter
|
|
147
|
+
def mpi_pause_timeout(self, value: RealType):
|
|
148
|
+
self.set_property_state("mpi_pause_timeout", value)
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def partitioning_algorithm(self) -> str:
|
|
152
|
+
"""Partitioning algorithm used when participants are running in parallel.
|
|
153
|
+
|
|
154
|
+
Allowed values:
|
|
155
|
+
|
|
156
|
+
- \"SharedAllocateMachines\" - Participants share both machines and cores.
|
|
157
|
+
|
|
158
|
+
- \"SharedAllocateCores\" - Participants share machines but not cores.
|
|
159
|
+
|
|
160
|
+
- \"DistributedAllocateCores\" - Participants minimally share cores and machines. (Linux only)
|
|
161
|
+
|
|
162
|
+
- \"DistributedAllocateMachines\" - Participants never share cores or machines. (Linux only)
|
|
163
|
+
|
|
164
|
+
- \"Custom\" - Custom algorithm."""
|
|
165
|
+
return self.get_property_state("partitioning_algorithm")
|
|
166
|
+
|
|
167
|
+
@partitioning_algorithm.setter
|
|
168
|
+
def partitioning_algorithm(self, value: str):
|
|
169
|
+
self.set_property_state("partitioning_algorithm", value)
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
def cleanup_inflated_fm_us(self) -> bool:
|
|
173
|
+
"""Controls whether System Coupling will cleanup inflated FMUs at end of analysis."""
|
|
174
|
+
return self.get_property_state("cleanup_inflated_fm_us")
|
|
175
|
+
|
|
176
|
+
@cleanup_inflated_fm_us.setter
|
|
177
|
+
def cleanup_inflated_fm_us(self, value: bool):
|
|
178
|
+
self.set_property_state("cleanup_inflated_fm_us", value)
|
|
179
|
+
|
|
180
|
+
@property
|
|
181
|
+
def allow_iterations_only_mode(self) -> bool:
|
|
182
|
+
"""Explicitly set whether iterations-only mode is allowed."""
|
|
183
|
+
return self.get_property_state("allow_iterations_only_mode")
|
|
184
|
+
|
|
185
|
+
@allow_iterations_only_mode.setter
|
|
186
|
+
def allow_iterations_only_mode(self, value: bool):
|
|
187
|
+
self.set_property_state("allow_iterations_only_mode", value)
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
def target_initialization_option(self) -> str:
|
|
191
|
+
"""Select option for target initialization."""
|
|
192
|
+
return self.get_property_state("target_initialization_option")
|
|
193
|
+
|
|
194
|
+
@target_initialization_option.setter
|
|
195
|
+
def target_initialization_option(self, value: str):
|
|
196
|
+
self.set_property_state("target_initialization_option", value)
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
def fluent_region_update_at_step(self) -> bool:
|
|
200
|
+
"""Allow update of Fluent regions at the beginning of a step."""
|
|
201
|
+
return self.get_property_state("fluent_region_update_at_step")
|
|
202
|
+
|
|
203
|
+
@fluent_region_update_at_step.setter
|
|
204
|
+
def fluent_region_update_at_step(self, value: bool):
|
|
205
|
+
self.set_property_state("fluent_region_update_at_step", value)
|
|
206
|
+
|
|
207
|
+
@property
|
|
208
|
+
def mesh_import_on_initialization(self) -> bool:
|
|
209
|
+
"""Select whether to import the mesh during the analysis initialization."""
|
|
210
|
+
return self.get_property_state("mesh_import_on_initialization")
|
|
211
|
+
|
|
212
|
+
@mesh_import_on_initialization.setter
|
|
213
|
+
def mesh_import_on_initialization(self, value: bool):
|
|
214
|
+
self.set_property_state("mesh_import_on_initialization", value)
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
def import_all_regions(self) -> bool:
|
|
218
|
+
"""Select whether to import mesh for all defined regions."""
|
|
219
|
+
return self.get_property_state("import_all_regions")
|
|
220
|
+
|
|
221
|
+
@import_all_regions.setter
|
|
222
|
+
def import_all_regions(self, value: bool):
|
|
223
|
+
self.set_property_state("import_all_regions", value)
|
|
224
|
+
|
|
225
|
+
@property
|
|
226
|
+
def bypass_fluent_adapter(self) -> bool:
|
|
227
|
+
"""Switch to bypass Fluent adapter."""
|
|
228
|
+
return self.get_property_state("bypass_fluent_adapter")
|
|
229
|
+
|
|
230
|
+
@bypass_fluent_adapter.setter
|
|
231
|
+
def bypass_fluent_adapter(self, value: bool):
|
|
232
|
+
self.set_property_state("bypass_fluent_adapter", value)
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
def variable_to_expression_transfer(self) -> bool:
|
|
236
|
+
"""Convert variable-based data transfers to expression transfers."""
|
|
237
|
+
return self.get_property_state("variable_to_expression_transfer")
|
|
238
|
+
|
|
239
|
+
@variable_to_expression_transfer.setter
|
|
240
|
+
def variable_to_expression_transfer(self, value: bool):
|
|
241
|
+
self.set_property_state("variable_to_expression_transfer", value)
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
def update_mapping_weights(self) -> str:
|
|
245
|
+
"""Weight factor when multiple transfers are stabilized.
|
|
246
|
+
|
|
247
|
+
Allowed values:
|
|
248
|
+
|
|
249
|
+
- \"Off\" (default)
|
|
250
|
+
- \"EveryStep\"
|
|
251
|
+
- \"EveryIteration\" """
|
|
252
|
+
return self.get_property_state("update_mapping_weights")
|
|
253
|
+
|
|
254
|
+
@update_mapping_weights.setter
|
|
255
|
+
def update_mapping_weights(self, value: str):
|
|
256
|
+
self.set_property_state("update_mapping_weights", value)
|
|
257
|
+
|
|
258
|
+
@property
|
|
259
|
+
def solve_incremental_displacement_first(self) -> bool:
|
|
260
|
+
"""Force participants serving incremental displacement to solve first."""
|
|
261
|
+
return self.get_property_state("solve_incremental_displacement_first")
|
|
262
|
+
|
|
263
|
+
@solve_incremental_displacement_first.setter
|
|
264
|
+
def solve_incremental_displacement_first(self, value: bool):
|
|
265
|
+
self.set_property_state("solve_incremental_displacement_first", value)
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
def write_scs_file(self) -> bool:
|
|
269
|
+
"""Force writing of scs file even if participants are auto-started."""
|
|
270
|
+
return self.get_property_state("write_scs_file")
|
|
271
|
+
|
|
272
|
+
@write_scs_file.setter
|
|
273
|
+
def write_scs_file(self, value: bool):
|
|
274
|
+
self.set_property_state("write_scs_file", value)
|
|
275
|
+
|
|
276
|
+
@property
|
|
277
|
+
def check_for_input_files_changes(self) -> str:
|
|
278
|
+
"""Controls whether System Coupling will check for changes in participant input files."""
|
|
279
|
+
return self.get_property_state("check_for_input_files_changes")
|
|
280
|
+
|
|
281
|
+
@check_for_input_files_changes.setter
|
|
282
|
+
def check_for_input_files_changes(self, value: str):
|
|
283
|
+
self.set_property_state("check_for_input_files_changes", value)
|
|
@@ -0,0 +1,33 @@
|
|
|
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 apip(Container):
|
|
9
|
+
"""
|
|
10
|
+
Apip-related expert settings.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
syc_name = "Apip"
|
|
14
|
+
|
|
15
|
+
property_names_types = [("debug", "Debug", "bool"), ("disable", "Disable", "bool")]
|
|
16
|
+
|
|
17
|
+
@property
|
|
18
|
+
def debug(self) -> bool:
|
|
19
|
+
"""Debug apip data (sends to debug server, saves data locally)."""
|
|
20
|
+
return self.get_property_state("debug")
|
|
21
|
+
|
|
22
|
+
@debug.setter
|
|
23
|
+
def debug(self, value: bool):
|
|
24
|
+
self.set_property_state("debug", value)
|
|
25
|
+
|
|
26
|
+
@property
|
|
27
|
+
def disable(self) -> bool:
|
|
28
|
+
"""Disable apip collection (regardless of user settings)."""
|
|
29
|
+
return self.get_property_state("disable")
|
|
30
|
+
|
|
31
|
+
@disable.setter
|
|
32
|
+
def disable(self, value: bool):
|
|
33
|
+
self.set_property_state("disable", value)
|
|
@@ -0,0 +1,44 @@
|
|
|
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 ascii_output(Container):
|
|
9
|
+
"""
|
|
10
|
+
Output interface data as ASCII.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
syc_name = "AsciiOutput"
|
|
14
|
+
|
|
15
|
+
property_names_types = [("option", "Option", "str"), ("format", "Format", "str")]
|
|
16
|
+
|
|
17
|
+
@property
|
|
18
|
+
def option(self) -> str:
|
|
19
|
+
"""Control ASCII interface data output.
|
|
20
|
+
|
|
21
|
+
Allowed values:
|
|
22
|
+
|
|
23
|
+
- \"Off\"
|
|
24
|
+
- \"EveryStep\" (for step-based analyses)
|
|
25
|
+
- \"EveryIteration\" (for iteration-based analyses)"""
|
|
26
|
+
return self.get_property_state("option")
|
|
27
|
+
|
|
28
|
+
@option.setter
|
|
29
|
+
def option(self, value: str):
|
|
30
|
+
self.set_property_state("option", value)
|
|
31
|
+
|
|
32
|
+
@property
|
|
33
|
+
def format(self) -> str:
|
|
34
|
+
"""ASCII output format type.
|
|
35
|
+
|
|
36
|
+
Allowed values:
|
|
37
|
+
|
|
38
|
+
- \"Axdt\"
|
|
39
|
+
- \"Csv\" """
|
|
40
|
+
return self.get_property_state("format")
|
|
41
|
+
|
|
42
|
+
@format.setter
|
|
43
|
+
def format(self, value: str):
|
|
44
|
+
self.set_property_state("format", value)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
from .attribute_child import attribute_child
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class attribute(NamedContainer[attribute_child]):
|
|
11
|
+
"""
|
|
12
|
+
Configure a variable's attributes.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
syc_name = "Attribute"
|
|
16
|
+
|
|
17
|
+
child_object_type: attribute_child = attribute_child
|
|
18
|
+
"""
|
|
19
|
+
child_object_type of attribute.
|
|
20
|
+
"""
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
from .dimensionality import dimensionality
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class attribute_child(Container):
|
|
11
|
+
"""
|
|
12
|
+
Configure a variable's attributes.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
syc_name = "child_object_type"
|
|
16
|
+
|
|
17
|
+
child_names = ["dimensionality"]
|
|
18
|
+
|
|
19
|
+
dimensionality: dimensionality = dimensionality
|
|
20
|
+
"""
|
|
21
|
+
dimensionality child of attribute_child.
|
|
22
|
+
"""
|
|
23
|
+
property_names_types = [
|
|
24
|
+
("attribute_type", "AttributeType", "str"),
|
|
25
|
+
("real_value", "RealValue", "RealType"),
|
|
26
|
+
("integer_value", "IntegerValue", "int"),
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
@property
|
|
30
|
+
def attribute_type(self) -> str:
|
|
31
|
+
"""The type of the attribute (\"Real\" or \"Integer\")."""
|
|
32
|
+
return self.get_property_state("attribute_type")
|
|
33
|
+
|
|
34
|
+
@attribute_type.setter
|
|
35
|
+
def attribute_type(self, value: str):
|
|
36
|
+
self.set_property_state("attribute_type", value)
|
|
37
|
+
|
|
38
|
+
@property
|
|
39
|
+
def real_value(self) -> RealType:
|
|
40
|
+
"""Real attribute value."""
|
|
41
|
+
return self.get_property_state("real_value")
|
|
42
|
+
|
|
43
|
+
@real_value.setter
|
|
44
|
+
def real_value(self, value: RealType):
|
|
45
|
+
self.set_property_state("real_value", value)
|
|
46
|
+
|
|
47
|
+
@property
|
|
48
|
+
def integer_value(self) -> int:
|
|
49
|
+
"""Integer attribute value."""
|
|
50
|
+
return self.get_property_state("integer_value")
|
|
51
|
+
|
|
52
|
+
@integer_value.setter
|
|
53
|
+
def integer_value(self, value: int):
|
|
54
|
+
self.set_property_state("integer_value", value)
|
|
@@ -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 automatic_alignment_options(Container):
|
|
9
|
+
"""
|
|
10
|
+
Automatic alignment settings.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
syc_name = "AutomaticAlignmentOptions"
|
|
14
|
+
|
|
15
|
+
property_names_types = [
|
|
16
|
+
("alignment_type", "AlignmentType", "str"),
|
|
17
|
+
("singular_value_tolerance", "SingularValueTolerance", "RealType"),
|
|
18
|
+
("verbosity", "Verbosity", "int"),
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
@property
|
|
22
|
+
def alignment_type(self) -> str:
|
|
23
|
+
"""Alignment type (\"Covariance\" or \"Moment Covariance\" or \"Inertial Axes\")."""
|
|
24
|
+
return self.get_property_state("alignment_type")
|
|
25
|
+
|
|
26
|
+
@alignment_type.setter
|
|
27
|
+
def alignment_type(self, value: str):
|
|
28
|
+
self.set_property_state("alignment_type", value)
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
def singular_value_tolerance(self) -> RealType:
|
|
32
|
+
"""Tolerance used to compare singular values"""
|
|
33
|
+
return self.get_property_state("singular_value_tolerance")
|
|
34
|
+
|
|
35
|
+
@singular_value_tolerance.setter
|
|
36
|
+
def singular_value_tolerance(self, value: RealType):
|
|
37
|
+
self.set_property_state("singular_value_tolerance", value)
|
|
38
|
+
|
|
39
|
+
@property
|
|
40
|
+
def verbosity(self) -> int:
|
|
41
|
+
"""Set to 1 to print additional information about the alignment"""
|
|
42
|
+
return self.get_property_state("verbosity")
|
|
43
|
+
|
|
44
|
+
@verbosity.setter
|
|
45
|
+
def verbosity(self, value: int):
|
|
46
|
+
self.set_property_state("verbosity", value)
|