ansys-systemcoupling-core 0.9.1__py3-none-any.whl → 0.10.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ansys-systemcoupling-core might be problematic. Click here for more details.

Files changed (129) hide show
  1. ansys/systemcoupling/core/__init__.py +1 -1
  2. ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py +80 -0
  3. ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +13 -0
  4. ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +13 -0
  5. ansys/systemcoupling/core/adaptor/api_25_2/abort.py +39 -0
  6. ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +46 -0
  7. ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +43 -0
  8. ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +190 -0
  9. ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +61 -0
  10. ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +32 -0
  11. ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +43 -0
  12. ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +77 -0
  13. ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +42 -0
  14. ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +41 -0
  15. ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +177 -0
  16. ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +40 -0
  17. ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +43 -0
  18. ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
  19. ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +333 -0
  20. ansys/systemcoupling/core/adaptor/api_25_2/apip.py +33 -0
  21. ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +44 -0
  22. ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
  23. ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +74 -0
  24. ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +46 -0
  25. ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +40 -0
  26. ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +56 -0
  27. ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +62 -0
  28. ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +18 -0
  29. ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +41 -0
  30. ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +20 -0
  31. ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +42 -0
  32. ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +23 -0
  33. ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +272 -0
  34. ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +28 -0
  35. ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +20 -0
  36. ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +195 -0
  37. ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +30 -0
  38. ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +42 -0
  39. ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +96 -0
  40. ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +266 -0
  41. ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +24 -0
  42. ansys/systemcoupling/core/adaptor/api_25_2/expression.py +20 -0
  43. ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +36 -0
  44. ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +20 -0
  45. ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +46 -0
  46. ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +24 -0
  47. ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +77 -0
  48. ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +20 -0
  49. ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +164 -0
  50. ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +53 -0
  51. ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +29 -0
  52. ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
  53. ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +34 -0
  54. ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +29 -0
  55. ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +32 -0
  56. ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +25 -0
  57. ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +52 -0
  58. ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +13 -0
  59. ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +32 -0
  60. ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +43 -0
  61. ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +155 -0
  62. ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +36 -0
  63. ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +36 -0
  64. ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +27 -0
  65. ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +25 -0
  66. ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +114 -0
  67. ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +39 -0
  68. ansys/systemcoupling/core/adaptor/api_25_2/library.py +37 -0
  69. ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +20 -0
  70. ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +100 -0
  71. ansys/systemcoupling/core/adaptor/api_25_2/map.py +19 -0
  72. ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +273 -0
  73. ansys/systemcoupling/core/adaptor/api_25_2/open.py +107 -0
  74. ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +56 -0
  75. ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +37 -0
  76. ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +134 -0
  77. ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +20 -0
  78. ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +60 -0
  79. ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +148 -0
  80. ansys/systemcoupling/core/adaptor/api_25_2/properties.py +36 -0
  81. ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +46 -0
  82. ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +20 -0
  83. ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +71 -0
  84. ansys/systemcoupling/core/adaptor/api_25_2/region.py +20 -0
  85. ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +71 -0
  86. ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +14 -0
  87. ansys/systemcoupling/core/adaptor/api_25_2/results.py +89 -0
  88. ansys/systemcoupling/core/adaptor/api_25_2/save.py +53 -0
  89. ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +54 -0
  90. ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +243 -0
  91. ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +75 -0
  92. ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +25 -0
  93. ansys/systemcoupling/core/adaptor/api_25_2/side.py +20 -0
  94. ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +56 -0
  95. ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +127 -0
  96. ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +134 -0
  97. ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
  98. ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +157 -0
  99. ansys/systemcoupling/core/adaptor/api_25_2/step.py +57 -0
  100. ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +21 -0
  101. ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +62 -0
  102. ansys/systemcoupling/core/adaptor/api_25_2/type.py +39 -0
  103. ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +158 -0
  104. ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +43 -0
  105. ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +19 -0
  106. ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +61 -0
  107. ansys/systemcoupling/core/adaptor/api_25_2/variable.py +20 -0
  108. ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +231 -0
  109. ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +21 -0
  110. ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +46 -0
  111. ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +32 -0
  112. ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +4 -1
  113. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +3 -1
  114. ansys/systemcoupling/core/charts/csv_chartdata.py +4 -3
  115. ansys/systemcoupling/core/charts/plot_functions.py +12 -4
  116. ansys/systemcoupling/core/charts/plotter.py +3 -2
  117. ansys/systemcoupling/core/client/grpc_client.py +11 -2
  118. ansys/systemcoupling/core/client/syc_container.py +40 -35
  119. ansys/systemcoupling/core/client/syc_process.py +5 -2
  120. ansys/systemcoupling/core/native_api/datamodel_metadata.py +3 -2
  121. ansys/systemcoupling/core/native_api/object_path.py +2 -1
  122. ansys/systemcoupling/core/syc_version.py +1 -1
  123. ansys/systemcoupling/core/util/assertion.py +38 -0
  124. ansys/systemcoupling/core/util/file_transfer.py +2 -1
  125. ansys/systemcoupling/core/util/yaml_helper.py +5 -5
  126. {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/METADATA +14 -8
  127. {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/RECORD +129 -18
  128. {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/WHEEL +0 -0
  129. {ansys_systemcoupling_core-0.9.1.dist-info → ansys_systemcoupling_core-0.10.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,333 @@
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
+ ("is_user_friendly_mapping", "IsUserFriendlyMapping", "bool"),
81
+ ("reduce_informational_output", "ReduceInformationalOutput", "bool"),
82
+ ("participant_precision", "ParticipantPrecision", "str"),
83
+ ("avoid_rbf", "AvoidRBF", "str"),
84
+ ("interactive_initialization", "InteractiveInitialization", "bool"),
85
+ ]
86
+
87
+ @property
88
+ def analysis_type(self) -> str:
89
+ """Analysis type.
90
+
91
+ Allowed values:
92
+ - \"Steady\"
93
+ - \"Transient\" """
94
+ return self.get_property_state("analysis_type")
95
+
96
+ @analysis_type.setter
97
+ def analysis_type(self, value: str):
98
+ self.set_property_state("analysis_type", value)
99
+
100
+ @property
101
+ def optimize_if_one_way(self) -> bool:
102
+ """Optimizes various controls for a one-way workflow, if the
103
+ data transfers form a unidirectional graph."""
104
+ return self.get_property_state("optimize_if_one_way")
105
+
106
+ @optimize_if_one_way.setter
107
+ def optimize_if_one_way(self, value: bool):
108
+ self.set_property_state("optimize_if_one_way", value)
109
+
110
+ @property
111
+ def warped_face_tolerance(self) -> RealType:
112
+ """Set warped face detection tolerance (1e-6 is default value, 1.0 means disabled)."""
113
+ return self.get_property_state("warped_face_tolerance")
114
+
115
+ @warped_face_tolerance.setter
116
+ def warped_face_tolerance(self, value: RealType):
117
+ self.set_property_state("warped_face_tolerance", value)
118
+
119
+ @property
120
+ def allow_simultaneous_update(self) -> bool:
121
+ """Allow simultaneous update of independent participants."""
122
+ return self.get_property_state("allow_simultaneous_update")
123
+
124
+ @allow_simultaneous_update.setter
125
+ def allow_simultaneous_update(self, value: bool):
126
+ self.set_property_state("allow_simultaneous_update", value)
127
+
128
+ @property
129
+ def simultaneous_participants(self) -> str:
130
+ """Controls which participants are updated simultaneously."""
131
+ return self.get_property_state("simultaneous_participants")
132
+
133
+ @simultaneous_participants.setter
134
+ def simultaneous_participants(self, value: str):
135
+ self.set_property_state("simultaneous_participants", value)
136
+
137
+ @property
138
+ def allow_simultaneous_initialization(self) -> bool:
139
+ """Allow simultaneous initialization of participants."""
140
+ return self.get_property_state("allow_simultaneous_initialization")
141
+
142
+ @allow_simultaneous_initialization.setter
143
+ def allow_simultaneous_initialization(self, value: bool):
144
+ self.set_property_state("allow_simultaneous_initialization", value)
145
+
146
+ @property
147
+ def mpi_pause_timeout(self) -> RealType:
148
+ """Specify MPI pause time (in seconds) to wait for other participants to finish solving"""
149
+ return self.get_property_state("mpi_pause_timeout")
150
+
151
+ @mpi_pause_timeout.setter
152
+ def mpi_pause_timeout(self, value: RealType):
153
+ self.set_property_state("mpi_pause_timeout", value)
154
+
155
+ @property
156
+ def partitioning_algorithm(self) -> str:
157
+ """Partitioning algorithm used when participants are running in parallel.
158
+
159
+ Allowed values:
160
+
161
+ - \"SharedAllocateMachines\" - Participants share both machines and cores.
162
+
163
+ - \"SharedAllocateCores\" - Participants share machines but not cores.
164
+
165
+ - \"DistributedAllocateCores\" - Participants minimally share cores and machines. (Linux only)
166
+
167
+ - \"DistributedAllocateMachines\" - Participants never share cores or machines. (Linux only)
168
+
169
+ - \"Custom\" - Custom algorithm."""
170
+ return self.get_property_state("partitioning_algorithm")
171
+
172
+ @partitioning_algorithm.setter
173
+ def partitioning_algorithm(self, value: str):
174
+ self.set_property_state("partitioning_algorithm", value)
175
+
176
+ @property
177
+ def cleanup_inflated_fm_us(self) -> bool:
178
+ """Controls whether System Coupling will cleanup inflated FMUs at end of analysis."""
179
+ return self.get_property_state("cleanup_inflated_fm_us")
180
+
181
+ @cleanup_inflated_fm_us.setter
182
+ def cleanup_inflated_fm_us(self, value: bool):
183
+ self.set_property_state("cleanup_inflated_fm_us", value)
184
+
185
+ @property
186
+ def allow_iterations_only_mode(self) -> bool:
187
+ """Explicitly set whether iterations-only mode is allowed."""
188
+ return self.get_property_state("allow_iterations_only_mode")
189
+
190
+ @allow_iterations_only_mode.setter
191
+ def allow_iterations_only_mode(self, value: bool):
192
+ self.set_property_state("allow_iterations_only_mode", value)
193
+
194
+ @property
195
+ def target_initialization_option(self) -> str:
196
+ """Select option for target initialization."""
197
+ return self.get_property_state("target_initialization_option")
198
+
199
+ @target_initialization_option.setter
200
+ def target_initialization_option(self, value: str):
201
+ self.set_property_state("target_initialization_option", value)
202
+
203
+ @property
204
+ def fluent_region_update_at_step(self) -> bool:
205
+ """Allow update of Fluent regions at the beginning of a step."""
206
+ return self.get_property_state("fluent_region_update_at_step")
207
+
208
+ @fluent_region_update_at_step.setter
209
+ def fluent_region_update_at_step(self, value: bool):
210
+ self.set_property_state("fluent_region_update_at_step", value)
211
+
212
+ @property
213
+ def mesh_import_on_initialization(self) -> bool:
214
+ """Select whether to import the mesh during the analysis initialization."""
215
+ return self.get_property_state("mesh_import_on_initialization")
216
+
217
+ @mesh_import_on_initialization.setter
218
+ def mesh_import_on_initialization(self, value: bool):
219
+ self.set_property_state("mesh_import_on_initialization", value)
220
+
221
+ @property
222
+ def import_all_regions(self) -> bool:
223
+ """Select whether to import mesh for all defined regions."""
224
+ return self.get_property_state("import_all_regions")
225
+
226
+ @import_all_regions.setter
227
+ def import_all_regions(self, value: bool):
228
+ self.set_property_state("import_all_regions", value)
229
+
230
+ @property
231
+ def bypass_fluent_adapter(self) -> bool:
232
+ """Switch to bypass Fluent adapter."""
233
+ return self.get_property_state("bypass_fluent_adapter")
234
+
235
+ @bypass_fluent_adapter.setter
236
+ def bypass_fluent_adapter(self, value: bool):
237
+ self.set_property_state("bypass_fluent_adapter", value)
238
+
239
+ @property
240
+ def variable_to_expression_transfer(self) -> bool:
241
+ """Convert variable-based data transfers to expression transfers."""
242
+ return self.get_property_state("variable_to_expression_transfer")
243
+
244
+ @variable_to_expression_transfer.setter
245
+ def variable_to_expression_transfer(self, value: bool):
246
+ self.set_property_state("variable_to_expression_transfer", value)
247
+
248
+ @property
249
+ def update_mapping_weights(self) -> str:
250
+ """Weight factor when multiple transfers are stabilized.
251
+
252
+ Allowed values:
253
+
254
+ - \"Off\" (default)
255
+ - \"EveryStep\"
256
+ - \"EveryIteration\" """
257
+ return self.get_property_state("update_mapping_weights")
258
+
259
+ @update_mapping_weights.setter
260
+ def update_mapping_weights(self, value: str):
261
+ self.set_property_state("update_mapping_weights", value)
262
+
263
+ @property
264
+ def solve_incremental_displacement_first(self) -> bool:
265
+ """Force participants serving incremental displacement to solve first."""
266
+ return self.get_property_state("solve_incremental_displacement_first")
267
+
268
+ @solve_incremental_displacement_first.setter
269
+ def solve_incremental_displacement_first(self, value: bool):
270
+ self.set_property_state("solve_incremental_displacement_first", value)
271
+
272
+ @property
273
+ def write_scs_file(self) -> bool:
274
+ """Force writing of scs file even if participants are auto-started."""
275
+ return self.get_property_state("write_scs_file")
276
+
277
+ @write_scs_file.setter
278
+ def write_scs_file(self, value: bool):
279
+ self.set_property_state("write_scs_file", value)
280
+
281
+ @property
282
+ def check_for_input_files_changes(self) -> str:
283
+ """Controls whether System Coupling will check for changes in participant input files."""
284
+ return self.get_property_state("check_for_input_files_changes")
285
+
286
+ @check_for_input_files_changes.setter
287
+ def check_for_input_files_changes(self, value: str):
288
+ self.set_property_state("check_for_input_files_changes", value)
289
+
290
+ @property
291
+ def is_user_friendly_mapping(self) -> bool:
292
+ """Controls whether is System Coupling user friendly mapping workflow."""
293
+ return self.get_property_state("is_user_friendly_mapping")
294
+
295
+ @is_user_friendly_mapping.setter
296
+ def is_user_friendly_mapping(self, value: bool):
297
+ self.set_property_state("is_user_friendly_mapping", value)
298
+
299
+ @property
300
+ def reduce_informational_output(self) -> bool:
301
+ """Reduce the information written to the transcript and stdout"""
302
+ return self.get_property_state("reduce_informational_output")
303
+
304
+ @reduce_informational_output.setter
305
+ def reduce_informational_output(self, value: bool):
306
+ self.set_property_state("reduce_informational_output", value)
307
+
308
+ @property
309
+ def participant_precision(self) -> str:
310
+ """Set global option for participant precision"""
311
+ return self.get_property_state("participant_precision")
312
+
313
+ @participant_precision.setter
314
+ def participant_precision(self, value: str):
315
+ self.set_property_state("participant_precision", value)
316
+
317
+ @property
318
+ def avoid_rbf(self) -> str:
319
+ """UNDOCUMENTED"""
320
+ return self.get_property_state("avoid_rbf")
321
+
322
+ @avoid_rbf.setter
323
+ def avoid_rbf(self, value: str):
324
+ self.set_property_state("avoid_rbf", value)
325
+
326
+ @property
327
+ def interactive_initialization(self) -> bool:
328
+ """Controls whether using interactive initialization for cosim"""
329
+ return self.get_property_state("interactive_initialization")
330
+
331
+ @interactive_initialization.setter
332
+ def interactive_initialization(self, value: bool):
333
+ self.set_property_state("interactive_initialization", 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 an attribute.
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,74 @@
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 an attribute.
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
+ ("modifiable", "Modifiable", "bool"),
26
+ ("real_value", "RealValue", "RealType"),
27
+ ("integer_value", "IntegerValue", "int"),
28
+ ("string_value", "StringValue", "str"),
29
+ ]
30
+
31
+ @property
32
+ def attribute_type(self) -> str:
33
+ """The type of the attribute (\"Real\", \"Integer\", or \"String\")."""
34
+ return self.get_property_state("attribute_type")
35
+
36
+ @attribute_type.setter
37
+ def attribute_type(self, value: str):
38
+ self.set_property_state("attribute_type", value)
39
+
40
+ @property
41
+ def modifiable(self) -> bool:
42
+ """Controls whether the attribute is Modifiable"""
43
+ return self.get_property_state("modifiable")
44
+
45
+ @modifiable.setter
46
+ def modifiable(self, value: bool):
47
+ self.set_property_state("modifiable", value)
48
+
49
+ @property
50
+ def real_value(self) -> RealType:
51
+ """Real attribute value."""
52
+ return self.get_property_state("real_value")
53
+
54
+ @real_value.setter
55
+ def real_value(self, value: RealType):
56
+ self.set_property_state("real_value", value)
57
+
58
+ @property
59
+ def integer_value(self) -> int:
60
+ """Integer attribute value."""
61
+ return self.get_property_state("integer_value")
62
+
63
+ @integer_value.setter
64
+ def integer_value(self, value: int):
65
+ self.set_property_state("integer_value", value)
66
+
67
+ @property
68
+ def string_value(self) -> str:
69
+ """String attribute value."""
70
+ return self.get_property_state("string_value")
71
+
72
+ @string_value.setter
73
+ def string_value(self, value: str):
74
+ self.set_property_state("string_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)
@@ -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 available_ports(Container):
9
+ """
10
+ Specify ports available for co-simulation.
11
+ """
12
+
13
+ syc_name = "AvailablePorts"
14
+
15
+ property_names_types = [("option", "Option", "str"), ("range", "Range", "str")]
16
+
17
+ @property
18
+ def option(self) -> str:
19
+ """Specify how available ports are determined.
20
+
21
+ - \"ProgramControlled\" - System Coupling will find an
22
+ available port.
23
+ - \"UserDefined\" - An available port will be chosen,
24
+ if possible, from a specified range."""
25
+ return self.get_property_state("option")
26
+
27
+ @option.setter
28
+ def option(self, value: str):
29
+ self.set_property_state("option", value)
30
+
31
+ @property
32
+ def range(self) -> str:
33
+ """Port range expressed as a comma-separated list of integers and/or
34
+ integer ranges. An integer range is a pair of integers separated
35
+ with a "-" character, specify an inclusive range of port numbers."""
36
+ return self.get_property_state("range")
37
+
38
+ @range.setter
39
+ def range(self, value: str):
40
+ self.set_property_state("range", value)
@@ -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 avoid_data_reconstruction(Container):
9
+ """
10
+ Control whether data reconstruction should be done for elemental intensive data.
11
+ """
12
+
13
+ syc_name = "AvoidDataReconstruction"
14
+
15
+ property_names_types = [
16
+ ("volume_mapping", "VolumeMapping", "bool"),
17
+ ("surface_mapping", "SurfaceMapping", "bool"),
18
+ ("surface_volume_mapping", "SurfaceVolumeMapping", "bool"),
19
+ ("nep", "NEP", "str"),
20
+ ]
21
+
22
+ @property
23
+ def volume_mapping(self) -> bool:
24
+ """UNDOCUMENTED"""
25
+ return self.get_property_state("volume_mapping")
26
+
27
+ @volume_mapping.setter
28
+ def volume_mapping(self, value: bool):
29
+ self.set_property_state("volume_mapping", value)
30
+
31
+ @property
32
+ def surface_mapping(self) -> bool:
33
+ """UNDOCUMENTED"""
34
+ return self.get_property_state("surface_mapping")
35
+
36
+ @surface_mapping.setter
37
+ def surface_mapping(self, value: bool):
38
+ self.set_property_state("surface_mapping", value)
39
+
40
+ @property
41
+ def surface_volume_mapping(self) -> bool:
42
+ """UNDOCUMENTED"""
43
+ return self.get_property_state("surface_volume_mapping")
44
+
45
+ @surface_volume_mapping.setter
46
+ def surface_volume_mapping(self, value: bool):
47
+ self.set_property_state("surface_volume_mapping", value)
48
+
49
+ @property
50
+ def nep(self) -> str:
51
+ """UNDOCUMENTED"""
52
+ return self.get_property_state("nep")
53
+
54
+ @nep.setter
55
+ def nep(self, value: str):
56
+ self.set_property_state("nep", value)