ansys-systemcoupling-core 0.4.dev0__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/__init__.py +44 -8
- 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/client/grpc_client.py +113 -14
- ansys/systemcoupling/core/session.py +50 -0
- ansys/systemcoupling/core/util/file_transfer.py +133 -0
- ansys/systemcoupling/core/util/logging.py +1 -1
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/METADATA +14 -13
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/RECORD +127 -15
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.4.dev0.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/WHEEL +0 -0
|
@@ -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 interrupt(InjectedCommand):
|
|
9
|
+
"""
|
|
10
|
+
Interrupts a solve in progress.
|
|
11
|
+
|
|
12
|
+
See also ``abort``. The difference between an interrupted and
|
|
13
|
+
aborted solve is that an interrupted solve can be resumed.
|
|
14
|
+
|
|
15
|
+
Parameters
|
|
16
|
+
----------
|
|
17
|
+
reason_msg : str, optional
|
|
18
|
+
Text to describe the reason for the interrupt.
|
|
19
|
+
|
|
20
|
+
This might be used for such purposes as providing
|
|
21
|
+
additional annotation in transcript output.
|
|
22
|
+
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
syc_name = "interrupt"
|
|
26
|
+
|
|
27
|
+
cmd_name = "interrupt"
|
|
28
|
+
|
|
29
|
+
argument_names = ["reason_msg"]
|
|
30
|
+
|
|
31
|
+
class reason_msg(String):
|
|
32
|
+
"""
|
|
33
|
+
Text to describe the reason for the interrupt.
|
|
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,37 @@
|
|
|
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 .expression import expression
|
|
8
|
+
from .expression_function import expression_function
|
|
9
|
+
from .instancing import instancing
|
|
10
|
+
from .reference_frame import reference_frame
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class library(Container):
|
|
14
|
+
"""
|
|
15
|
+
Contains objects that can be referenced from elsewhere in the data model.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
syc_name = "Library"
|
|
19
|
+
|
|
20
|
+
child_names = ["expression", "expression_function", "reference_frame", "instancing"]
|
|
21
|
+
|
|
22
|
+
expression: expression = expression
|
|
23
|
+
"""
|
|
24
|
+
expression child of library.
|
|
25
|
+
"""
|
|
26
|
+
expression_function: expression_function = expression_function
|
|
27
|
+
"""
|
|
28
|
+
expression_function child of library.
|
|
29
|
+
"""
|
|
30
|
+
reference_frame: reference_frame = reference_frame
|
|
31
|
+
"""
|
|
32
|
+
reference_frame child of library.
|
|
33
|
+
"""
|
|
34
|
+
instancing: instancing = instancing
|
|
35
|
+
"""
|
|
36
|
+
instancing child of library.
|
|
37
|
+
"""
|
|
@@ -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 .live_visualization_child import live_visualization_child
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class live_visualization(NamedContainer[live_visualization_child]):
|
|
11
|
+
"""
|
|
12
|
+
Configures live visualization via EnSight DVS.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
syc_name = "LiveVisualization"
|
|
16
|
+
|
|
17
|
+
child_object_type: live_visualization_child = live_visualization_child
|
|
18
|
+
"""
|
|
19
|
+
child_object_type of live_visualization.
|
|
20
|
+
"""
|
|
@@ -0,0 +1,100 @@
|
|
|
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 .execution_control_1 import execution_control
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class live_visualization_child(Container):
|
|
11
|
+
"""
|
|
12
|
+
Configures live visualization via EnSight DVS.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
syc_name = "child_object_type"
|
|
16
|
+
|
|
17
|
+
child_names = ["execution_control"]
|
|
18
|
+
|
|
19
|
+
execution_control: execution_control = execution_control
|
|
20
|
+
"""
|
|
21
|
+
execution_control child of live_visualization_child.
|
|
22
|
+
"""
|
|
23
|
+
property_names_types = [
|
|
24
|
+
("option", "Option", "str"),
|
|
25
|
+
("write_results", "WriteResults", "bool"),
|
|
26
|
+
("start_grpc_server", "StartGrpcServer", "bool"),
|
|
27
|
+
("hide_ensight_gui", "HideEnsightGUI", "bool"),
|
|
28
|
+
("output_frequency", "OutputFrequency", "int"),
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
@property
|
|
32
|
+
def option(self) -> str:
|
|
33
|
+
"""Specifies live visualization working process
|
|
34
|
+
|
|
35
|
+
Allowed values:
|
|
36
|
+
|
|
37
|
+
- \"ProgramControlled\" - Generation of postprocessing results is disabled for now.
|
|
38
|
+
|
|
39
|
+
- \"Off\" - Generation of postprocessing results is disabled.
|
|
40
|
+
|
|
41
|
+
Allowed values for step-based analyses:
|
|
42
|
+
|
|
43
|
+
- \"LastStep\" - Generate results only for the last coupling step completed.
|
|
44
|
+
|
|
45
|
+
- \"EveryStep\" - Generate results at the end of every coupling step.
|
|
46
|
+
|
|
47
|
+
- \"StepInterval\" - Generate results at the end of coupling steps at
|
|
48
|
+
the interval specified by the output frequency setting.
|
|
49
|
+
|
|
50
|
+
Allowed values for iteration-based analyses:
|
|
51
|
+
|
|
52
|
+
- \"LastIteration\" - Generate results only for the last coupling
|
|
53
|
+
iteration completed.
|
|
54
|
+
|
|
55
|
+
- \"EveryIteration\" - Generate results at the end of every coupling
|
|
56
|
+
iteration.
|
|
57
|
+
|
|
58
|
+
- \"IterationInterval\" - Generate results at the end of coupling
|
|
59
|
+
iterations at the interval specified by the output frequency setting."""
|
|
60
|
+
return self.get_property_state("option")
|
|
61
|
+
|
|
62
|
+
@option.setter
|
|
63
|
+
def option(self, value: str):
|
|
64
|
+
self.set_property_state("option", value)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
def write_results(self) -> bool:
|
|
68
|
+
"""Write results to files when conducting live visualization."""
|
|
69
|
+
return self.get_property_state("write_results")
|
|
70
|
+
|
|
71
|
+
@write_results.setter
|
|
72
|
+
def write_results(self, value: bool):
|
|
73
|
+
self.set_property_state("write_results", value)
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
def start_grpc_server(self) -> bool:
|
|
77
|
+
"""Request that the EnSight client is started with a gRPC server running."""
|
|
78
|
+
return self.get_property_state("start_grpc_server")
|
|
79
|
+
|
|
80
|
+
@start_grpc_server.setter
|
|
81
|
+
def start_grpc_server(self, value: bool):
|
|
82
|
+
self.set_property_state("start_grpc_server", value)
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
def hide_ensight_gui(self) -> bool:
|
|
86
|
+
"""Request that the EnSight client is started hidden (in batch mode)."""
|
|
87
|
+
return self.get_property_state("hide_ensight_gui")
|
|
88
|
+
|
|
89
|
+
@hide_ensight_gui.setter
|
|
90
|
+
def hide_ensight_gui(self, value: bool):
|
|
91
|
+
self.set_property_state("hide_ensight_gui", value)
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
def output_frequency(self) -> int:
|
|
95
|
+
"""Specify output frequency."""
|
|
96
|
+
return self.get_property_state("output_frequency")
|
|
97
|
+
|
|
98
|
+
@output_frequency.setter
|
|
99
|
+
def output_frequency(self, value: int):
|
|
100
|
+
self.set_property_state("output_frequency", value)
|
|
@@ -0,0 +1,239 @@
|
|
|
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 mapping_control(Container):
|
|
9
|
+
"""
|
|
10
|
+
Configure controls for mapping.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
syc_name = "MappingControl"
|
|
14
|
+
|
|
15
|
+
property_names_types = [
|
|
16
|
+
("stop_if_poor_intersection", "StopIfPoorIntersection", "bool"),
|
|
17
|
+
("poor_intersection_threshold", "PoorIntersectionThreshold", "RealType"),
|
|
18
|
+
("face_alignment", "FaceAlignment", "str"),
|
|
19
|
+
("absolute_gap_tolerance", "AbsoluteGapTolerance", "RealType"),
|
|
20
|
+
("relative_gap_tolerance", "RelativeGapTolerance", "RealType"),
|
|
21
|
+
("small_weight_tolerance", "SmallWeightTolerance", "RealType"),
|
|
22
|
+
("corner_tolerance", "CornerTolerance", "RealType"),
|
|
23
|
+
("halo_tolerance", "HaloTolerance", "RealType"),
|
|
24
|
+
(
|
|
25
|
+
"conservative_reciprocity_factor",
|
|
26
|
+
"ConservativeReciprocityFactor",
|
|
27
|
+
"RealType",
|
|
28
|
+
),
|
|
29
|
+
(
|
|
30
|
+
"profile_preserving_reciprocity_factor",
|
|
31
|
+
"ProfilePreservingReciprocityFactor",
|
|
32
|
+
"RealType",
|
|
33
|
+
),
|
|
34
|
+
("conservative_intensive", "ConservativeIntensive", "str"),
|
|
35
|
+
("preserve_normal", "PreserveNormal", "str"),
|
|
36
|
+
(
|
|
37
|
+
"conservation_fix_tolerance_volume",
|
|
38
|
+
"ConservationFixToleranceVolume",
|
|
39
|
+
"RealType",
|
|
40
|
+
),
|
|
41
|
+
("rbf_option", "RBFOption", "str"),
|
|
42
|
+
("rbf_shape_parameter", "RBFShapeParameter", "RealType"),
|
|
43
|
+
("rbf_linear_correction", "RBFLinearCorrection", "bool"),
|
|
44
|
+
("rbf_clipping_scale", "RBFClippingScale", "RealType"),
|
|
45
|
+
("clipping", "Clipping", "bool"),
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
def stop_if_poor_intersection(self) -> bool:
|
|
50
|
+
"""Controls whether to stop if the intersection is poor"""
|
|
51
|
+
return self.get_property_state("stop_if_poor_intersection")
|
|
52
|
+
|
|
53
|
+
@stop_if_poor_intersection.setter
|
|
54
|
+
def stop_if_poor_intersection(self, value: bool):
|
|
55
|
+
self.set_property_state("stop_if_poor_intersection", value)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
def poor_intersection_threshold(self) -> RealType:
|
|
59
|
+
"""System Coupling terminates with an error if the intersected fractions are below this threshold (in both directions)"""
|
|
60
|
+
return self.get_property_state("poor_intersection_threshold")
|
|
61
|
+
|
|
62
|
+
@poor_intersection_threshold.setter
|
|
63
|
+
def poor_intersection_threshold(self, value: RealType):
|
|
64
|
+
self.set_property_state("poor_intersection_threshold", value)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
def face_alignment(self) -> str:
|
|
68
|
+
"""Controls how face alignment is used during mapping.
|
|
69
|
+
|
|
70
|
+
Allowed values:
|
|
71
|
+
|
|
72
|
+
- \"ProgramControlled\" (default)
|
|
73
|
+
- \"OppositeOrientation\"
|
|
74
|
+
- \"SameOrientation\"
|
|
75
|
+
- \"AnyOrientation\" """
|
|
76
|
+
return self.get_property_state("face_alignment")
|
|
77
|
+
|
|
78
|
+
@face_alignment.setter
|
|
79
|
+
def face_alignment(self, value: str):
|
|
80
|
+
self.set_property_state("face_alignment", value)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
def absolute_gap_tolerance(self) -> RealType:
|
|
84
|
+
"""Absolute gap tolerance value."""
|
|
85
|
+
return self.get_property_state("absolute_gap_tolerance")
|
|
86
|
+
|
|
87
|
+
@absolute_gap_tolerance.setter
|
|
88
|
+
def absolute_gap_tolerance(self, value: RealType):
|
|
89
|
+
self.set_property_state("absolute_gap_tolerance", value)
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
def relative_gap_tolerance(self) -> RealType:
|
|
93
|
+
"""Maximum gap size relative to face size."""
|
|
94
|
+
return self.get_property_state("relative_gap_tolerance")
|
|
95
|
+
|
|
96
|
+
@relative_gap_tolerance.setter
|
|
97
|
+
def relative_gap_tolerance(self, value: RealType):
|
|
98
|
+
self.set_property_state("relative_gap_tolerance", value)
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
def small_weight_tolerance(self) -> RealType:
|
|
102
|
+
"""Relative tolerance used to control when weights are dropped."""
|
|
103
|
+
return self.get_property_state("small_weight_tolerance")
|
|
104
|
+
|
|
105
|
+
@small_weight_tolerance.setter
|
|
106
|
+
def small_weight_tolerance(self, value: RealType):
|
|
107
|
+
self.set_property_state("small_weight_tolerance", value)
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
def corner_tolerance(self) -> RealType:
|
|
111
|
+
"""Angle [degrees] between adjacent source mesh faces above which the
|
|
112
|
+
mapping algorithm will stop searching for mapping candidates."""
|
|
113
|
+
return self.get_property_state("corner_tolerance")
|
|
114
|
+
|
|
115
|
+
@corner_tolerance.setter
|
|
116
|
+
def corner_tolerance(self, value: RealType):
|
|
117
|
+
self.set_property_state("corner_tolerance", value)
|
|
118
|
+
|
|
119
|
+
@property
|
|
120
|
+
def halo_tolerance(self) -> RealType:
|
|
121
|
+
"""If a face intersects but a target node lies outside of the source face, then
|
|
122
|
+
map the node if the projected distance to the face / sqrt(srcArea) is less
|
|
123
|
+
than this tolerance, otherwise leave as unmapped."""
|
|
124
|
+
return self.get_property_state("halo_tolerance")
|
|
125
|
+
|
|
126
|
+
@halo_tolerance.setter
|
|
127
|
+
def halo_tolerance(self, value: RealType):
|
|
128
|
+
self.set_property_state("halo_tolerance", value)
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
def conservative_reciprocity_factor(self) -> RealType:
|
|
132
|
+
"""Reciprocity blend factor for conservative mapping."""
|
|
133
|
+
return self.get_property_state("conservative_reciprocity_factor")
|
|
134
|
+
|
|
135
|
+
@conservative_reciprocity_factor.setter
|
|
136
|
+
def conservative_reciprocity_factor(self, value: RealType):
|
|
137
|
+
self.set_property_state("conservative_reciprocity_factor", value)
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
def profile_preserving_reciprocity_factor(self) -> RealType:
|
|
141
|
+
"""Reciprocity blend factor for profile-preserving mapping."""
|
|
142
|
+
return self.get_property_state("profile_preserving_reciprocity_factor")
|
|
143
|
+
|
|
144
|
+
@profile_preserving_reciprocity_factor.setter
|
|
145
|
+
def profile_preserving_reciprocity_factor(self, value: RealType):
|
|
146
|
+
self.set_property_state("profile_preserving_reciprocity_factor", value)
|
|
147
|
+
|
|
148
|
+
@property
|
|
149
|
+
def conservative_intensive(self) -> str:
|
|
150
|
+
"""Determines when the Intensive option is used for conservative mapping.
|
|
151
|
+
|
|
152
|
+
Allowed values:
|
|
153
|
+
|
|
154
|
+
- \"ProgramControlled\" (default)
|
|
155
|
+
- \"Off\"
|
|
156
|
+
- \"On\" """
|
|
157
|
+
return self.get_property_state("conservative_intensive")
|
|
158
|
+
|
|
159
|
+
@conservative_intensive.setter
|
|
160
|
+
def conservative_intensive(self, value: str):
|
|
161
|
+
self.set_property_state("conservative_intensive", value)
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
def preserve_normal(self) -> str:
|
|
165
|
+
"""Determines if the normal component of a vector is preserved.
|
|
166
|
+
|
|
167
|
+
Allowed values:
|
|
168
|
+
|
|
169
|
+
- \"ProgramControlled\" (default)
|
|
170
|
+
- \"Off\"
|
|
171
|
+
- \"On\" """
|
|
172
|
+
return self.get_property_state("preserve_normal")
|
|
173
|
+
|
|
174
|
+
@preserve_normal.setter
|
|
175
|
+
def preserve_normal(self, value: str):
|
|
176
|
+
self.set_property_state("preserve_normal", value)
|
|
177
|
+
|
|
178
|
+
@property
|
|
179
|
+
def conservation_fix_tolerance_volume(self) -> RealType:
|
|
180
|
+
"""Source element overlap fraction to trigger volume mapping conservation fix.
|
|
181
|
+
|
|
182
|
+
0.0 is default. 1.0 effectively disables it."""
|
|
183
|
+
return self.get_property_state("conservation_fix_tolerance_volume")
|
|
184
|
+
|
|
185
|
+
@conservation_fix_tolerance_volume.setter
|
|
186
|
+
def conservation_fix_tolerance_volume(self, value: RealType):
|
|
187
|
+
self.set_property_state("conservation_fix_tolerance_volume", value)
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
def rbf_option(self) -> str:
|
|
191
|
+
"""Controls radial basis function formulation.
|
|
192
|
+
|
|
193
|
+
Allowed values:
|
|
194
|
+
|
|
195
|
+
- \"Gaussian\" (default)
|
|
196
|
+
- \"ThinPlateSpline\" """
|
|
197
|
+
return self.get_property_state("rbf_option")
|
|
198
|
+
|
|
199
|
+
@rbf_option.setter
|
|
200
|
+
def rbf_option(self, value: str):
|
|
201
|
+
self.set_property_state("rbf_option", value)
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
def rbf_shape_parameter(self) -> RealType:
|
|
205
|
+
"""Sets the shape parameter beta when using Gaussian radial basis functions."""
|
|
206
|
+
return self.get_property_state("rbf_shape_parameter")
|
|
207
|
+
|
|
208
|
+
@rbf_shape_parameter.setter
|
|
209
|
+
def rbf_shape_parameter(self, value: RealType):
|
|
210
|
+
self.set_property_state("rbf_shape_parameter", value)
|
|
211
|
+
|
|
212
|
+
@property
|
|
213
|
+
def rbf_linear_correction(self) -> bool:
|
|
214
|
+
"""Controls whether linear polynomial augmentation is added to the RBF stencil for
|
|
215
|
+
low order regular element types (tet, hex, pyramid, wedge)."""
|
|
216
|
+
return self.get_property_state("rbf_linear_correction")
|
|
217
|
+
|
|
218
|
+
@rbf_linear_correction.setter
|
|
219
|
+
def rbf_linear_correction(self, value: bool):
|
|
220
|
+
self.set_property_state("rbf_linear_correction", value)
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
def rbf_clipping_scale(self) -> RealType:
|
|
224
|
+
"""Length scale factor used to determine if source nodes are removed from RBF
|
|
225
|
+
stencil when too close."""
|
|
226
|
+
return self.get_property_state("rbf_clipping_scale")
|
|
227
|
+
|
|
228
|
+
@rbf_clipping_scale.setter
|
|
229
|
+
def rbf_clipping_scale(self, value: RealType):
|
|
230
|
+
self.set_property_state("rbf_clipping_scale", value)
|
|
231
|
+
|
|
232
|
+
@property
|
|
233
|
+
def clipping(self) -> bool:
|
|
234
|
+
"""Controls whether to clip target values to the min/max of the local source values for profile-preserving transfers."""
|
|
235
|
+
return self.get_property_state("clipping")
|
|
236
|
+
|
|
237
|
+
@clipping.setter
|
|
238
|
+
def clipping(self, value: bool):
|
|
239
|
+
self.set_property_state("clipping", value)
|
|
@@ -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 open(Command):
|
|
9
|
+
"""
|
|
10
|
+
Reads the state of a coupled analysis. The state consists of settings to
|
|
11
|
+
populate the datamodel and results to restart the analysis at the end of
|
|
12
|
+
a specified coupling step.
|
|
13
|
+
|
|
14
|
+
Settings are stored in a file named Settings.h5. Results files may
|
|
15
|
+
correspond either to coupling iterations or coupling steps, depending on
|
|
16
|
+
the analysis type and the types of participants involved.
|
|
17
|
+
|
|
18
|
+
By default (no arguments provided), this command looks for the ``SyC``
|
|
19
|
+
directory in the current working directory. By default, if multiple
|
|
20
|
+
results files exist, the most recent one is opened.
|
|
21
|
+
|
|
22
|
+
If given optional arguments, behavior is modified as described below.
|
|
23
|
+
|
|
24
|
+
Cannot be run after the participants have been started.
|
|
25
|
+
|
|
26
|
+
Parameters
|
|
27
|
+
----------
|
|
28
|
+
file_path : str, optional
|
|
29
|
+
Working directory containing the ``SyC`` subdirectory (and its .h5
|
|
30
|
+
file(s)) to be read.
|
|
31
|
+
coupling_step : int, optional
|
|
32
|
+
Integer specifying the coupling step at which the coupled analysis is
|
|
33
|
+
restarted. When used, System Coupling reads the corresponding
|
|
34
|
+
``Results_step<#>.h5`` file in the specified directory and restarts the
|
|
35
|
+
analysis at the end of the specified coupling step. When this argument
|
|
36
|
+
is used, System Coupling automatically removes the output files related
|
|
37
|
+
to all later coupling steps. If the files cannot be removed, then
|
|
38
|
+
System Coupling generates an exception message instructing you to free
|
|
39
|
+
up the files and reissue the ``open`` command with the ``coupling_step``
|
|
40
|
+
argument. If the simulation's results files are associated with
|
|
41
|
+
coupling iterations, then System Coupling prints an error message
|
|
42
|
+
indicating this.
|
|
43
|
+
coupling_iteration : int, optional
|
|
44
|
+
Integer specifying the coupling iteration at which the coupled analysis
|
|
45
|
+
is restarted. When used, System Coupling reads the corresponding
|
|
46
|
+
``Results_iter<#>.h5`` file in the specified directory and restarts the
|
|
47
|
+
analysis at the end of the specified coupling iteration. When this
|
|
48
|
+
argument is used, System Coupling automatically removes the output
|
|
49
|
+
files related to all later coupling iterations. If the files cannot be
|
|
50
|
+
removed, then System Coupling generates an exception message
|
|
51
|
+
instructing you to free up the files and reissue the ``open`` command with
|
|
52
|
+
the ``coupling_iteration`` argument. If the simulation's results files are
|
|
53
|
+
associated with coupling steps, then System Coupling prints an error
|
|
54
|
+
message indicating this.
|
|
55
|
+
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
syc_name = "Open"
|
|
59
|
+
|
|
60
|
+
argument_names = ["file_path", "coupling_step", "coupling_iteration"]
|
|
61
|
+
|
|
62
|
+
class file_path(String):
|
|
63
|
+
"""
|
|
64
|
+
Working directory containing the ``SyC`` subdirectory (and its .h5
|
|
65
|
+
file(s)) to be read.
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
syc_name = "FilePath"
|
|
69
|
+
|
|
70
|
+
class coupling_step(Integer):
|
|
71
|
+
"""
|
|
72
|
+
Integer specifying the coupling step at which the coupled analysis is
|
|
73
|
+
restarted. When used, System Coupling reads the corresponding
|
|
74
|
+
``Results_step<#>.h5`` file in the specified directory and restarts the
|
|
75
|
+
analysis at the end of the specified coupling step. When this argument
|
|
76
|
+
is used, System Coupling automatically removes the output files related
|
|
77
|
+
to all later coupling steps. If the files cannot be removed, then
|
|
78
|
+
System Coupling generates an exception message instructing you to free
|
|
79
|
+
up the files and reissue the ``open`` command with the ``coupling_step``
|
|
80
|
+
argument. If the simulation's results files are associated with
|
|
81
|
+
coupling iterations, then System Coupling prints an error message
|
|
82
|
+
indicating this.
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
syc_name = "CouplingStep"
|
|
86
|
+
|
|
87
|
+
class coupling_iteration(Integer):
|
|
88
|
+
"""
|
|
89
|
+
Integer specifying the coupling iteration at which the coupled analysis
|
|
90
|
+
is restarted. When used, System Coupling reads the corresponding
|
|
91
|
+
``Results_iter<#>.h5`` file in the specified directory and restarts the
|
|
92
|
+
analysis at the end of the specified coupling iteration. When this
|
|
93
|
+
argument is used, System Coupling automatically removes the output
|
|
94
|
+
files related to all later coupling iterations. If the files cannot be
|
|
95
|
+
removed, then System Coupling generates an exception message
|
|
96
|
+
instructing you to free up the files and reissue the ``open`` command with
|
|
97
|
+
the ``coupling_iteration`` argument. If the simulation's results files are
|
|
98
|
+
associated with coupling steps, then System Coupling prints an error
|
|
99
|
+
message indicating this.
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
syc_name = "CouplingIteration"
|
|
@@ -0,0 +1,56 @@
|
|
|
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 open_results_in_ensight(Command):
|
|
9
|
+
"""
|
|
10
|
+
Allows for System Coupling results to be postprocessed in EnSight.
|
|
11
|
+
|
|
12
|
+
When this command is issued, System Coupling looks for the ``results.enc``
|
|
13
|
+
file in the ``SyC/results`` subdirectory of the current working directory.
|
|
14
|
+
|
|
15
|
+
When System Coupling finds the file, it loads the file into EnSight and
|
|
16
|
+
generates a confirmation message indicating that results are being opened.
|
|
17
|
+
|
|
18
|
+
If System Coupling is unable to find the ``results.enc`` file and/or the
|
|
19
|
+
EnSight executable, then it raises an error.
|
|
20
|
+
|
|
21
|
+
The ``open_results_in_ensight`` command may be issued multiple times from the same
|
|
22
|
+
instance of System Coupling. Each time the command is issued, a new
|
|
23
|
+
instance of the EnSight application is opened. Any existing instances of
|
|
24
|
+
EnSight remain open, both when additional instances are created and when
|
|
25
|
+
System Coupling exits.
|
|
26
|
+
|
|
27
|
+
Parameters
|
|
28
|
+
----------
|
|
29
|
+
file_name : str, optional
|
|
30
|
+
The basename of the EnSight case file if using a non-standard file
|
|
31
|
+
name. Overrides the default file name ``results.enc``.
|
|
32
|
+
file_path : str, optional
|
|
33
|
+
The path to the EnSight case if using a non-standard location.
|
|
34
|
+
Overrides the default path of ``SyC/results``.
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
syc_name = "OpenResultsInEnSight"
|
|
39
|
+
|
|
40
|
+
argument_names = ["file_name", "file_path"]
|
|
41
|
+
|
|
42
|
+
class file_name(String):
|
|
43
|
+
"""
|
|
44
|
+
The basename of the EnSight case file if using a non-standard file
|
|
45
|
+
name. Overrides the default file name ``results.enc``.
|
|
46
|
+
"""
|
|
47
|
+
|
|
48
|
+
syc_name = "FileName"
|
|
49
|
+
|
|
50
|
+
class file_path(String):
|
|
51
|
+
"""
|
|
52
|
+
The path to the EnSight case if using a non-standard location.
|
|
53
|
+
Overrides the default path of ``SyC/results``.
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
syc_name = "FilePath"
|
|
@@ -0,0 +1,37 @@
|
|
|
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 open_snapshot(Command):
|
|
9
|
+
"""
|
|
10
|
+
Opens a snapshot containing a previously saved state of the simulation.
|
|
11
|
+
All state (files and directories) stored in the snapshot will be restored.
|
|
12
|
+
If other state exists in the working directory, then it will not be
|
|
13
|
+
modified by this command.
|
|
14
|
+
|
|
15
|
+
Note: Snapshot cannot be opened if participants have been started.
|
|
16
|
+
|
|
17
|
+
Parameters
|
|
18
|
+
----------
|
|
19
|
+
snapshot_name : str, optional
|
|
20
|
+
The name of the snapshot to be opened. This is optional if and only if
|
|
21
|
+
there is only one snapshot available to be loaded. If multiple
|
|
22
|
+
snapshots exist, then the snapshot name must be specified.
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
syc_name = "OpenSnapshot"
|
|
27
|
+
|
|
28
|
+
argument_names = ["snapshot_name"]
|
|
29
|
+
|
|
30
|
+
class snapshot_name(String):
|
|
31
|
+
"""
|
|
32
|
+
The name of the snapshot to be opened. This is optional if and only if
|
|
33
|
+
there is only one snapshot available to be loaded. If multiple
|
|
34
|
+
snapshots exist, then the snapshot name must be specified.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
syc_name = "SnapshotName"
|