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,231 @@
|
|
|
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 import attribute
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class variable_child(Container):
|
|
11
|
+
"""
|
|
12
|
+
Configure a variable for the coupling participant.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
syc_name = "child_object_type"
|
|
16
|
+
|
|
17
|
+
child_names = ["attribute"]
|
|
18
|
+
|
|
19
|
+
attribute: attribute = attribute
|
|
20
|
+
"""
|
|
21
|
+
attribute child of variable_child.
|
|
22
|
+
"""
|
|
23
|
+
property_names_types = [
|
|
24
|
+
("quantity_type", "QuantityType", "str"),
|
|
25
|
+
("location", "Location", "str"),
|
|
26
|
+
("participant_display_name", "ParticipantDisplayName", "str"),
|
|
27
|
+
("display_name", "DisplayName", "str"),
|
|
28
|
+
("data_type", "DataType", "str"),
|
|
29
|
+
("real_initial_value", "RealInitialValue", "RealType"),
|
|
30
|
+
("integer_initial_value", "IntegerInitialValue", "int"),
|
|
31
|
+
("logical_initial_value", "LogicalInitialValue", "bool"),
|
|
32
|
+
("string_initial_value", "StringInitialValue", "str"),
|
|
33
|
+
("enumeration_initial_value", "EnumerationInitialValue", "int"),
|
|
34
|
+
("real_min", "RealMin", "RealType"),
|
|
35
|
+
("real_max", "RealMax", "RealType"),
|
|
36
|
+
("integer_min", "IntegerMin", "int"),
|
|
37
|
+
("integer_max", "IntegerMax", "int"),
|
|
38
|
+
("enumeration_min", "EnumerationMin", "int"),
|
|
39
|
+
("enumeration_max", "EnumerationMax", "int"),
|
|
40
|
+
("tensor_type", "TensorType", "str"),
|
|
41
|
+
("is_extensive", "IsExtensive", "bool"),
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def quantity_type(self) -> str:
|
|
46
|
+
"""Quantity type of the variable.
|
|
47
|
+
|
|
48
|
+
Allowed values:
|
|
49
|
+
|
|
50
|
+
- \"Unspecified\"
|
|
51
|
+
- \"Force\"
|
|
52
|
+
- \"Incremental Displacement\"
|
|
53
|
+
- \"Temperature\"
|
|
54
|
+
- \"Heat Rate\"
|
|
55
|
+
- \"Heat Transfer Coefficient\"
|
|
56
|
+
- \"Convection Reference Temperature\"
|
|
57
|
+
- \"Mode Shape\"
|
|
58
|
+
- \"Electrical Conductivity\" """
|
|
59
|
+
return self.get_property_state("quantity_type")
|
|
60
|
+
|
|
61
|
+
@quantity_type.setter
|
|
62
|
+
def quantity_type(self, value: str):
|
|
63
|
+
self.set_property_state("quantity_type", value)
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
def location(self) -> str:
|
|
67
|
+
"""Data location of the variable (\"Node\" or \"Element\")."""
|
|
68
|
+
return self.get_property_state("location")
|
|
69
|
+
|
|
70
|
+
@location.setter
|
|
71
|
+
def location(self, value: str):
|
|
72
|
+
self.set_property_state("location", value)
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
def participant_display_name(self) -> str:
|
|
76
|
+
"""Variable's display name as defined by the participant solver."""
|
|
77
|
+
return self.get_property_state("participant_display_name")
|
|
78
|
+
|
|
79
|
+
@participant_display_name.setter
|
|
80
|
+
def participant_display_name(self, value: str):
|
|
81
|
+
self.set_property_state("participant_display_name", value)
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
def display_name(self) -> str:
|
|
85
|
+
"""Variable's display name as defined in System Coupling."""
|
|
86
|
+
return self.get_property_state("display_name")
|
|
87
|
+
|
|
88
|
+
@display_name.setter
|
|
89
|
+
def display_name(self, value: str):
|
|
90
|
+
self.set_property_state("display_name", value)
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
def data_type(self) -> str:
|
|
94
|
+
"""Variable's data type as reported by the participant.
|
|
95
|
+
|
|
96
|
+
Allowed values (non-FMU case):
|
|
97
|
+
|
|
98
|
+
- Real
|
|
99
|
+
- Complex
|
|
100
|
+
|
|
101
|
+
Allowed values (FMU):
|
|
102
|
+
|
|
103
|
+
- Real
|
|
104
|
+
- Integer
|
|
105
|
+
- Logical
|
|
106
|
+
- String
|
|
107
|
+
- Enumeration"""
|
|
108
|
+
return self.get_property_state("data_type")
|
|
109
|
+
|
|
110
|
+
@data_type.setter
|
|
111
|
+
def data_type(self, value: str):
|
|
112
|
+
self.set_property_state("data_type", value)
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
def real_initial_value(self) -> RealType:
|
|
116
|
+
"""Real data start value."""
|
|
117
|
+
return self.get_property_state("real_initial_value")
|
|
118
|
+
|
|
119
|
+
@real_initial_value.setter
|
|
120
|
+
def real_initial_value(self, value: RealType):
|
|
121
|
+
self.set_property_state("real_initial_value", value)
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
def integer_initial_value(self) -> int:
|
|
125
|
+
"""Integer data start value."""
|
|
126
|
+
return self.get_property_state("integer_initial_value")
|
|
127
|
+
|
|
128
|
+
@integer_initial_value.setter
|
|
129
|
+
def integer_initial_value(self, value: int):
|
|
130
|
+
self.set_property_state("integer_initial_value", value)
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
def logical_initial_value(self) -> bool:
|
|
134
|
+
"""Logical data start value."""
|
|
135
|
+
return self.get_property_state("logical_initial_value")
|
|
136
|
+
|
|
137
|
+
@logical_initial_value.setter
|
|
138
|
+
def logical_initial_value(self, value: bool):
|
|
139
|
+
self.set_property_state("logical_initial_value", value)
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
def string_initial_value(self) -> str:
|
|
143
|
+
"""String data start value."""
|
|
144
|
+
return self.get_property_state("string_initial_value")
|
|
145
|
+
|
|
146
|
+
@string_initial_value.setter
|
|
147
|
+
def string_initial_value(self, value: str):
|
|
148
|
+
self.set_property_state("string_initial_value", value)
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def enumeration_initial_value(self) -> int:
|
|
152
|
+
"""Enumeration data start value."""
|
|
153
|
+
return self.get_property_state("enumeration_initial_value")
|
|
154
|
+
|
|
155
|
+
@enumeration_initial_value.setter
|
|
156
|
+
def enumeration_initial_value(self, value: int):
|
|
157
|
+
self.set_property_state("enumeration_initial_value", value)
|
|
158
|
+
|
|
159
|
+
@property
|
|
160
|
+
def real_min(self) -> RealType:
|
|
161
|
+
"""Real data minimum value."""
|
|
162
|
+
return self.get_property_state("real_min")
|
|
163
|
+
|
|
164
|
+
@real_min.setter
|
|
165
|
+
def real_min(self, value: RealType):
|
|
166
|
+
self.set_property_state("real_min", value)
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
def real_max(self) -> RealType:
|
|
170
|
+
"""Real data maximum value."""
|
|
171
|
+
return self.get_property_state("real_max")
|
|
172
|
+
|
|
173
|
+
@real_max.setter
|
|
174
|
+
def real_max(self, value: RealType):
|
|
175
|
+
self.set_property_state("real_max", value)
|
|
176
|
+
|
|
177
|
+
@property
|
|
178
|
+
def integer_min(self) -> int:
|
|
179
|
+
"""Integer data minimum value."""
|
|
180
|
+
return self.get_property_state("integer_min")
|
|
181
|
+
|
|
182
|
+
@integer_min.setter
|
|
183
|
+
def integer_min(self, value: int):
|
|
184
|
+
self.set_property_state("integer_min", value)
|
|
185
|
+
|
|
186
|
+
@property
|
|
187
|
+
def integer_max(self) -> int:
|
|
188
|
+
"""Integer data maximum value."""
|
|
189
|
+
return self.get_property_state("integer_max")
|
|
190
|
+
|
|
191
|
+
@integer_max.setter
|
|
192
|
+
def integer_max(self, value: int):
|
|
193
|
+
self.set_property_state("integer_max", value)
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
def enumeration_min(self) -> int:
|
|
197
|
+
"""Enumeration data minimum value."""
|
|
198
|
+
return self.get_property_state("enumeration_min")
|
|
199
|
+
|
|
200
|
+
@enumeration_min.setter
|
|
201
|
+
def enumeration_min(self, value: int):
|
|
202
|
+
self.set_property_state("enumeration_min", value)
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
def enumeration_max(self) -> int:
|
|
206
|
+
"""Enumeration data maximum value."""
|
|
207
|
+
return self.get_property_state("enumeration_max")
|
|
208
|
+
|
|
209
|
+
@enumeration_max.setter
|
|
210
|
+
def enumeration_max(self, value: int):
|
|
211
|
+
self.set_property_state("enumeration_max", value)
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
def tensor_type(self) -> str:
|
|
215
|
+
"""Indicates the variable tensor type (\"Scalar\" or \"Vector\").
|
|
216
|
+
|
|
217
|
+
\"Vector\" is not supported for the FMU case."""
|
|
218
|
+
return self.get_property_state("tensor_type")
|
|
219
|
+
|
|
220
|
+
@tensor_type.setter
|
|
221
|
+
def tensor_type(self, value: str):
|
|
222
|
+
self.set_property_state("tensor_type", value)
|
|
223
|
+
|
|
224
|
+
@property
|
|
225
|
+
def is_extensive(self) -> bool:
|
|
226
|
+
"""Indicates whether this is an extensive property."""
|
|
227
|
+
return self.get_property_state("is_extensive")
|
|
228
|
+
|
|
229
|
+
@is_extensive.setter
|
|
230
|
+
def is_extensive(self, value: bool):
|
|
231
|
+
self.set_property_state("is_extensive", value)
|
|
@@ -0,0 +1,21 @@
|
|
|
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 write_csv_chart_files(Command):
|
|
9
|
+
"""
|
|
10
|
+
For each coupling interface, exports a CSV file containing chart data
|
|
11
|
+
(convergence and source/target quantity transfer values) for
|
|
12
|
+
that interface.
|
|
13
|
+
|
|
14
|
+
Each file is named according to the convention ``<interface>.csv``, where
|
|
15
|
+
``<interface>`` is the object name of the corresponding coupling interface.
|
|
16
|
+
|
|
17
|
+
This command will overwrite any CSV charting files that already exist,
|
|
18
|
+
including any that were written during the solution.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
syc_name = "WriteCsvChartFiles"
|
|
@@ -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 write_ensight(Command):
|
|
9
|
+
"""
|
|
10
|
+
Write a file with mesh and results which can be loaded into Ensight for
|
|
11
|
+
post processing.
|
|
12
|
+
|
|
13
|
+
Parameters
|
|
14
|
+
----------
|
|
15
|
+
file_name : str
|
|
16
|
+
Base name for Ensight files. It will generate <base>.encas file which
|
|
17
|
+
should be loaded into Ensight. Other files are generated for geometry
|
|
18
|
+
and variables.
|
|
19
|
+
binary : bool, optional
|
|
20
|
+
To control if file is to be written in binary format or ASCII. ASCII
|
|
21
|
+
slows down performance, but may be useful for debugging and seeing
|
|
22
|
+
raw data.
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
syc_name = "WriteEnSight"
|
|
27
|
+
|
|
28
|
+
argument_names = ["file_name", "binary"]
|
|
29
|
+
|
|
30
|
+
class file_name(String):
|
|
31
|
+
"""
|
|
32
|
+
Base name for Ensight files. It will generate <base>.encas file which
|
|
33
|
+
should be loaded into Ensight. Other files are generated for geometry
|
|
34
|
+
and variables.
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
syc_name = "FileName"
|
|
38
|
+
|
|
39
|
+
class binary(Boolean):
|
|
40
|
+
"""
|
|
41
|
+
To control if file is to be written in binary format or ASCII. ASCII
|
|
42
|
+
slows down performance, but may be useful for debugging and seeing
|
|
43
|
+
raw data.
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
syc_name = "Binary"
|
|
@@ -63,6 +63,13 @@ def get_injected_cmd_map(
|
|
|
63
63
|
"abort": lambda **kwargs: rpc.abort(**kwargs),
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
if category == "case":
|
|
67
|
+
ret = {
|
|
68
|
+
"clear_state": lambda **kwargs: _wrap_clear_state(
|
|
69
|
+
root_object, part_mgr, **kwargs
|
|
70
|
+
)
|
|
71
|
+
}
|
|
72
|
+
|
|
66
73
|
return ret
|
|
67
74
|
|
|
68
75
|
|
|
@@ -102,6 +109,13 @@ def _wrap_add_participant(
|
|
|
102
109
|
return root_object._add_participant(**kwargs)
|
|
103
110
|
|
|
104
111
|
|
|
112
|
+
def _wrap_clear_state(
|
|
113
|
+
root_object: Container, part_mgr: ParticipantManager, **kwargs
|
|
114
|
+
) -> None:
|
|
115
|
+
part_mgr.clear()
|
|
116
|
+
root_object._clear_state(**kwargs)
|
|
117
|
+
|
|
118
|
+
|
|
105
119
|
def _wrap_solve(root_object: Container, part_mgr: ParticipantManager) -> None:
|
|
106
120
|
if part_mgr is None:
|
|
107
121
|
root_object._solve()
|
|
@@ -309,4 +323,8 @@ _cmd_yaml = """
|
|
|
309
323
|
essentialArgNames: []
|
|
310
324
|
optionalArgNames: []
|
|
311
325
|
args: []
|
|
326
|
+
- name: ClearState
|
|
327
|
+
pyname: clear_state
|
|
328
|
+
isInjected: true
|
|
329
|
+
pysyc_internal_name: _clear_state
|
|
312
330
|
"""
|
{ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: A Python wrapper for Ansys System Coupling.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
6
|
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
@@ -20,7 +20,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
20
20
|
Requires-Dist: ansys-api-systemcoupling==0.1.0
|
|
21
21
|
Requires-Dist: ansys-platform-instancemanagement~=1.0
|
|
22
22
|
Requires-Dist: grpcio>=1.30.0
|
|
23
|
-
Requires-Dist: grpcio-status>=1.30.0,<1.
|
|
23
|
+
Requires-Dist: grpcio-status>=1.30.0,<1.62.2
|
|
24
24
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
25
25
|
Requires-Dist: protobuf>=3.20.1,<4.0.0
|
|
26
26
|
Requires-Dist: psutil>=5.7.0
|
|
@@ -28,19 +28,19 @@ Requires-Dist: pyyaml
|
|
|
28
28
|
Requires-Dist: appdirs>=1.4.0
|
|
29
29
|
Requires-Dist: importlib-metadata>=4.0
|
|
30
30
|
Requires-Dist: build ; extra == "build"
|
|
31
|
-
Requires-Dist: black==24.
|
|
31
|
+
Requires-Dist: black==24.4.2 ; extra == "classesgen"
|
|
32
32
|
Requires-Dist: isort==5.13.2 ; extra == "classesgen"
|
|
33
|
-
Requires-Dist: ansys-sphinx-theme==0.
|
|
33
|
+
Requires-Dist: ansys-sphinx-theme==0.15.2 ; extra == "doc"
|
|
34
34
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
35
35
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
36
|
-
Requires-Dist: numpydoc==1.
|
|
37
|
-
Requires-Dist: pypandoc==1.
|
|
38
|
-
Requires-Dist: pytest-sphinx==0.6.
|
|
36
|
+
Requires-Dist: numpydoc==1.7.0 ; extra == "doc"
|
|
37
|
+
Requires-Dist: pypandoc==1.13 ; extra == "doc"
|
|
38
|
+
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
|
39
39
|
Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
|
|
40
|
-
Requires-Dist: sphinx-autobuild==2024.
|
|
41
|
-
Requires-Dist: sphinx-autodoc-typehints==
|
|
40
|
+
Requires-Dist: sphinx-autobuild==2024.4.16 ; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx-autodoc-typehints==2.0.1 ; extra == "doc"
|
|
42
42
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
43
|
-
Requires-Dist: sphinx-gallery==0.
|
|
43
|
+
Requires-Dist: sphinx-gallery==0.16.0 ; extra == "doc"
|
|
44
44
|
Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
|
|
45
45
|
Requires-Dist: sphinxcontrib-websupport==1.2.7 ; extra == "doc"
|
|
46
46
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
{ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/RECORD
RENAMED
|
@@ -3,6 +3,7 @@ ansys/systemcoupling/core/_version.py,sha256=WDT4Te1BIWgZU3Gt3WrwVwiGFs4nolWZXbw
|
|
|
3
3
|
ansys/systemcoupling/core/session.py,sha256=Y2W5hUQ9A9POwXboLOc0VTCQx3JZqFGuQFHEiVEreQA,10219
|
|
4
4
|
ansys/systemcoupling/core/syc_version.py,sha256=WMP3A8aKHC7lF59ydsx8poz06B3XZWomCS47EPDFcF4,3783
|
|
5
5
|
ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
|
|
6
|
+
ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
6
7
|
ansys/systemcoupling/core/adaptor/api_23_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
7
8
|
ansys/systemcoupling/core/adaptor/api_23_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
8
9
|
ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
@@ -22,8 +23,8 @@ ansys/systemcoupling/core/adaptor/api_23_1/attribute.py,sha256=00Nmgao_xIWkCZWUj
|
|
|
22
23
|
ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
|
|
23
24
|
ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
24
25
|
ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py,sha256=r0XDGqjIcyGmckx4vCDibcAL-0cWjh0mXn6Nuw5WatE,980
|
|
25
|
-
ansys/systemcoupling/core/adaptor/api_23_1/case_root.py,sha256=
|
|
26
|
-
ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py,sha256=
|
|
26
|
+
ansys/systemcoupling/core/adaptor/api_23_1/case_root.py,sha256=K6CMJqVqF60OkZYznFslB29Un6veJyVYsPdj_z_NU4M,1549
|
|
27
|
+
ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
27
28
|
ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
28
29
|
ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
29
30
|
ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
@@ -93,6 +94,7 @@ ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py,sha256=f_YqcdGrdwa8
|
|
|
93
94
|
ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
94
95
|
ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
95
96
|
ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
|
|
97
|
+
ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
96
98
|
ansys/systemcoupling/core/adaptor/api_23_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
97
99
|
ansys/systemcoupling/core/adaptor/api_23_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
98
100
|
ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
@@ -113,8 +115,8 @@ ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py,sha256=uMc8dFRJjwd
|
|
|
113
115
|
ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
114
116
|
ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
115
117
|
ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
|
|
116
|
-
ansys/systemcoupling/core/adaptor/api_23_2/case_root.py,sha256=
|
|
117
|
-
ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=
|
|
118
|
+
ansys/systemcoupling/core/adaptor/api_23_2/case_root.py,sha256=K6CMJqVqF60OkZYznFslB29Un6veJyVYsPdj_z_NU4M,1549
|
|
119
|
+
ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
118
120
|
ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
119
121
|
ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
120
122
|
ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
@@ -187,6 +189,7 @@ ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py,sha256=czWKByOsUAFR
|
|
|
187
189
|
ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
188
190
|
ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
189
191
|
ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py,sha256=_Wbmc-g3FyEyFodFjklI8IBJ3lLIWEIMHsMdAFlddsM,1198
|
|
192
|
+
ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
190
193
|
ansys/systemcoupling/core/adaptor/api_24_1/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
191
194
|
ansys/systemcoupling/core/adaptor/api_24_1/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
192
195
|
ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
@@ -211,8 +214,8 @@ ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py,sha256=uMc8dFRJjwd
|
|
|
211
214
|
ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
212
215
|
ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
213
216
|
ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
|
|
214
|
-
ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=
|
|
215
|
-
ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=
|
|
217
|
+
ansys/systemcoupling/core/adaptor/api_24_1/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
|
|
218
|
+
ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
216
219
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
217
220
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
218
221
|
ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
@@ -289,9 +292,117 @@ ansys/systemcoupling/core/adaptor/api_24_1/variable.py,sha256=BJldfmMGuyO9riy6Lw
|
|
|
289
292
|
ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
290
293
|
ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
291
294
|
ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
295
|
+
ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py,sha256=zbTC_i9XBHO7nMnw-Dqm83V_LbLJl7BlVYlzctZ8NOk,1374
|
|
296
|
+
ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py,sha256=z13uOkk8M-Ue1_znQXEyGvYOYW1zHSV-MpZgEMDPlTg,215
|
|
297
|
+
ansys/systemcoupling/core/adaptor/api_24_2/_solve.py,sha256=MOOadf9YEzjm67-3VUewym8bVJP7hcbuo6YuN_c6HTI,204
|
|
298
|
+
ansys/systemcoupling/core/adaptor/api_24_2/abort.py,sha256=BTKQbwh-d5juGRF5EsjFDeQ8luYNH2clYFdKYyq0iQg,858
|
|
299
|
+
ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py,sha256=Uf2rts5LwKgHRurdR0FMxg34LncMqsT9y_DFG41kFaU,1421
|
|
300
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py,sha256=bEa1I3IUBpJvta4I7OrmuOOy7eAXIGx7Zd5ZxJsnTO8,1113
|
|
301
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py,sha256=9B5IeJo1xTJ74J5wBKwpTlUuiXNM2ylVk2usF-F-G3E,8251
|
|
302
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py,sha256=FRwWfL7OKfA9fRXEt3wLqk9SfkSu5eEJhskaSZ1x7Bs,8168
|
|
303
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py,sha256=fqYkvyznmUFZ-k5t57UVpWmxplq5J2vgVV13Jg8cIy4,2044
|
|
304
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py,sha256=Kk0EICwjRtcdFDDWYSgQr9sr5zNr_l2eOXa2zWd5eWU,1079
|
|
305
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py,sha256=Oh_a3GHbHG_JqTmZOvmVbpLckQRhy61OcpKn55aHBFw,2574
|
|
306
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py,sha256=ALH4GgubMlRVKBj_P8D25ZMCoaG-5UE7_sC7RjKwBkI,2324
|
|
307
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py,sha256=EdIXcG8eTluhZWKq0iVCxLXUD2Gv1YxCGD5s4-NiwEQ,1150
|
|
308
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py,sha256=BItyZJBvd4S8jpiulSCaOohCHnDJ6U1ee-S3f7NO_Yo,735
|
|
309
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py,sha256=-oQTyzmbkyttIxRAM5v27BJjXeRnLLNvcOuC9MgoLRg,6389
|
|
310
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py,sha256=nkeFI6QMouZJ01ToDk-VzeH17ISwYkoQx5QSqr-xyzk,1170
|
|
311
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py,sha256=FjPaV4lc8H_FvUScGif4cHWfXKKun97uUr_qJxaPotY,1105
|
|
312
|
+
ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py,sha256=NFTCbcM-CVHu3EQnIdiykuLvku1mpLtRrWwQKVBrN6E,3347
|
|
313
|
+
ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py,sha256=VM5rSA4x3dtje-ah5AIA3on6ZPcRo3y9nYie4L4Q8QE,10857
|
|
314
|
+
ansys/systemcoupling/core/adaptor/api_24_2/apip.py,sha256=Ls8lYnN6bt0Qjiy_eBvx60EluF8OlcRRtT4wMlR1CJU,839
|
|
315
|
+
ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py,sha256=StmdIhKMdhA4w1KkZT_jV4dop4Ns8KkpDDrg5emvIrU,1015
|
|
316
|
+
ansys/systemcoupling/core/adaptor/api_24_2/attribute.py,sha256=00Nmgao_xIWkCZWUj3WaJzuXHtsfKu0nJKZlfAbjVGU,403
|
|
317
|
+
ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py,sha256=uMc8dFRJjwdayRG-HanvbW6FvEaNQF4c41sN8sUSIlw,1456
|
|
318
|
+
ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py,sha256=Jofkg8qF7R2331feqF2_Uhw16QWweErGo_noC-vmbio,1428
|
|
319
|
+
ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py,sha256=G8KlmNLTwHlItvnGCQr-zn6es9XNWB95ghZZMpvd4PA,1200
|
|
320
|
+
ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py,sha256=ZhVEI4Or7Mo0Qhxkv7YDqO5a-bc1EORV9t55XEzNl58,1353
|
|
321
|
+
ansys/systemcoupling/core/adaptor/api_24_2/case_root.py,sha256=eVKGQ0WSjq5tysBpfULVM1rzOYTqDPWCoiPkRGGnpnc,1378
|
|
322
|
+
ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py,sha256=1GC9fvckwPgUXc5CPItk_pSh8l6JWQOagMCd2XD_RDA,419
|
|
323
|
+
ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py,sha256=70-dhniz9W3MoChR95iz1jFHl75w92DV-UXAzVl5YL4,1180
|
|
324
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py,sha256=tKPoCpvEHBwufEYvpTFTuPflrs45XaE_eMm_ny46fy0,471
|
|
325
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py,sha256=CKYICh0qc3v9mY0wsf8d959yBwjRGdUZDiIr0NbwuYo,1089
|
|
326
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py,sha256=KvXZYMoyoX-HZiyWfZKilOpn3IqPjc1qUwIQlZjtDEQ,579
|
|
327
|
+
ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py,sha256=WsQNIlUpf1e2AGwV_cpxZ2tK0ad1HcuxSGCL67j6K4w,8961
|
|
328
|
+
ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py,sha256=xuWb1r6KLMjBgI1qP3iMhCJmhtxQOYjhbazp8qUAXvQ,1118
|
|
329
|
+
ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py,sha256=5Ki-rTC1iPe0tfa1GaiuWl2beVlPUdovK0OeSupgtLw,450
|
|
330
|
+
ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py,sha256=t-jyUSBSk5NWAtIdLZIAtatr_5LsBUtJCUGl7xpJfX8,6375
|
|
331
|
+
ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py,sha256=lE7aKe-B7kvw1ZH1iAR7TMom6v1M_QvaxR4hQf6mJjo,509
|
|
332
|
+
ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py,sha256=fKV5y0vxV8sOzctwqvEwoVyNPUCbJU2sjK_NNOxZJHQ,1069
|
|
333
|
+
ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py,sha256=Glu90DtBnexRB-pz5RFOU6uuKAS4a_VzLN0r_f2vCFU,2822
|
|
334
|
+
ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py,sha256=ycSdfbRGCFPqJnIhXDBUvsZ7RkF4GkxeEuI--8KPN6M,9047
|
|
335
|
+
ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py,sha256=lYYPEWRHb4ztgLKlm5iU9CoWR9js54PWoiuqgU-Zvz8,556
|
|
336
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression.py,sha256=uolUnB2N6U88ieCb24CJlrbwNfl0i8JA-eTqY9iGAHk,447
|
|
337
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py,sha256=YueODFAPyY03_Ua0_bV4xESfTsQm0FBLJY85UH300Iw,1039
|
|
338
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py,sha256=_sxq4PV0Of6zJP8VTor-wvBS8SoWOhVEeUsyIQ5wntQ,510
|
|
339
|
+
ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py,sha256=WHc3R0Y_xkCir1A8eDkwlvZWKUOy4K56tTAnnlFdiP8,1265
|
|
340
|
+
ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py,sha256=kStH-C9Yp9n45oTuNcmii-qtScLJUqdd9DNKoZNu8IY,595
|
|
341
|
+
ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py,sha256=SlUFSf85kPDjVhSps07nKXQyywgLGmmoeSwPJZrikvI,2290
|
|
342
|
+
ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py,sha256=wZmboQqUnPpFJikAxv2MT7HHG0xnufIoVrS6kFoyLT4,454
|
|
343
|
+
ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py,sha256=sq0cTMr4RpGSPFCmFmaPmDRBYXPR7JHixW9ZEDFifh8,4880
|
|
344
|
+
ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py,sha256=BIAZZyTEm7bx2Kj4AbInWJErrQtB2t1iiHdohaJsp9Y,1030
|
|
345
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py,sha256=VfbZ6oKtNEa02L3XQwlOajzUIfs9UxUhjokehMUnm9w,617
|
|
346
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py,sha256=XSSEwW_U5hL-GX0oWu7Wriu_JTSUItsVQmZFtt2Ytx8,660
|
|
347
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py,sha256=6crBtN1MKpIcwReOZk0rlGBx_OL8dfD8coLNUZQXK64,227
|
|
348
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py,sha256=k5r3YfkgEUi6QT3ZafMuKcY1yDwMiyqSztiKFZig8n4,604
|
|
349
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py,sha256=rjDc9bjQNaESFnW6OtnKcDJCUkbGsiIJB-y9T06NhjQ,730
|
|
350
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py,sha256=a4YvESxFMx3GMk5NJNZ2ck2zWMjvvkKi7k79NpHJ2yc,772
|
|
351
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py,sha256=MBg7DLCDUFDnBhB16ogEW00_PwVMXxiWs3ht18eTZ2U,2222
|
|
352
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py,sha256=Q87bRy0PDB7OaTMy5GOu-DUQ27IX-n62kZ6NnYIpR4E,304
|
|
353
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py,sha256=ITKmHx-2LaSGVlc0eisfoEjYCr0__b52oKKDycrEDyo,829
|
|
354
|
+
ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py,sha256=S4XWsDhtsDKs-nEJMEUgD4zxh76C4G_n3h2zfgSy9ds,1000
|
|
355
|
+
ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py,sha256=XLH2TY20GZshqhYZJBrdNeMukgpGyra_MNZhpbZj_Q4,4506
|
|
356
|
+
ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py,sha256=PU9djZCJvD8aX4LtA6MyfnqsVXqloitCp4gOTariLT0,909
|
|
357
|
+
ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py,sha256=BY_zp9YObc2a-H4T_flTVZ95N3JwzH5Df50sT5bI2Mc,993
|
|
358
|
+
ansys/systemcoupling/core/adaptor/api_24_2/initialize.py,sha256=YmTmUme4-tfRtv4XMxsUzIgw-XGyuJttuGxdbFfftns,1025
|
|
359
|
+
ansys/systemcoupling/core/adaptor/api_24_2/instancing.py,sha256=3TW26HU9oiD0Px1kmhk-IfbF9op2GUeTiSCqOV1mf7I,507
|
|
360
|
+
ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py,sha256=G_-ZpzN2S06EPvOZtYPrAcXn1nQ5_Ns9TxrJwX8A_kQ,2231
|
|
361
|
+
ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py,sha256=r3rfTKTDykPKVWxLENv0xKLCLep_EQIFe6ZW4qPL9kQ,906
|
|
362
|
+
ansys/systemcoupling/core/adaptor/api_24_2/library.py,sha256=woA6i5bJwuvX0rpwPvA037UcJQ68GRVSuEEFnwuKKFw,932
|
|
363
|
+
ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py,sha256=3vBBtdVUaM5pZasN0wzIO-2Nx3Ei-qa9yLIvD2RM_jA,486
|
|
364
|
+
ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py,sha256=bRhRPpjgWIRgpLiAB3Rc6_LJnrD1WmsvURITDjtaADY,3258
|
|
365
|
+
ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py,sha256=OTLC1mbtEepHGBvyT_Up52TYoi7jnfAMKO6eJ0OdZS4,8900
|
|
366
|
+
ansys/systemcoupling/core/adaptor/api_24_2/open.py,sha256=UaI7smLrHnzBULHTQPwlnc6YAFODxNwdCgh_bEE-YuQ,4810
|
|
367
|
+
ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py,sha256=rJZgR1Hskl8qcwK1DMpVeMAxtFCM-w06o2W3FoGkCqA,1902
|
|
368
|
+
ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py,sha256=8XRCnVH8REZtLhzgzfzvoJlJDuMhTvGSvv8DIIESH-4,1153
|
|
369
|
+
ansys/systemcoupling/core/adaptor/api_24_2/output_control.py,sha256=GWZCrFkq6UOPGiHAVZuB1yU4gVB2HS-fHJOh1Li7lzI,4587
|
|
370
|
+
ansys/systemcoupling/core/adaptor/api_24_2/parameter.py,sha256=lKDRb2gBnqPq7dd2bUY93EdfIZw4nGZN-F2GIedXzko,420
|
|
371
|
+
ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py,sha256=cbWCTWoLtidkiu1YasufFmfmbx6iHgCXFGC5gUeZtLo,1686
|
|
372
|
+
ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py,sha256=poDXGOmScGs7COyiqRamDOxnPlVOF4bYu7tHt-4kSzw,6261
|
|
373
|
+
ansys/systemcoupling/core/adaptor/api_24_2/properties.py,sha256=nhwhkbDvBsMkkBpSgd2_1kJPyPINA7YWJF-Yasu5Wp4,1036
|
|
374
|
+
ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py,sha256=OkULB8ak-5KsCUZYFfeuUMxkCbCoOZBtuENhIVe8ahY,1469
|
|
375
|
+
ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py,sha256=yVZ5xcOW49bBf2lAsbrOQoad8mVvHDzNiI7rJKbR1-Q,476
|
|
376
|
+
ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py,sha256=OPcv4yuajxCZmyll3M1l61ZuMHbVC7QKp3uZaLOJgZ0,2421
|
|
377
|
+
ansys/systemcoupling/core/adaptor/api_24_2/region.py,sha256=PKqU-nQejxJF_l2G8tPJ39IbiVtGRyun9kubM07X8w0,393
|
|
378
|
+
ansys/systemcoupling/core/adaptor/api_24_2/region_child.py,sha256=qiMQrHeJlIwItiu3x8MGZWXzenPvTK3USHu6V5a9t5c,2204
|
|
379
|
+
ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py,sha256=TL0Mg7PKqVjkkxNa2FVm-4-bEeekIXHj6ZPHXl1g38A,357
|
|
380
|
+
ansys/systemcoupling/core/adaptor/api_24_2/results.py,sha256=t-uhPT5K6WpP6C4kNlo642gbS6mP5Wq5suL6pGkep1o,2658
|
|
381
|
+
ansys/systemcoupling/core/adaptor/api_24_2/save.py,sha256=cf2Wtmr2j7tedleIXEZZJVloi5zH00vx7kCQalkNDW4,1684
|
|
382
|
+
ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py,sha256=ToFCyETB_v_nBMP2gs99U8-j2NoH4KYZyvmL5-zKN8g,1950
|
|
383
|
+
ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py,sha256=8UL2I5sAleqiwZ9XtyVjp_z4DWAnwP1UrN2E7OX5Tlg,8734
|
|
384
|
+
ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py,sha256=piXJW0ZiGH-5WK-4dUWMymGR2iQeptCOK0a3yw980O0,808
|
|
385
|
+
ansys/systemcoupling/core/adaptor/api_24_2/side.py,sha256=JofUJvD2LVcaKhcXtaH7WiUE71fi5c1_3jkMOsy_AZk,372
|
|
386
|
+
ansys/systemcoupling/core/adaptor/api_24_2/side_child.py,sha256=WikcffoNsdL6C4IGN1YTsH5PevhJ8s7SxyIp7v6xKq8,1721
|
|
387
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py,sha256=PJSTDi5fXgXl2npmrdzMBKq_BBtAxCbylRD7If9oF8E,4048
|
|
388
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py,sha256=-raOFtBqgDbzZehM6MXS4icTH5EnD4nER6q5mWtZ3ew,3157
|
|
389
|
+
ansys/systemcoupling/core/adaptor/api_24_2/solve.py,sha256=8Hd6x5j7_tUnuv8LgMx7ilEx0NMuajxRRHSHwfhC8GE,1057
|
|
390
|
+
ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py,sha256=VTp7lDi8s9SithvDDUtzv0fs4FtfZ7Vm2ZAnUbgnbZE,5536
|
|
391
|
+
ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py,sha256=Nn1wJbj7XZx_CEyJIFDx0KfjcUsZHkW4cdyMC36eDdo,1764
|
|
392
|
+
ansys/systemcoupling/core/adaptor/api_24_2/step.py,sha256=Yq9FzuKFxpeODCr3Q5hagT5hjPuiBYN4-i9p0SS7kVE,1986
|
|
393
|
+
ansys/systemcoupling/core/adaptor/api_24_2/transformation.py,sha256=ypATHCRKPjrkyvGeRgxba1FwdWsUQqz5YFpaPrvtS2A,509
|
|
394
|
+
ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py,sha256=ny8wp4OQJz9WP8Rg9A1B6XY0XATeP4ugkubmYE6Ij20,1837
|
|
395
|
+
ansys/systemcoupling/core/adaptor/api_24_2/type.py,sha256=_u0sBj4RHSXOz_1DOH-bl42T0rZPTjI5jiVIttd-Jt8,879
|
|
396
|
+
ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py,sha256=hO4ZuCHx1Ym5EVm8oBRQL-bvZSv9ZfewVyEWSe30_cA,5626
|
|
397
|
+
ansys/systemcoupling/core/adaptor/api_24_2/update_control.py,sha256=oXA2Bi_5OMOZ1JsF7aWtZQni9VAIzFLIIj8bcjxFSzY,1049
|
|
398
|
+
ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py,sha256=oY4ZaXvT0512dmQDrrLB40hENRCrfYfu63UUmDiFd74,2341
|
|
399
|
+
ansys/systemcoupling/core/adaptor/api_24_2/variable.py,sha256=BJldfmMGuyO9riy6LwtRrqIaEUPD1Ztexf0CEVubCsE,411
|
|
400
|
+
ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py,sha256=aySH9jOK02RU8OCXyp61XKxvWsV7ZLkSa1yKEimZNas,7234
|
|
401
|
+
ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py,sha256=32YlQ9t5bb1qzazVVM4fQOVb1EthrEmPHSXf3dzqv2Q,656
|
|
402
|
+
ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py,sha256=cy1ZUL2Td2WCfuuWWIUigMmPdxwRKqV9msH0pJI624Y,1278
|
|
292
403
|
ansys/systemcoupling/core/adaptor/impl/get_status_messages.py,sha256=3wSnWTUS3q4VdufmHZ7jxyVCZONITFtP_tUB-8NnQuU,4210
|
|
293
404
|
ansys/systemcoupling/core/adaptor/impl/get_syc_version.py,sha256=CIq2J8h8Eapq_jrXpMMHAa9oqSSaNR5G7NAYZseVgJg,2489
|
|
294
|
-
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=
|
|
405
|
+
ansys/systemcoupling/core/adaptor/impl/injected_commands.py,sha256=cFnPP1MEEUrwaRFzROvHTEZ0iXr69102PChqlw3GMIc,12693
|
|
295
406
|
ansys/systemcoupling/core/adaptor/impl/root_source.py,sha256=d-NSP104VjR65qTiqp1rlST6VYJRUPf9YHcpR8ABssQ,12828
|
|
296
407
|
ansys/systemcoupling/core/adaptor/impl/static_info.py,sha256=9mNFxRrn_52Cn4bJWpyFQKUhliwSWBZbzY_Fj8s-TVo,14927
|
|
297
408
|
ansys/systemcoupling/core/adaptor/impl/syc_proxy.py,sha256=FHe3EI5dhgWlXvT8mhiORm2zC2nmPCvq4gIYC1GDRmk,4784
|
|
@@ -317,12 +428,12 @@ ansys/systemcoupling/core/participant/manager.py,sha256=JlLGlLBtaP_4iwt0g27znqj1
|
|
|
317
428
|
ansys/systemcoupling/core/participant/mapdl.py,sha256=v9Ms6uVaPj1-AbZYsaAY9JR_WpkLD7xSOJ3kQRGgtT0,11166
|
|
318
429
|
ansys/systemcoupling/core/participant/protocol.py,sha256=BAcuagcLroZWAOwAsktQZ3Ga47-8OFTXVr84pDZmwcs,2427
|
|
319
430
|
ansys/systemcoupling/core/util/file_transfer.py,sha256=kzn5dnEhmPmahwbooeTxf5Zv-CaTORlv53fOfLJwits,5186
|
|
320
|
-
ansys/systemcoupling/core/util/logging.py,sha256=
|
|
431
|
+
ansys/systemcoupling/core/util/logging.py,sha256=dFj0migeyUGke7sYL-hN80amMnUvuIO1kkCsOH_8ipc,5059
|
|
321
432
|
ansys/systemcoupling/core/util/name_util.py,sha256=AqALTBRe9hjS0SqbKk2BnN09pCq0M1irhd9illTTuwk,1470
|
|
322
433
|
ansys/systemcoupling/core/util/pathstr.py,sha256=xfnBAee68WG1R8s2LkoO9fLYZsJ0Nrx84woVuQv9bVY,1941
|
|
323
434
|
ansys/systemcoupling/core/util/state_keys.py,sha256=52gk88CJw1K3YIC6hg7Jc6_C2_EznQjrB1FrpcjhI1M,4545
|
|
324
435
|
ansys/systemcoupling/core/util/yaml_helper.py,sha256=6j2VNGXSEiJ11GUsUn4Z3wbPB9Cw-5JBsb5gWHAVsYo,2982
|
|
325
|
-
ansys_systemcoupling_core-0.
|
|
326
|
-
ansys_systemcoupling_core-0.
|
|
327
|
-
ansys_systemcoupling_core-0.
|
|
328
|
-
ansys_systemcoupling_core-0.
|
|
436
|
+
ansys_systemcoupling_core-0.5.0.dist-info/LICENSE,sha256=4sCWlgkqcWBhkmfDi4UpSkzpTxXvMhLfR0G6dxLQuMA,1090
|
|
437
|
+
ansys_systemcoupling_core-0.5.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
438
|
+
ansys_systemcoupling_core-0.5.0.dist-info/METADATA,sha256=a73nNHU6B772GTlBdbNFoBhrwp77K2iu456fSQZmvgs,10946
|
|
439
|
+
ansys_systemcoupling_core-0.5.0.dist-info/RECORD,,
|
{ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.5.0.dist-info}/WHEEL
RENAMED
|
File without changes
|