ansys-systemcoupling-core 0.3.1__py3-none-any.whl → 0.4.dev0__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 (165) hide show
  1. ansys/systemcoupling/core/__init__.py +23 -1
  2. ansys/systemcoupling/core/_version.py +22 -0
  3. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_data_transfer_by_display_names.py +0 -3
  4. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_interface.py +21 -23
  5. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_interface_by_display_names.py +0 -3
  6. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_participant.py +40 -20
  7. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/analysis_control.py +0 -42
  8. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/avoid_data_reconstruction.py +0 -10
  9. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/case_root.py +7 -1
  10. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_participant_child.py +2 -97
  11. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/execution_control.py +1 -31
  12. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/fluent_input.py +0 -10
  13. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/fmu_parameter_child.py +0 -30
  14. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/has_input_file_changed.py +2 -2
  15. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/mapping_control.py +0 -10
  16. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/open_results_in_ensight.py +0 -28
  17. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/output_control.py +1 -6
  18. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/region_child.py +3 -2
  19. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/setup_root.py +1 -49
  20. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/solution_control.py +0 -24
  21. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/solution_root.py +1 -7
  22. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/start_participants.py +1 -1
  23. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/update_participant.py +8 -8
  24. ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/variable_child.py +1 -31
  25. ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +3 -0
  26. ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_fsi_data_transfers.py +1 -12
  27. ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +23 -21
  28. ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +3 -0
  29. ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +20 -40
  30. ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +42 -0
  31. ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +10 -0
  32. ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +1 -7
  33. ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +85 -2
  34. ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +11 -1
  35. ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +30 -0
  36. ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +2 -2
  37. ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +10 -0
  38. ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +28 -0
  39. ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +6 -1
  40. ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/record_interactions.py +0 -10
  41. ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +2 -2
  42. ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +49 -1
  43. ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +24 -0
  44. ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +7 -1
  45. ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +1 -1
  46. ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +8 -8
  47. ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +31 -1
  48. ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +22 -0
  49. ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +26 -2
  50. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +29 -0
  51. ansys/systemcoupling/core/adaptor/impl/root_source.py +22 -1
  52. ansys/systemcoupling/core/adaptor/impl/static_info.py +22 -0
  53. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +22 -0
  54. ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +22 -0
  55. ansys/systemcoupling/core/adaptor/impl/types.py +23 -0
  56. ansys/systemcoupling/core/client/grpc_client.py +22 -0
  57. ansys/systemcoupling/core/client/services/command_query.py +22 -0
  58. ansys/systemcoupling/core/client/services/output_stream.py +22 -0
  59. ansys/systemcoupling/core/client/services/process.py +22 -0
  60. ansys/systemcoupling/core/client/services/solution.py +22 -0
  61. ansys/systemcoupling/core/client/syc_container.py +22 -0
  62. ansys/systemcoupling/core/client/syc_process.py +22 -0
  63. ansys/systemcoupling/core/client/variant.py +22 -0
  64. ansys/systemcoupling/core/examples/__init__.py +22 -0
  65. ansys/systemcoupling/core/examples/downloads.py +23 -0
  66. ansys/systemcoupling/core/native_api/__init__.py +22 -0
  67. ansys/systemcoupling/core/native_api/command_metadata.py +23 -0
  68. ansys/systemcoupling/core/native_api/datamodel_metadata.py +22 -0
  69. ansys/systemcoupling/core/native_api/meta_wrapper.py +23 -0
  70. ansys/systemcoupling/core/native_api/native_api.py +22 -0
  71. ansys/systemcoupling/core/native_api/object_path.py +22 -0
  72. ansys/systemcoupling/core/participant/manager.py +22 -0
  73. ansys/systemcoupling/core/participant/mapdl.py +298 -0
  74. ansys/systemcoupling/core/participant/protocol.py +22 -0
  75. ansys/systemcoupling/core/session.py +22 -0
  76. ansys/systemcoupling/core/syc_version.py +22 -0
  77. ansys/systemcoupling/core/util/logging.py +22 -0
  78. ansys/systemcoupling/core/util/name_util.py +22 -0
  79. ansys/systemcoupling/core/util/pathstr.py +23 -1
  80. ansys/systemcoupling/core/util/state_keys.py +22 -0
  81. ansys/systemcoupling/core/util/yaml_helper.py +22 -0
  82. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/METADATA +19 -18
  83. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/RECORD +165 -164
  84. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/_add_participant.py +0 -0
  85. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/_solve.py +0 -0
  86. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/abort.py +0 -0
  87. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/activate_hidden.py +0 -0
  88. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_data_transfer.py +0 -0
  89. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_expression_function.py +0 -0
  90. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_named_expression.py +0 -0
  91. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_reference_frame.py +0 -0
  92. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/add_transformation.py +0 -0
  93. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/apip.py +0 -0
  94. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/ascii_output.py +0 -0
  95. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/attribute.py +0 -0
  96. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/attribute_child.py +0 -0
  97. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/available_ports.py +0 -0
  98. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/clear_state.py +0 -0
  99. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_interface.py +0 -0
  100. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_interface_child.py +0 -0
  101. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/coupling_participant.py +0 -0
  102. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/create_restart_point.py +0 -0
  103. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/data_transfer.py +0 -0
  104. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/data_transfer_child.py +0 -0
  105. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/delete_snapshot.py +0 -0
  106. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/delete_transformation.py +0 -0
  107. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/dimensionality.py +0 -0
  108. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression.py +0 -0
  109. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression_child.py +0 -0
  110. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression_function.py +0 -0
  111. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/expression_function_child.py +0 -0
  112. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/external_data_file.py +0 -0
  113. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/fmu_parameter.py +0 -0
  114. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/generate_input_file.py +0 -0
  115. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_execution_command.py +0 -0
  116. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_machines.py +0 -0
  117. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_region_names_for_participant.py +0 -0
  118. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_setup_summary.py +0 -0
  119. /ansys/systemcoupling/core/adaptor/{api_24_1 → api_23_1}/get_snapshots.py +0 -0
  120. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/get_status_messages.py +0 -0
  121. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/global_stabilization.py +0 -0
  122. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/import_system_coupling_input_file.py +0 -0
  123. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/initialize.py +0 -0
  124. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/instancing.py +0 -0
  125. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/instancing_child.py +0 -0
  126. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/interrupt.py +0 -0
  127. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/library.py +0 -0
  128. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/open.py +0 -0
  129. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/open_snapshot.py +0 -0
  130. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/partition_participants.py +0 -0
  131. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/reference_frame.py +0 -0
  132. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/reference_frame_child.py +0 -0
  133. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/region.py +0 -0
  134. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/reload_expression_function_modules.py +0 -0
  135. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/results.py +0 -0
  136. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/save.py +0 -0
  137. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/save_snapshot.py +0 -0
  138. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/shutdown.py +0 -0
  139. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/side.py +0 -0
  140. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/side_child.py +0 -0
  141. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/solve.py +0 -0
  142. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/stabilization.py +0 -0
  143. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/step.py +0 -0
  144. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/transformation.py +0 -0
  145. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/transformation_child.py +0 -0
  146. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/type.py +0 -0
  147. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/unmapped_value_options.py +0 -0
  148. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/update_control.py +0 -0
  149. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/variable.py +0 -0
  150. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/write_csv_chart_files.py +0 -0
  151. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_23_1}/write_ensight.py +0 -0
  152. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_aerodamping_data_transfers.py +0 -0
  153. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_ordered_data_transfers.py +0 -0
  154. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/add_thermal_data_transfers.py +0 -0
  155. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/automatic_alignment_options.py +0 -0
  156. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_add_data_transfer_group_commands.py +0 -0
  157. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_mode_shape_variables.py +0 -0
  158. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_thermal_data_transfer_options.py +0 -0
  159. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/get_transformation.py +0 -0
  160. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/live_visualization.py +0 -0
  161. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/live_visualization_child.py +0 -0
  162. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/parameter.py +0 -0
  163. /ansys/systemcoupling/core/adaptor/{api_24_2 → api_24_1}/parameter_child.py +0 -0
  164. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/LICENSE +0 -0
  165. {ansys_systemcoupling_core-0.3.1.dist-info → ansys_systemcoupling_core-0.4.dev0.dist-info}/WHEEL +0 -0
@@ -44,40 +44,31 @@ class add_participant(InjectedCommand):
44
44
  participant executable.
45
45
 
46
46
  Option 1: Using an input file
47
- Given an input file containing participant coupling information, reads the
48
- specified file, pushes the participant's information to the data model.
47
+
48
+ Given an input file containing participant coupling information, reads the
49
+ specified file, pushes the participant's information to the data model.
49
50
 
50
51
  Option 2: Using a participant executable
51
- Given the path to the executable for this participant (and optionally,
52
- additional arguments and/or working directory), start the participant
53
- executable, connect to the participant using the socket connection,
54
- and get the participant's information and add it to the data model.
52
+
53
+ Given the path to the executable for this participant (and optionally,
54
+ additional arguments and/or working directory), start the participant
55
+ executable, connect to the participant using the socket connection,
56
+ and get the participant's information and add it to the data model.
55
57
 
56
58
  Parameters
57
59
  ----------
58
60
  participant_session : ParticipantProtocol, optional
59
61
  Participant session object conforming to the ``ParticipantProtocol`` protocol class.
60
62
  participant_type : str, optional
61
- Participant type. Currently supported types are:
62
-
63
- - \"DEFAULT\"
64
- - \"CFX\"
65
- - \"FLUENT\"
66
- - \"MAPDL\"
67
- - \"AEDT\"
68
- - \"FMU\"
69
- - \"FORTE\"
70
- - \"DEFAULT-SRV\"
71
- - \"MECH-SRV\"
72
- - \"CFD-SRV\"
73
-
74
- If unspecified, ``add_participant`` will attempt to deduce
75
- the type from ``input_file``.
63
+ Participant type. Currently supported types are DEFAULT, CFX,
64
+ FLUENT, MAPDL, AEDT, FMU, FORTE, DEFAULT-SRV, CFD-SRV, MECH-SRV, and SCDT-SRV.
65
+ If unspecified, AddParticipant will attempt to deduce the type from
66
+ Input_file.
76
67
  input_file : str, optional
77
68
  Name of the input file for the participant to be added.
78
69
  Currently supported formats are SCP files, Forte input (FTSIM)
79
- files, mechanical server (*.rst) files, cfd server (*.csv) files,
80
- and FMU (.fmu) files (Beta).
70
+ files, mechanical server (\*.rst) files, cfd server (\*.csv) files,
71
+ FMU (.fmu) files (Beta), and system coupling data server (\*.scdt/axdt/csv) files.
81
72
  executable : str, optional
82
73
  Path to the executable file for the participant to be added.
83
74
  additional_arguments : str, optional
@@ -109,21 +100,10 @@ class add_participant(InjectedCommand):
109
100
 
110
101
  class participant_type(String):
111
102
  """
112
- Participant type. Currently supported types are:
113
-
114
- - \"DEFAULT\"
115
- - \"CFX\"
116
- - \"FLUENT\"
117
- - \"MAPDL\"
118
- - \"AEDT\"
119
- - \"FMU\"
120
- - \"FORTE\"
121
- - \"DEFAULT-SRV\"
122
- - \"MECH-SRV\"
123
- - \"CFD-SRV\"
124
-
125
- If unspecified, ``add_participant`` will attempt to deduce
126
- the type from ``input_file``.
103
+ Participant type. Currently supported types are DEFAULT, CFX,
104
+ FLUENT, MAPDL, AEDT, FMU, FORTE, DEFAULT-SRV, CFD-SRV, MECH-SRV, and SCDT-SRV.
105
+ If unspecified, AddParticipant will attempt to deduce the type from
106
+ Input_file.
127
107
  """
128
108
 
129
109
  syc_name = "ParticipantType"
@@ -132,8 +112,8 @@ class add_participant(InjectedCommand):
132
112
  """
133
113
  Name of the input file for the participant to be added.
134
114
  Currently supported formats are SCP files, Forte input (FTSIM)
135
- files, mechanical server (*.rst) files, cfd server (*.csv) files,
136
- and FMU (.fmu) files (Beta).
115
+ files, mechanical server (\*.rst) files, cfd server (\*.csv) files,
116
+ FMU (.fmu) files (Beta), and system coupling data server (\*.scdt/axdt/csv) files.
137
117
  """
138
118
 
139
119
  syc_name = "InputFile"
@@ -5,6 +5,7 @@
5
5
  from ansys.systemcoupling.core.adaptor.impl.types import *
6
6
 
7
7
  from .apip import apip
8
+ from .automatic_alignment_options import automatic_alignment_options
8
9
  from .avoid_data_reconstruction import avoid_data_reconstruction
9
10
  from .global_stabilization import global_stabilization
10
11
  from .unmapped_value_options import unmapped_value_options
@@ -22,6 +23,7 @@ class analysis_control(Container):
22
23
  "apip",
23
24
  "avoid_data_reconstruction",
24
25
  "unmapped_value_options",
26
+ "automatic_alignment_options",
25
27
  ]
26
28
 
27
29
  global_stabilization: global_stabilization = global_stabilization
@@ -40,13 +42,26 @@ class analysis_control(Container):
40
42
  """
41
43
  unmapped_value_options child of analysis_control.
42
44
  """
45
+ automatic_alignment_options: automatic_alignment_options = (
46
+ automatic_alignment_options
47
+ )
48
+ """
49
+ automatic_alignment_options child of analysis_control.
50
+ """
43
51
  property_names_types = [
44
52
  ("analysis_type", "AnalysisType", "str"),
45
53
  ("optimize_if_one_way", "OptimizeIfOneWay", "bool"),
46
54
  ("warped_face_tolerance", "WarpedFaceTolerance", "RealType"),
47
55
  ("allow_simultaneous_update", "AllowSimultaneousUpdate", "bool"),
48
56
  ("simultaneous_participants", "SimultaneousParticipants", "str"),
57
+ (
58
+ "allow_simultaneous_initialization",
59
+ "AllowSimultaneousInitialization",
60
+ "bool",
61
+ ),
62
+ ("mpi_pause_timeout", "MpiPauseTimeout", "RealType"),
49
63
  ("partitioning_algorithm", "PartitioningAlgorithm", "str"),
64
+ ("cleanup_inflated_fm_us", "CleanupInflatedFMUs", "bool"),
50
65
  ("allow_iterations_only_mode", "AllowIterationsOnlyMode", "bool"),
51
66
  ("target_initialization_option", "TargetInitializationOption", "str"),
52
67
  ("fluent_region_update_at_step", "FluentRegionUpdateAtStep", "bool"),
@@ -114,6 +129,24 @@ class analysis_control(Container):
114
129
  def simultaneous_participants(self, value: str):
115
130
  self.set_property_state("simultaneous_participants", value)
116
131
 
132
+ @property
133
+ def allow_simultaneous_initialization(self) -> bool:
134
+ """Allow simultaneous initialization of participants."""
135
+ return self.get_property_state("allow_simultaneous_initialization")
136
+
137
+ @allow_simultaneous_initialization.setter
138
+ def allow_simultaneous_initialization(self, value: bool):
139
+ self.set_property_state("allow_simultaneous_initialization", value)
140
+
141
+ @property
142
+ def mpi_pause_timeout(self) -> RealType:
143
+ """Specify MPI pause time (in seconds) to wait for other participants to finish solving"""
144
+ return self.get_property_state("mpi_pause_timeout")
145
+
146
+ @mpi_pause_timeout.setter
147
+ def mpi_pause_timeout(self, value: RealType):
148
+ self.set_property_state("mpi_pause_timeout", value)
149
+
117
150
  @property
118
151
  def partitioning_algorithm(self) -> str:
119
152
  """Partitioning algorithm used when participants are running in parallel.
@@ -135,6 +168,15 @@ class analysis_control(Container):
135
168
  def partitioning_algorithm(self, value: str):
136
169
  self.set_property_state("partitioning_algorithm", value)
137
170
 
171
+ @property
172
+ def cleanup_inflated_fm_us(self) -> bool:
173
+ """Controls whether System Coupling will cleanup inflated FMUs at end of analysis."""
174
+ return self.get_property_state("cleanup_inflated_fm_us")
175
+
176
+ @cleanup_inflated_fm_us.setter
177
+ def cleanup_inflated_fm_us(self, value: bool):
178
+ self.set_property_state("cleanup_inflated_fm_us", value)
179
+
138
180
  @property
139
181
  def allow_iterations_only_mode(self) -> bool:
140
182
  """Explicitly set whether iterations-only mode is allowed."""
@@ -15,6 +15,7 @@ class avoid_data_reconstruction(Container):
15
15
  property_names_types = [
16
16
  ("volume_mapping", "VolumeMapping", "bool"),
17
17
  ("surface_mapping", "SurfaceMapping", "bool"),
18
+ ("surface_volume_mapping", "SurfaceVolumeMapping", "bool"),
18
19
  ]
19
20
 
20
21
  @property
@@ -34,3 +35,12 @@ class avoid_data_reconstruction(Container):
34
35
  @surface_mapping.setter
35
36
  def surface_mapping(self, value: bool):
36
37
  self.set_property_state("surface_mapping", value)
38
+
39
+ @property
40
+ def surface_volume_mapping(self) -> bool:
41
+ """UNDOCUMENTED"""
42
+ return self.get_property_state("surface_volume_mapping")
43
+
44
+ @surface_volume_mapping.setter
45
+ def surface_volume_mapping(self, value: bool):
46
+ self.set_property_state("surface_volume_mapping", value)
@@ -2,13 +2,12 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "0fbfd3e7593591d8e52193a6e92828c6174e531b26437aee17285b3d0d114664"
5
+ SHASH = "430648f7df949b91819d62a5c2d5a5c49d1d67217fb3474ee31e0c78e5ffbd43"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
9
9
  from .clear_state import clear_state
10
10
  from .delete_snapshot import delete_snapshot
11
- from .get_snapshots import get_snapshots
12
11
  from .open import open
13
12
  from .open_snapshot import open_snapshot
14
13
  from .save import save
@@ -25,7 +24,6 @@ class case_root(Container):
25
24
  command_names = [
26
25
  "clear_state",
27
26
  "delete_snapshot",
28
- "get_snapshots",
29
27
  "open",
30
28
  "open_snapshot",
31
29
  "save",
@@ -40,10 +38,6 @@ class case_root(Container):
40
38
  """
41
39
  delete_snapshot command of case_root.
42
40
  """
43
- get_snapshots: get_snapshots = get_snapshots
44
- """
45
- get_snapshots command of case_root.
46
- """
47
41
  open: open = open
48
42
  """
49
43
  open command of case_root.
@@ -7,6 +7,8 @@ from ansys.systemcoupling.core.adaptor.impl.types import *
7
7
  from .execution_control import execution_control
8
8
  from .external_data_file import external_data_file
9
9
  from .fmu_parameter import fmu_parameter
10
+ from .parameter import parameter
11
+ from .record_interactions import record_interactions
10
12
  from .region import region
11
13
  from .update_control import update_control
12
14
  from .variable import variable
@@ -24,17 +26,23 @@ class coupling_participant_child(Container):
24
26
 
25
27
  child_names = [
26
28
  "variable",
29
+ "parameter",
27
30
  "region",
28
31
  "update_control",
29
32
  "fmu_parameter",
30
33
  "execution_control",
31
34
  "external_data_file",
35
+ "record_interactions",
32
36
  ]
33
37
 
34
38
  variable: variable = variable
35
39
  """
36
40
  variable child of coupling_participant_child.
37
41
  """
42
+ parameter: parameter = parameter
43
+ """
44
+ parameter child of coupling_participant_child.
45
+ """
38
46
  region: region = region
39
47
  """
40
48
  region child of coupling_participant_child.
@@ -55,16 +63,27 @@ class coupling_participant_child(Container):
55
63
  """
56
64
  external_data_file child of coupling_participant_child.
57
65
  """
66
+ record_interactions: record_interactions = record_interactions
67
+ """
68
+ record_interactions child of coupling_participant_child.
69
+ """
58
70
  property_names_types = [
59
71
  ("participant_type", "ParticipantType", "str"),
60
72
  ("participant_display_name", "ParticipantDisplayName", "str"),
61
73
  ("display_name", "DisplayName", "str"),
62
74
  ("dimension", "Dimension", "str"),
75
+ ("input_variables", "InputVariables", "StringListType"),
76
+ ("output_variables", "OutputVariables", "StringListType"),
77
+ ("input_parameters", "InputParameters", "StringListType"),
78
+ ("output_parameters", "OutputParameters", "StringListType"),
63
79
  ("participant_file_loaded", "ParticipantFileLoaded", "str"),
64
80
  ("logging_on", "LoggingOn", "bool"),
65
81
  ("participant_analysis_type", "ParticipantAnalysisType", "str"),
66
82
  ("use_new_apis", "UseNewAPIs", "bool"),
67
83
  ("restarts_supported", "RestartsSupported", "bool"),
84
+ ("can_serialize_fmu_state", "CanSerializeFmuState", "bool"),
85
+ ("can_get_and_set_fmu_state", "CanGetAndSetFmuState", "bool"),
86
+ ("free_fmu_state", "FreeFmuState", "bool"),
68
87
  ("instancing", "Instancing", "str"),
69
88
  ]
70
89
 
@@ -83,7 +102,8 @@ class coupling_participant_child(Container):
83
102
  - \"FORTE\"
84
103
  - \"DEFAULT-SRV\"
85
104
  - \"MECH-SRV\"
86
- - \"CFD-SRV\" """
105
+ - \"CFD-SRV\"
106
+ - \"SCDT-SRV\" """
87
107
  return self.get_property_state("participant_type")
88
108
 
89
109
  @participant_type.setter
@@ -118,6 +138,42 @@ class coupling_participant_child(Container):
118
138
  def dimension(self, value: str):
119
139
  self.set_property_state("dimension", value)
120
140
 
141
+ @property
142
+ def input_variables(self) -> StringListType:
143
+ """Input variables for the region or FMU."""
144
+ return self.get_property_state("input_variables")
145
+
146
+ @input_variables.setter
147
+ def input_variables(self, value: StringListType):
148
+ self.set_property_state("input_variables", value)
149
+
150
+ @property
151
+ def output_variables(self) -> StringListType:
152
+ """Output variables for the region or FMU."""
153
+ return self.get_property_state("output_variables")
154
+
155
+ @output_variables.setter
156
+ def output_variables(self, value: StringListType):
157
+ self.set_property_state("output_variables", value)
158
+
159
+ @property
160
+ def input_parameters(self) -> StringListType:
161
+ """Input parameters for the solver."""
162
+ return self.get_property_state("input_parameters")
163
+
164
+ @input_parameters.setter
165
+ def input_parameters(self, value: StringListType):
166
+ self.set_property_state("input_parameters", value)
167
+
168
+ @property
169
+ def output_parameters(self) -> StringListType:
170
+ """Output parameters for the solver."""
171
+ return self.get_property_state("output_parameters")
172
+
173
+ @output_parameters.setter
174
+ def output_parameters(self, value: StringListType):
175
+ self.set_property_state("output_parameters", value)
176
+
121
177
  @property
122
178
  def participant_file_loaded(self) -> str:
123
179
  """File used to generate the participant."""
@@ -147,7 +203,7 @@ class coupling_participant_child(Container):
147
203
 
148
204
  @property
149
205
  def use_new_apis(self) -> bool:
150
- """Controls whether a Fluent or MAPDL participant should communicate using new APIs."""
206
+ """Controls whether Fluent/MAPDL/AEDT/CFX participant should communicate using new APIs."""
151
207
  return self.get_property_state("use_new_apis")
152
208
 
153
209
  @use_new_apis.setter
@@ -163,6 +219,33 @@ class coupling_participant_child(Container):
163
219
  def restarts_supported(self, value: bool):
164
220
  self.set_property_state("restarts_supported", value)
165
221
 
222
+ @property
223
+ def can_serialize_fmu_state(self) -> bool:
224
+ """Indicates whether the FMU can state can be serialized."""
225
+ return self.get_property_state("can_serialize_fmu_state")
226
+
227
+ @can_serialize_fmu_state.setter
228
+ def can_serialize_fmu_state(self, value: bool):
229
+ self.set_property_state("can_serialize_fmu_state", value)
230
+
231
+ @property
232
+ def can_get_and_set_fmu_state(self) -> bool:
233
+ """Indicates whether the FMU can get and set its state."""
234
+ return self.get_property_state("can_get_and_set_fmu_state")
235
+
236
+ @can_get_and_set_fmu_state.setter
237
+ def can_get_and_set_fmu_state(self, value: bool):
238
+ self.set_property_state("can_get_and_set_fmu_state", value)
239
+
240
+ @property
241
+ def free_fmu_state(self) -> bool:
242
+ """Optionally Frees the FMU state prior to calling CanGetAndSetFmuState"""
243
+ return self.get_property_state("free_fmu_state")
244
+
245
+ @free_fmu_state.setter
246
+ def free_fmu_state(self, value: bool):
247
+ self.set_property_state("free_fmu_state", value)
248
+
166
249
  @property
167
250
  def instancing(self) -> str:
168
251
  """Set instancing on the participant."""
@@ -40,6 +40,7 @@ class execution_control(Container):
40
40
  ("base_output_file_name", "BaseOutputFileName", "str"),
41
41
  ("overwrite_existing_files", "OverwriteExistingFiles", "bool"),
42
42
  ("mass_normalized", "MassNormalized", "bool"),
43
+ ("write_output", "WriteOutput", "bool"),
43
44
  ]
44
45
 
45
46
  @property
@@ -160,7 +161,7 @@ class execution_control(Container):
160
161
 
161
162
  @property
162
163
  def base_output_file_name(self) -> str:
163
- """Base output file name for the CFD Server."""
164
+ """Base output file name for the CFD Server or SCDT Server."""
164
165
  return self.get_property_state("base_output_file_name")
165
166
 
166
167
  @base_output_file_name.setter
@@ -184,3 +185,12 @@ class execution_control(Container):
184
185
  @mass_normalized.setter
185
186
  def mass_normalized(self, value: bool):
186
187
  self.set_property_state("mass_normalized", value)
188
+
189
+ @property
190
+ def write_output(self) -> bool:
191
+ """Controls whether export scdt files for the SCDT Server"""
192
+ return self.get_property_state("write_output")
193
+
194
+ @write_output.setter
195
+ def write_output(self, value: bool):
196
+ self.set_property_state("write_output", value)
@@ -24,6 +24,9 @@ class fmu_parameter_child(Container):
24
24
  ("integer_max", "IntegerMax", "int"),
25
25
  ("logical_value", "LogicalValue", "bool"),
26
26
  ("string_value", "StringValue", "str"),
27
+ ("enumeration_value", "EnumerationValue", "int"),
28
+ ("enumeration_min", "EnumerationMin", "int"),
29
+ ("enumeration_max", "EnumerationMax", "int"),
27
30
  ]
28
31
 
29
32
  @property
@@ -124,3 +127,30 @@ class fmu_parameter_child(Container):
124
127
  @string_value.setter
125
128
  def string_value(self, value: str):
126
129
  self.set_property_state("string_value", value)
130
+
131
+ @property
132
+ def enumeration_value(self) -> int:
133
+ """Enumeration data start value."""
134
+ return self.get_property_state("enumeration_value")
135
+
136
+ @enumeration_value.setter
137
+ def enumeration_value(self, value: int):
138
+ self.set_property_state("enumeration_value", value)
139
+
140
+ @property
141
+ def enumeration_min(self) -> int:
142
+ """Enumeration data minimum value."""
143
+ return self.get_property_state("enumeration_min")
144
+
145
+ @enumeration_min.setter
146
+ def enumeration_min(self, value: int):
147
+ self.set_property_state("enumeration_min", value)
148
+
149
+ @property
150
+ def enumeration_max(self) -> int:
151
+ """Enumeration data maximum value."""
152
+ return self.get_property_state("enumeration_max")
153
+
154
+ @enumeration_max.setter
155
+ def enumeration_max(self, value: int):
156
+ self.set_property_state("enumeration_max", value)
@@ -10,11 +10,11 @@ class has_input_file_changed(Command):
10
10
  Given the name of a participant, checks whether the input file has changed.
11
11
 
12
12
  Available for server participants. Currently, only input files for
13
- DEFAULT-SRV, CFD-SRV, and MECH-SRV participants are tracked by
13
+ DEFAULT-SRV, CFD-SRV, MECH-SRV, and SCDT-SRV participants are tracked by
14
14
  System Coupling.
15
15
 
16
16
  If a participant's input files are not tracked by System Coupling, this
17
- command will return ``False`` in all cases, even if changes have been made
17
+ command will return False in all cases, even if changes have been made
18
18
  to the participant input file.
19
19
 
20
20
  Parameters
@@ -42,6 +42,7 @@ class mapping_control(Container):
42
42
  ("rbf_shape_parameter", "RBFShapeParameter", "RealType"),
43
43
  ("rbf_linear_correction", "RBFLinearCorrection", "bool"),
44
44
  ("rbf_clipping_scale", "RBFClippingScale", "RealType"),
45
+ ("clipping", "Clipping", "bool"),
45
46
  ]
46
47
 
47
48
  @property
@@ -227,3 +228,12 @@ class mapping_control(Container):
227
228
  @rbf_clipping_scale.setter
228
229
  def rbf_clipping_scale(self, value: RealType):
229
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)
@@ -23,6 +23,34 @@ class open_results_in_ensight(Command):
23
23
  instance of the EnSight application is opened. Any existing instances of
24
24
  EnSight remain open, both when additional instances are created and when
25
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
+
26
36
  """
27
37
 
28
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"
@@ -5,6 +5,7 @@
5
5
  from ansys.systemcoupling.core.adaptor.impl.types import *
6
6
 
7
7
  from .ascii_output import ascii_output
8
+ from .live_visualization import live_visualization
8
9
  from .results import results
9
10
 
10
11
 
@@ -15,7 +16,7 @@ class output_control(Container):
15
16
 
16
17
  syc_name = "OutputControl"
17
18
 
18
- child_names = ["results", "ascii_output"]
19
+ child_names = ["results", "ascii_output", "live_visualization"]
19
20
 
20
21
  results: results = results
21
22
  """
@@ -25,6 +26,10 @@ class output_control(Container):
25
26
  """
26
27
  ascii_output child of output_control.
27
28
  """
29
+ live_visualization: live_visualization = live_visualization
30
+ """
31
+ live_visualization child of output_control.
32
+ """
28
33
  property_names_types = [
29
34
  ("option", "Option", "str"),
30
35
  ("generate_csv_chart_output", "GenerateCSVChartOutput", "bool"),
@@ -15,7 +15,6 @@ class record_interactions(Container):
15
15
  property_names_types = [
16
16
  ("record_setup", "RecordSetup", "bool"),
17
17
  ("record_solution", "RecordSolution", "bool"),
18
- ("record_precision", "RecordPrecision", "int"),
19
18
  ]
20
19
 
21
20
  @property
@@ -35,12 +34,3 @@ class record_interactions(Container):
35
34
  @record_solution.setter
36
35
  def record_solution(self, value: bool):
37
36
  self.set_property_state("record_solution", value)
38
-
39
- @property
40
- def record_precision(self) -> int:
41
- """Set the digital precision of solution variable,1 <= N <= 16.."""
42
- return self.get_property_state("record_precision")
43
-
44
- @record_precision.setter
45
- def record_precision(self, value: int):
46
- self.set_property_state("record_precision", value)
@@ -37,7 +37,7 @@ class region_child(Container):
37
37
 
38
38
  @property
39
39
  def input_variables(self) -> StringListType:
40
- """Input variables for the region."""
40
+ """Input variables for the region or FMU."""
41
41
  return self.get_property_state("input_variables")
42
42
 
43
43
  @input_variables.setter
@@ -46,7 +46,7 @@ class region_child(Container):
46
46
 
47
47
  @property
48
48
  def output_variables(self) -> StringListType:
49
- """Output variables for the region."""
49
+ """Output variables for the region or FMU."""
50
50
  return self.get_property_state("output_variables")
51
51
 
52
52
  @output_variables.setter