ansys-systemcoupling-core 0.4.1__py3-none-any.whl → 0.6__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 (148) hide show
  1. ansys/systemcoupling/core/__init__.py +11 -5
  2. ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +13 -0
  3. ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +7 -1
  4. ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +4 -2
  5. ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +75 -0
  6. ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +7 -1
  7. ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +13 -0
  8. ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +7 -1
  9. ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +4 -2
  10. ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +75 -0
  11. ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +7 -1
  12. ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +13 -0
  13. ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +7 -1
  14. ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +4 -2
  15. ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +75 -0
  16. ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +7 -1
  17. ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +80 -0
  18. ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +13 -0
  19. ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +13 -0
  20. ansys/systemcoupling/core/adaptor/api_24_2/abort.py +39 -0
  21. ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +46 -0
  22. ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +43 -0
  23. ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +190 -0
  24. ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +191 -0
  25. ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +61 -0
  26. ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +43 -0
  27. ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +77 -0
  28. ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +78 -0
  29. ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +42 -0
  30. ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +32 -0
  31. ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +162 -0
  32. ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +40 -0
  33. ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +43 -0
  34. ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +102 -0
  35. ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +283 -0
  36. ansys/systemcoupling/core/adaptor/api_24_2/apip.py +33 -0
  37. ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +44 -0
  38. ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +20 -0
  39. ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +54 -0
  40. ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +46 -0
  41. ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +40 -0
  42. ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +46 -0
  43. ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +62 -0
  44. ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +18 -0
  45. ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +41 -0
  46. ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +20 -0
  47. ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +42 -0
  48. ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +23 -0
  49. ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +265 -0
  50. ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +29 -0
  51. ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +20 -0
  52. ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +187 -0
  53. ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +28 -0
  54. ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +42 -0
  55. ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +96 -0
  56. ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +246 -0
  57. ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +24 -0
  58. ansys/systemcoupling/core/adaptor/api_24_2/expression.py +20 -0
  59. ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +36 -0
  60. ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +20 -0
  61. ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +46 -0
  62. ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +24 -0
  63. ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +77 -0
  64. ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +20 -0
  65. ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +156 -0
  66. ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +41 -0
  67. ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +29 -0
  68. ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +30 -0
  69. ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +13 -0
  70. ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +29 -0
  71. ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +31 -0
  72. ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +25 -0
  73. ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +52 -0
  74. ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +13 -0
  75. ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +32 -0
  76. ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +43 -0
  77. ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +143 -0
  78. ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +36 -0
  79. ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +36 -0
  80. ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +27 -0
  81. ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +23 -0
  82. ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +62 -0
  83. ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +39 -0
  84. ansys/systemcoupling/core/adaptor/api_24_2/library.py +37 -0
  85. ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +20 -0
  86. ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +100 -0
  87. ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +239 -0
  88. ansys/systemcoupling/core/adaptor/api_24_2/open.py +102 -0
  89. ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +56 -0
  90. ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +37 -0
  91. ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +134 -0
  92. ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +20 -0
  93. ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +56 -0
  94. ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +138 -0
  95. ansys/systemcoupling/core/adaptor/api_24_2/properties.py +36 -0
  96. ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +46 -0
  97. ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +20 -0
  98. ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +71 -0
  99. ansys/systemcoupling/core/adaptor/api_24_2/region.py +20 -0
  100. ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +71 -0
  101. ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +14 -0
  102. ansys/systemcoupling/core/adaptor/api_24_2/results.py +89 -0
  103. ansys/systemcoupling/core/adaptor/api_24_2/save.py +51 -0
  104. ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +54 -0
  105. ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +251 -0
  106. ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +75 -0
  107. ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +25 -0
  108. ansys/systemcoupling/core/adaptor/api_24_2/side.py +20 -0
  109. ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +56 -0
  110. ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +115 -0
  111. ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +122 -0
  112. ansys/systemcoupling/core/adaptor/api_24_2/solve.py +30 -0
  113. ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +157 -0
  114. ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +47 -0
  115. ansys/systemcoupling/core/adaptor/api_24_2/step.py +57 -0
  116. ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +21 -0
  117. ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +62 -0
  118. ansys/systemcoupling/core/adaptor/api_24_2/type.py +38 -0
  119. ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +158 -0
  120. ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +43 -0
  121. ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +61 -0
  122. ansys/systemcoupling/core/adaptor/api_24_2/variable.py +20 -0
  123. ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +231 -0
  124. ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +21 -0
  125. ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +46 -0
  126. ansys/systemcoupling/core/adaptor/impl/injected_commands.py +228 -27
  127. ansys/systemcoupling/core/adaptor/impl/static_info.py +17 -0
  128. ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +3 -0
  129. ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +4 -0
  130. ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
  131. ansys/systemcoupling/core/charts/chart_datatypes.py +169 -0
  132. ansys/systemcoupling/core/charts/csv_chartdata.py +299 -0
  133. ansys/systemcoupling/core/charts/live_csv_datasource.py +87 -0
  134. ansys/systemcoupling/core/charts/message_dispatcher.py +84 -0
  135. ansys/systemcoupling/core/charts/plot_functions.py +92 -0
  136. ansys/systemcoupling/core/charts/plotdefinition_manager.py +303 -0
  137. ansys/systemcoupling/core/charts/plotter.py +343 -0
  138. ansys/systemcoupling/core/client/grpc_client.py +6 -1
  139. ansys/systemcoupling/core/participant/manager.py +25 -9
  140. ansys/systemcoupling/core/participant/protocol.py +1 -0
  141. ansys/systemcoupling/core/session.py +4 -4
  142. ansys/systemcoupling/core/syc_version.py +1 -1
  143. ansys/systemcoupling/core/util/file_transfer.py +4 -0
  144. ansys/systemcoupling/core/util/logging.py +1 -1
  145. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/METADATA +17 -16
  146. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/RECORD +148 -26
  147. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/LICENSE +0 -0
  148. {ansys_systemcoupling_core-0.4.1.dist-info → ansys_systemcoupling_core-0.6.dist-info}/WHEEL +0 -0
@@ -46,6 +46,7 @@ def launch(
46
46
  nprocs: int = None,
47
47
  sycnprocs: int = None,
48
48
  version: str = None,
49
+ start_output: bool = False,
49
50
  extra_args: List[str] = [],
50
51
  ) -> Session:
51
52
  """Start a local instance of System Coupling and connect to it.
@@ -67,13 +68,17 @@ def launch(
67
68
  ``None``, in which case the System Coupling server uses its own default.
68
69
  version : str, optional
69
70
  String specifying the version of System Coupling to use. For example,
70
- to use System Coupling from the Ansys "2023 R1" release, specify ``"231"``.
71
- (The forms ``"23.1"`` and ``"23_1"`` are also acceptable.)
71
+ to use System Coupling from the Ansys "2024 R1" release, specify ``"241"``.
72
+ (The forms ``"24.1"`` and ``"24_1"`` are also acceptable.)
72
73
  The version will be sought in the standard installation location. The
73
74
  default is ``None``, which is equivalent to specifying
74
- ``"241"`` ("2024 R1" release), unless either of the environment
75
+ ``"242"`` ("2024 R2" release), unless either of the environment
75
76
  variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. It is considered
76
77
  to be an error if either these is set *and* ``version`` is provided.
78
+ start_output: bool, optional
79
+ Boolean to specify if the user wants to stream system coupling output.
80
+ The default is ``False``, in which case the output stream is kept hidden.
81
+ If ``True``, the output information is printed to standard output.
77
82
  extra_args : List[str]
78
83
  List of any additional arguments to specify when the server
79
84
  process is launched. The default is ``[]``. If a list of additional
@@ -92,9 +97,9 @@ def launch(
92
97
  if pypim.is_configured():
93
98
  LOG.info(
94
99
  "Starting System Coupling remotely. Any launch arguments other "
95
- "than 'version' are ignored."
100
+ "than 'version' and 'start_output' are ignored."
96
101
  )
97
- rpc.start_pim_and_connect(version)
102
+ rpc.start_pim_and_connect(version, start_output)
98
103
  else:
99
104
  rpc.start_and_connect(
100
105
  port=port,
@@ -102,6 +107,7 @@ def launch(
102
107
  nprocs=nprocs,
103
108
  sycnprocs=sycnprocs,
104
109
  version=version,
110
+ start_output=start_output,
105
111
  extra_args=extra_args,
106
112
  )
107
113
  return Session(rpc)
@@ -0,0 +1,13 @@
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 _clear_state(Command):
9
+ """
10
+ For internal use only.
11
+ """
12
+
13
+ syc_name = "ClearState"
@@ -2,10 +2,11 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "0fbfd3e7593591d8e52193a6e92828c6174e531b26437aee17285b3d0d114664"
5
+ SHASH = "c6427eb39292f21707811cf7093268eb2b0d3d9f2780ddaf390bf51bb916e546"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
9
+ from ._clear_state import _clear_state
9
10
  from .clear_state import clear_state
10
11
  from .delete_snapshot import delete_snapshot
11
12
  from .get_snapshots import get_snapshots
@@ -23,6 +24,7 @@ class case_root(Container):
23
24
  syc_name = "CaseCommands"
24
25
 
25
26
  command_names = [
27
+ "_clear_state",
26
28
  "clear_state",
27
29
  "delete_snapshot",
28
30
  "get_snapshots",
@@ -32,6 +34,10 @@ class case_root(Container):
32
34
  "save_snapshot",
33
35
  ]
34
36
 
37
+ _clear_state: _clear_state = _clear_state
38
+ """
39
+ _clear_state command of case_root.
40
+ """
35
41
  clear_state: clear_state = clear_state
36
42
  """
37
43
  clear_state command of case_root.
@@ -5,7 +5,7 @@
5
5
  from ansys.systemcoupling.core.adaptor.impl.types import *
6
6
 
7
7
 
8
- class clear_state(Command):
8
+ class clear_state(InjectedCommand):
9
9
  """
10
10
  Clears the state of the entire System Coupling service, removing all
11
11
  data model items, parameter values, and calculated values.
@@ -13,4 +13,6 @@ class clear_state(Command):
13
13
  Cannot be run after participants have been started.
14
14
  """
15
15
 
16
- syc_name = "ClearState"
16
+ syc_name = "clear_state"
17
+
18
+ cmd_name = "clear_state"
@@ -0,0 +1,75 @@
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 show_plot(InjectedCommand):
9
+ """
10
+ Shows plots of transfer values and convergence for data transfers
11
+ of a coupling interface.
12
+
13
+ Parameters
14
+ ----------
15
+ interface_name : str
16
+ Specification of which interface to plot.
17
+ transfer_names : typing.List[str], optional
18
+ Specification of which data transfers to plot. Defaults
19
+ to ``None``, which means plot all data transfers.
20
+ working_dir : str, optional
21
+ Working directory (defaults = ".").
22
+ show_convergence : bool, optional
23
+ Whether to show convergence plots (defaults to ``True``).
24
+ show_transfer_values : bool, optional
25
+ Whether to show transfer value plots (defaults to ``True``).
26
+
27
+ """
28
+
29
+ syc_name = "show_plot"
30
+
31
+ cmd_name = "show_plot"
32
+
33
+ argument_names = [
34
+ "interface_name",
35
+ "transfer_names",
36
+ "working_dir",
37
+ "show_convergence",
38
+ "show_transfer_values",
39
+ ]
40
+
41
+ class interface_name(String):
42
+ """
43
+ Specification of which interface to plot.
44
+ """
45
+
46
+ syc_name = "interface_name"
47
+
48
+ class transfer_names(StringList):
49
+ """
50
+ Specification of which data transfers to plot. Defaults
51
+ to ``None``, which means plot all data transfers.
52
+ """
53
+
54
+ syc_name = "transfer_names"
55
+
56
+ class working_dir(String):
57
+ """
58
+ Working directory (defaults = ".").
59
+ """
60
+
61
+ syc_name = "working_dir"
62
+
63
+ class show_convergence(Boolean):
64
+ """
65
+ Whether to show convergence plots (defaults to ``True``).
66
+ """
67
+
68
+ syc_name = "show_convergence"
69
+
70
+ class show_transfer_values(Boolean):
71
+ """
72
+ Whether to show transfer value plots (defaults to ``True``).
73
+ """
74
+
75
+ syc_name = "show_transfer_values"
@@ -2,7 +2,7 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "54b4aa678f0aea8cebeca86bcd71b2877e846e53079c2bf52974d5e039ed3719"
5
+ SHASH = "2774672445bd1c461a14acd1d3f26dcc93710777fea4556f16e3a79c35e271c9"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
@@ -14,6 +14,7 @@ from .initialize import initialize
14
14
  from .interrupt import interrupt
15
15
  from .open_results_in_ensight import open_results_in_ensight
16
16
  from .partition_participants import partition_participants
17
+ from .show_plot import show_plot
17
18
  from .shutdown import shutdown
18
19
  from .solve import solve
19
20
  from .start_participants import start_participants
@@ -38,6 +39,7 @@ class solution_root(Container):
38
39
  "interrupt",
39
40
  "open_results_in_ensight",
40
41
  "partition_participants",
42
+ "show_plot",
41
43
  "shutdown",
42
44
  "solve",
43
45
  "start_participants",
@@ -78,6 +80,10 @@ class solution_root(Container):
78
80
  """
79
81
  partition_participants command of solution_root.
80
82
  """
83
+ show_plot: show_plot = show_plot
84
+ """
85
+ show_plot command of solution_root.
86
+ """
81
87
  shutdown: shutdown = shutdown
82
88
  """
83
89
  shutdown command of solution_root.
@@ -0,0 +1,13 @@
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 _clear_state(Command):
9
+ """
10
+ For internal use only.
11
+ """
12
+
13
+ syc_name = "ClearState"
@@ -2,10 +2,11 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "0fbfd3e7593591d8e52193a6e92828c6174e531b26437aee17285b3d0d114664"
5
+ SHASH = "c6427eb39292f21707811cf7093268eb2b0d3d9f2780ddaf390bf51bb916e546"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
9
+ from ._clear_state import _clear_state
9
10
  from .clear_state import clear_state
10
11
  from .delete_snapshot import delete_snapshot
11
12
  from .get_snapshots import get_snapshots
@@ -23,6 +24,7 @@ class case_root(Container):
23
24
  syc_name = "CaseCommands"
24
25
 
25
26
  command_names = [
27
+ "_clear_state",
26
28
  "clear_state",
27
29
  "delete_snapshot",
28
30
  "get_snapshots",
@@ -32,6 +34,10 @@ class case_root(Container):
32
34
  "save_snapshot",
33
35
  ]
34
36
 
37
+ _clear_state: _clear_state = _clear_state
38
+ """
39
+ _clear_state command of case_root.
40
+ """
35
41
  clear_state: clear_state = clear_state
36
42
  """
37
43
  clear_state command of case_root.
@@ -5,7 +5,7 @@
5
5
  from ansys.systemcoupling.core.adaptor.impl.types import *
6
6
 
7
7
 
8
- class clear_state(Command):
8
+ class clear_state(InjectedCommand):
9
9
  """
10
10
  Clears the state of the entire System Coupling service, removing all
11
11
  data model items, parameter values, and calculated values.
@@ -13,4 +13,6 @@ class clear_state(Command):
13
13
  Cannot be run after participants have been started.
14
14
  """
15
15
 
16
- syc_name = "ClearState"
16
+ syc_name = "clear_state"
17
+
18
+ cmd_name = "clear_state"
@@ -0,0 +1,75 @@
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 show_plot(InjectedCommand):
9
+ """
10
+ Shows plots of transfer values and convergence for data transfers
11
+ of a coupling interface.
12
+
13
+ Parameters
14
+ ----------
15
+ interface_name : str
16
+ Specification of which interface to plot.
17
+ transfer_names : typing.List[str], optional
18
+ Specification of which data transfers to plot. Defaults
19
+ to ``None``, which means plot all data transfers.
20
+ working_dir : str, optional
21
+ Working directory (defaults = ".").
22
+ show_convergence : bool, optional
23
+ Whether to show convergence plots (defaults to ``True``).
24
+ show_transfer_values : bool, optional
25
+ Whether to show transfer value plots (defaults to ``True``).
26
+
27
+ """
28
+
29
+ syc_name = "show_plot"
30
+
31
+ cmd_name = "show_plot"
32
+
33
+ argument_names = [
34
+ "interface_name",
35
+ "transfer_names",
36
+ "working_dir",
37
+ "show_convergence",
38
+ "show_transfer_values",
39
+ ]
40
+
41
+ class interface_name(String):
42
+ """
43
+ Specification of which interface to plot.
44
+ """
45
+
46
+ syc_name = "interface_name"
47
+
48
+ class transfer_names(StringList):
49
+ """
50
+ Specification of which data transfers to plot. Defaults
51
+ to ``None``, which means plot all data transfers.
52
+ """
53
+
54
+ syc_name = "transfer_names"
55
+
56
+ class working_dir(String):
57
+ """
58
+ Working directory (defaults = ".").
59
+ """
60
+
61
+ syc_name = "working_dir"
62
+
63
+ class show_convergence(Boolean):
64
+ """
65
+ Whether to show convergence plots (defaults to ``True``).
66
+ """
67
+
68
+ syc_name = "show_convergence"
69
+
70
+ class show_transfer_values(Boolean):
71
+ """
72
+ Whether to show transfer value plots (defaults to ``True``).
73
+ """
74
+
75
+ syc_name = "show_transfer_values"
@@ -2,7 +2,7 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "9d14945e18aa7dc6f7ad86397c62f0ceb910440e6ac3753ce8a1d0d2f91b84f5"
5
+ SHASH = "a713a451f17d724fabb76832c57ba91cb2d9a7426f9cd3be60bb1a03197d351a"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
@@ -15,6 +15,7 @@ from .initialize import initialize
15
15
  from .interrupt import interrupt
16
16
  from .open_results_in_en_sight import open_results_in_en_sight
17
17
  from .partition_participants import partition_participants
18
+ from .show_plot import show_plot
18
19
  from .shutdown import shutdown
19
20
  from .solve import solve
20
21
  from .start_participants import start_participants
@@ -40,6 +41,7 @@ class solution_root(Container):
40
41
  "interrupt",
41
42
  "open_results_in_en_sight",
42
43
  "partition_participants",
44
+ "show_plot",
43
45
  "shutdown",
44
46
  "solve",
45
47
  "start_participants",
@@ -84,6 +86,10 @@ class solution_root(Container):
84
86
  """
85
87
  partition_participants command of solution_root.
86
88
  """
89
+ show_plot: show_plot = show_plot
90
+ """
91
+ show_plot command of solution_root.
92
+ """
87
93
  shutdown: shutdown = shutdown
88
94
  """
89
95
  shutdown command of solution_root.
@@ -0,0 +1,13 @@
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 _clear_state(Command):
9
+ """
10
+ For internal use only.
11
+ """
12
+
13
+ syc_name = "ClearState"
@@ -2,10 +2,11 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "430648f7df949b91819d62a5c2d5a5c49d1d67217fb3474ee31e0c78e5ffbd43"
5
+ SHASH = "34d232b251e1d4a5a6b88e3deb9591863eac6afb1446228951276f9b1700da9f"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
9
+ from ._clear_state import _clear_state
9
10
  from .clear_state import clear_state
10
11
  from .delete_snapshot import delete_snapshot
11
12
  from .open import open
@@ -22,6 +23,7 @@ class case_root(Container):
22
23
  syc_name = "CaseCommands"
23
24
 
24
25
  command_names = [
26
+ "_clear_state",
25
27
  "clear_state",
26
28
  "delete_snapshot",
27
29
  "open",
@@ -30,6 +32,10 @@ class case_root(Container):
30
32
  "save_snapshot",
31
33
  ]
32
34
 
35
+ _clear_state: _clear_state = _clear_state
36
+ """
37
+ _clear_state command of case_root.
38
+ """
33
39
  clear_state: clear_state = clear_state
34
40
  """
35
41
  clear_state command of case_root.
@@ -5,7 +5,7 @@
5
5
  from ansys.systemcoupling.core.adaptor.impl.types import *
6
6
 
7
7
 
8
- class clear_state(Command):
8
+ class clear_state(InjectedCommand):
9
9
  """
10
10
  Clears the state of the entire System Coupling service, removing all
11
11
  data model items, parameter values, and calculated values.
@@ -13,4 +13,6 @@ class clear_state(Command):
13
13
  Cannot be run after participants have been started.
14
14
  """
15
15
 
16
- syc_name = "ClearState"
16
+ syc_name = "clear_state"
17
+
18
+ cmd_name = "clear_state"
@@ -0,0 +1,75 @@
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 show_plot(InjectedCommand):
9
+ """
10
+ Shows plots of transfer values and convergence for data transfers
11
+ of a coupling interface.
12
+
13
+ Parameters
14
+ ----------
15
+ interface_name : str
16
+ Specification of which interface to plot.
17
+ transfer_names : typing.List[str], optional
18
+ Specification of which data transfers to plot. Defaults
19
+ to ``None``, which means plot all data transfers.
20
+ working_dir : str, optional
21
+ Working directory (defaults = ".").
22
+ show_convergence : bool, optional
23
+ Whether to show convergence plots (defaults to ``True``).
24
+ show_transfer_values : bool, optional
25
+ Whether to show transfer value plots (defaults to ``True``).
26
+
27
+ """
28
+
29
+ syc_name = "show_plot"
30
+
31
+ cmd_name = "show_plot"
32
+
33
+ argument_names = [
34
+ "interface_name",
35
+ "transfer_names",
36
+ "working_dir",
37
+ "show_convergence",
38
+ "show_transfer_values",
39
+ ]
40
+
41
+ class interface_name(String):
42
+ """
43
+ Specification of which interface to plot.
44
+ """
45
+
46
+ syc_name = "interface_name"
47
+
48
+ class transfer_names(StringList):
49
+ """
50
+ Specification of which data transfers to plot. Defaults
51
+ to ``None``, which means plot all data transfers.
52
+ """
53
+
54
+ syc_name = "transfer_names"
55
+
56
+ class working_dir(String):
57
+ """
58
+ Working directory (defaults = ".").
59
+ """
60
+
61
+ syc_name = "working_dir"
62
+
63
+ class show_convergence(Boolean):
64
+ """
65
+ Whether to show convergence plots (defaults to ``True``).
66
+ """
67
+
68
+ syc_name = "show_convergence"
69
+
70
+ class show_transfer_values(Boolean):
71
+ """
72
+ Whether to show transfer value plots (defaults to ``True``).
73
+ """
74
+
75
+ syc_name = "show_transfer_values"
@@ -2,7 +2,7 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "92304eda8d03ebade30fb915bf1f0ab24f3d545b0d394f9d2ab9674b4bfd27fd"
5
+ SHASH = "88f74a7fd899f469e2b44e28e2840af9f018c6891645f7974ecf900003b1c542"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
@@ -15,6 +15,7 @@ from .initialize import initialize
15
15
  from .interrupt import interrupt
16
16
  from .open_results_in_ensight import open_results_in_ensight
17
17
  from .partition_participants import partition_participants
18
+ from .show_plot import show_plot
18
19
  from .shutdown import shutdown
19
20
  from .solve import solve
20
21
  from .start_participants import start_participants
@@ -40,6 +41,7 @@ class solution_root(Container):
40
41
  "interrupt",
41
42
  "open_results_in_ensight",
42
43
  "partition_participants",
44
+ "show_plot",
43
45
  "shutdown",
44
46
  "solve",
45
47
  "start_participants",
@@ -84,6 +86,10 @@ class solution_root(Container):
84
86
  """
85
87
  partition_participants command of solution_root.
86
88
  """
89
+ show_plot: show_plot = show_plot
90
+ """
91
+ show_plot command of solution_root.
92
+ """
87
93
  shutdown: shutdown = shutdown
88
94
  """
89
95
  shutdown command of solution_root.
@@ -0,0 +1,80 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class _add_participant(Command):
9
+ """
10
+ For internal use only.
11
+
12
+ Parameters
13
+ ----------
14
+ participant_type : str, optional
15
+ ...
16
+ input_file : str, optional
17
+ ...
18
+ executable : str, optional
19
+ ...
20
+ additional_arguments : str, optional
21
+ ...
22
+ working_directory : str, optional
23
+ ...
24
+ python_script : str, optional
25
+ ...
26
+
27
+ """
28
+
29
+ syc_name = "AddParticipant"
30
+
31
+ argument_names = [
32
+ "participant_type",
33
+ "input_file",
34
+ "executable",
35
+ "additional_arguments",
36
+ "working_directory",
37
+ "python_script",
38
+ ]
39
+
40
+ class participant_type(String):
41
+ """
42
+ ...
43
+ """
44
+
45
+ syc_name = "ParticipantType"
46
+
47
+ class input_file(String):
48
+ """
49
+ ...
50
+ """
51
+
52
+ syc_name = "InputFile"
53
+
54
+ class executable(String):
55
+ """
56
+ ...
57
+ """
58
+
59
+ syc_name = "Executable"
60
+
61
+ class additional_arguments(String):
62
+ """
63
+ ...
64
+ """
65
+
66
+ syc_name = "AdditionalArguments"
67
+
68
+ class working_directory(String):
69
+ """
70
+ ...
71
+ """
72
+
73
+ syc_name = "WorkingDirectory"
74
+
75
+ class python_script(String):
76
+ """
77
+ ...
78
+ """
79
+
80
+ syc_name = "PythonScript"
@@ -0,0 +1,13 @@
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 _clear_state(Command):
9
+ """
10
+ For internal use only.
11
+ """
12
+
13
+ syc_name = "ClearState"
@@ -0,0 +1,13 @@
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 _solve(Command):
9
+ """
10
+ For internal use only.
11
+ """
12
+
13
+ syc_name = "Solve"