ansys-systemcoupling-core 0.8.0__tar.gz → 0.9.0__tar.gz

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 (676) hide show
  1. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/LICENSE +1 -1
  2. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/PKG-INFO +35 -21
  3. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/README.rst +16 -3
  4. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/pyproject.toml +17 -17
  5. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/__init__.py +2 -2
  6. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/_version.py +1 -1
  7. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +25 -0
  8. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +114 -0
  9. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py +259 -0
  10. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py +1 -1
  11. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +61 -0
  12. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py +80 -0
  13. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +13 -0
  14. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +13 -0
  15. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/abort.py +39 -0
  16. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +46 -0
  17. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +43 -0
  18. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +190 -0
  19. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py +191 -0
  20. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +61 -0
  21. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +32 -0
  22. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +43 -0
  23. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +77 -0
  24. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py +78 -0
  25. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +42 -0
  26. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +32 -0
  27. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +162 -0
  28. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +40 -0
  29. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +43 -0
  30. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
  31. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +303 -0
  32. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/apip.py +33 -0
  33. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +44 -0
  34. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
  35. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +64 -0
  36. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +46 -0
  37. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +40 -0
  38. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +56 -0
  39. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +62 -0
  40. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +18 -0
  41. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +41 -0
  42. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +20 -0
  43. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +42 -0
  44. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +23 -0
  45. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +272 -0
  46. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +29 -0
  47. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +20 -0
  48. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +187 -0
  49. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +28 -0
  50. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +42 -0
  51. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +96 -0
  52. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +256 -0
  53. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +24 -0
  54. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression.py +20 -0
  55. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +36 -0
  56. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +20 -0
  57. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +46 -0
  58. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +24 -0
  59. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +77 -0
  60. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +20 -0
  61. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +164 -0
  62. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +41 -0
  63. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +29 -0
  64. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
  65. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +13 -0
  66. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +29 -0
  67. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +31 -0
  68. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +25 -0
  69. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +52 -0
  70. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +13 -0
  71. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +32 -0
  72. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +43 -0
  73. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +155 -0
  74. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +36 -0
  75. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +36 -0
  76. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +27 -0
  77. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +25 -0
  78. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +114 -0
  79. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +39 -0
  80. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/library.py +37 -0
  81. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +20 -0
  82. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +100 -0
  83. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/map.py +19 -0
  84. {ansys_systemcoupling_core-0.8.0/src/ansys/systemcoupling/core/adaptor/api_25_1 → ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2}/mapping_control.py +10 -0
  85. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open.py +102 -0
  86. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +56 -0
  87. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +37 -0
  88. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +134 -0
  89. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +20 -0
  90. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +60 -0
  91. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +138 -0
  92. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/properties.py +36 -0
  93. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +46 -0
  94. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +20 -0
  95. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +71 -0
  96. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/region.py +20 -0
  97. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +71 -0
  98. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +14 -0
  99. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/results.py +89 -0
  100. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/save.py +51 -0
  101. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +54 -0
  102. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +259 -0
  103. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +75 -0
  104. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +25 -0
  105. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/side.py +20 -0
  106. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +56 -0
  107. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +117 -0
  108. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +134 -0
  109. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
  110. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +157 -0
  111. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/step.py +57 -0
  112. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +21 -0
  113. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +62 -0
  114. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/type.py +39 -0
  115. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +158 -0
  116. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +43 -0
  117. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +19 -0
  118. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +61 -0
  119. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/variable.py +20 -0
  120. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +231 -0
  121. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +21 -0
  122. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +46 -0
  123. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +32 -0
  124. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +1 -1
  125. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +1 -1
  126. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/injected_commands.py +1 -1
  127. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/root_source.py +1 -1
  128. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/static_info.py +13 -6
  129. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +1 -1
  130. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +1 -1
  131. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
  132. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/chart_datatypes.py +1 -1
  133. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/csv_chartdata.py +18 -4
  134. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/live_csv_datasource.py +1 -1
  135. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/message_dispatcher.py +1 -1
  136. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/plot_functions.py +1 -1
  137. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/plotdefinition_manager.py +1 -1
  138. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/charts/plotter.py +1 -1
  139. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/grpc_client.py +11 -2
  140. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/services/command_query.py +4 -13
  141. ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/client/services/handle_rpc_error.py +64 -0
  142. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/services/output_stream.py +1 -1
  143. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/services/process.py +1 -1
  144. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/services/solution.py +4 -13
  145. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/syc_container.py +4 -1
  146. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/syc_process.py +5 -1
  147. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/client/variant.py +1 -1
  148. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/examples/__init__.py +1 -1
  149. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/examples/downloads.py +1 -1
  150. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/native_api/__init__.py +1 -1
  151. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/native_api/command_metadata.py +1 -1
  152. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/native_api/datamodel_metadata.py +1 -1
  153. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +1 -1
  154. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/native_api/native_api.py +1 -1
  155. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/native_api/object_path.py +1 -1
  156. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/participant/manager.py +1 -1
  157. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/participant/mapdl.py +1 -1
  158. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/participant/protocol.py +1 -1
  159. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/session.py +1 -1
  160. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/syc_version.py +3 -3
  161. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/util/file_transfer.py +1 -1
  162. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/util/logging.py +1 -1
  163. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/util/name_util.py +1 -1
  164. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/util/pathstr.py +1 -1
  165. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/util/state_keys.py +1 -1
  166. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/util/yaml_helper.py +1 -1
  167. ansys_systemcoupling_core-0.8.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +0 -23
  168. ansys_systemcoupling_core-0.8.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +0 -62
  169. ansys_systemcoupling_core-0.8.0/src/ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +0 -61
  170. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py +0 -0
  171. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +0 -0
  172. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_solve.py +0 -0
  173. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/abort.py +0 -0
  174. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py +0 -0
  175. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer.py +0 -0
  176. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer_by_display_names.py +0 -0
  177. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_expression_function.py +0 -0
  178. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_interface.py +0 -0
  179. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_interface_by_display_names.py +0 -0
  180. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_named_expression.py +0 -0
  181. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_participant.py +0 -0
  182. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_reference_frame.py +0 -0
  183. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_transformation.py +0 -0
  184. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/analysis_control.py +0 -0
  185. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/apip.py +0 -0
  186. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/ascii_output.py +0 -0
  187. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/attribute.py +0 -0
  188. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py +0 -0
  189. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py +0 -0
  190. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py +0 -0
  191. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +0 -0
  192. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +0 -0
  193. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py +0 -0
  194. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py +0 -0
  195. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py +0 -0
  196. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py +0 -0
  197. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/create_restart_point.py +0 -0
  198. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/data_transfer.py +0 -0
  199. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/data_transfer_child.py +0 -0
  200. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/delete_snapshot.py +0 -0
  201. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/delete_transformation.py +0 -0
  202. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/dimensionality.py +0 -0
  203. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/execution_control.py +0 -0
  204. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression.py +0 -0
  205. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_child.py +0 -0
  206. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_function.py +0 -0
  207. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_function_child.py +0 -0
  208. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/external_data_file.py +0 -0
  209. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fluent_input.py +0 -0
  210. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter.py +0 -0
  211. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py +0 -0
  212. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/generate_input_file.py +0 -0
  213. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_execution_command.py +0 -0
  214. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_machines.py +0 -0
  215. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_region_names_for_participant.py +0 -0
  216. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_setup_summary.py +0 -0
  217. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_snapshots.py +0 -0
  218. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_status_messages.py +0 -0
  219. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/global_stabilization.py +0 -0
  220. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/has_input_file_changed.py +0 -0
  221. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/import_system_coupling_input_file.py +0 -0
  222. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/initialize.py +0 -0
  223. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/instancing.py +0 -0
  224. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/instancing_child.py +0 -0
  225. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/interrupt.py +0 -0
  226. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/library.py +0 -0
  227. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/mapping_control.py +0 -0
  228. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open.py +0 -0
  229. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open_results_in_ensight.py +0 -0
  230. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open_snapshot.py +0 -0
  231. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/output_control.py +0 -0
  232. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/partition_participants.py +0 -0
  233. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reference_frame.py +0 -0
  234. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reference_frame_child.py +0 -0
  235. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/region.py +0 -0
  236. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/region_child.py +0 -0
  237. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reload_expression_function_modules.py +0 -0
  238. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/results.py +0 -0
  239. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/save.py +0 -0
  240. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py +0 -0
  241. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py +0 -0
  242. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +0 -0
  243. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py +0 -0
  244. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/side.py +0 -0
  245. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/side_child.py +0 -0
  246. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py +0 -0
  247. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +0 -0
  248. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solve.py +0 -0
  249. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py +0 -0
  250. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py +0 -0
  251. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/step.py +0 -0
  252. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/transformation.py +0 -0
  253. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/transformation_child.py +0 -0
  254. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/type.py +0 -0
  255. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/unmapped_value_options.py +0 -0
  256. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/update_control.py +0 -0
  257. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/update_participant.py +0 -0
  258. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/variable.py +0 -0
  259. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py +0 -0
  260. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py +0 -0
  261. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py +0 -0
  262. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py +0 -0
  263. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +0 -0
  264. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_solve.py +0 -0
  265. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/abort.py +0 -0
  266. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py +0 -0
  267. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer.py +0 -0
  268. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer_by_display_names.py +0 -0
  269. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_expression_function.py +0 -0
  270. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface.py +0 -0
  271. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface_by_display_names.py +0 -0
  272. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_named_expression.py +0 -0
  273. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_participant.py +0 -0
  274. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_reference_frame.py +0 -0
  275. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_transformation.py +0 -0
  276. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py +0 -0
  277. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/apip.py +0 -0
  278. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/ascii_output.py +0 -0
  279. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/attribute.py +0 -0
  280. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py +0 -0
  281. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +0 -0
  282. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py +0 -0
  283. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py +0 -0
  284. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +0 -0
  285. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +0 -0
  286. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py +0 -0
  287. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py +0 -0
  288. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py +0 -0
  289. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py +0 -0
  290. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/create_restart_point.py +0 -0
  291. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/data_transfer.py +0 -0
  292. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/data_transfer_child.py +0 -0
  293. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/delete_snapshot.py +0 -0
  294. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/delete_transformation.py +0 -0
  295. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/dimensionality.py +0 -0
  296. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/execution_control.py +0 -0
  297. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression.py +0 -0
  298. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_child.py +0 -0
  299. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_function.py +0 -0
  300. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_function_child.py +0 -0
  301. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/external_data_file.py +0 -0
  302. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fluent_input.py +0 -0
  303. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter.py +0 -0
  304. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py +0 -0
  305. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/generate_input_file.py +0 -0
  306. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_execution_command.py +0 -0
  307. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_machines.py +0 -0
  308. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_region_names_for_participant.py +0 -0
  309. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_setup_summary.py +0 -0
  310. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_snapshots.py +0 -0
  311. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_status_messages.py +0 -0
  312. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +0 -0
  313. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/global_stabilization.py +0 -0
  314. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/has_input_file_changed.py +0 -0
  315. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/import_system_coupling_input_file.py +0 -0
  316. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/initialize.py +0 -0
  317. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/instancing.py +0 -0
  318. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/instancing_child.py +0 -0
  319. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/interrupt.py +0 -0
  320. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/library.py +0 -0
  321. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +0 -0
  322. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +0 -0
  323. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/mapping_control.py +0 -0
  324. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open.py +0 -0
  325. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +0 -0
  326. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_snapshot.py +0 -0
  327. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/output_control.py +0 -0
  328. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/partition_participants.py +0 -0
  329. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reference_frame.py +0 -0
  330. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reference_frame_child.py +0 -0
  331. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/region.py +0 -0
  332. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/region_child.py +0 -0
  333. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reload_expression_function_modules.py +0 -0
  334. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/results.py +0 -0
  335. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/save.py +0 -0
  336. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/save_snapshot.py +0 -0
  337. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py +0 -0
  338. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +0 -0
  339. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/shutdown.py +0 -0
  340. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/side.py +0 -0
  341. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/side_child.py +0 -0
  342. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py +0 -0
  343. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +0 -0
  344. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solve.py +0 -0
  345. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/stabilization.py +0 -0
  346. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py +0 -0
  347. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/step.py +0 -0
  348. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/transformation.py +0 -0
  349. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/transformation_child.py +0 -0
  350. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/type.py +0 -0
  351. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/unmapped_value_options.py +0 -0
  352. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/update_control.py +0 -0
  353. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/update_participant.py +0 -0
  354. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable.py +0 -0
  355. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py +0 -0
  356. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py +0 -0
  357. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py +0 -0
  358. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py +0 -0
  359. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +0 -0
  360. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_solve.py +0 -0
  361. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/abort.py +0 -0
  362. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py +0 -0
  363. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_aerodamping_data_transfers.py +0 -0
  364. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer.py +0 -0
  365. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +0 -0
  366. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_expression_function.py +0 -0
  367. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py +0 -0
  368. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +0 -0
  369. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +0 -0
  370. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_named_expression.py +0 -0
  371. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py +0 -0
  372. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +0 -0
  373. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py +0 -0
  374. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_thermal_data_transfers.py +0 -0
  375. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_transformation.py +0 -0
  376. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +0 -0
  377. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/apip.py +0 -0
  378. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py +0 -0
  379. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute.py +0 -0
  380. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py +0 -0
  381. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py +0 -0
  382. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py +0 -0
  383. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +0 -0
  384. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +0 -0
  385. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +0 -0
  386. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py +0 -0
  387. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py +0 -0
  388. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py +0 -0
  389. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +0 -0
  390. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py +0 -0
  391. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py +0 -0
  392. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py +0 -0
  393. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py +0 -0
  394. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py +0 -0
  395. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py +0 -0
  396. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +0 -0
  397. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression.py +0 -0
  398. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py +0 -0
  399. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py +0 -0
  400. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py +0 -0
  401. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py +0 -0
  402. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py +0 -0
  403. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py +0 -0
  404. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +0 -0
  405. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py +0 -0
  406. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_add_data_transfer_group_commands.py +0 -0
  407. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py +0 -0
  408. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py +0 -0
  409. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_mode_shape_variables.py +0 -0
  410. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py +0 -0
  411. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py +0 -0
  412. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py +0 -0
  413. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_thermal_data_transfer_options.py +0 -0
  414. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py +0 -0
  415. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py +0 -0
  416. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +0 -0
  417. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py +0 -0
  418. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/initialize.py +0 -0
  419. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing.py +0 -0
  420. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py +0 -0
  421. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py +0 -0
  422. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/library.py +0 -0
  423. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py +0 -0
  424. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py +0 -0
  425. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +0 -0
  426. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open.py +0 -0
  427. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +0 -0
  428. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py +0 -0
  429. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +0 -0
  430. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter.py +0 -0
  431. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py +0 -0
  432. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py +0 -0
  433. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/record_interactions.py +0 -0
  434. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py +0 -0
  435. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py +0 -0
  436. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region.py +0 -0
  437. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +0 -0
  438. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py +0 -0
  439. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/results.py +0 -0
  440. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/save.py +0 -0
  441. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py +0 -0
  442. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +0 -0
  443. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +0 -0
  444. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py +0 -0
  445. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/side.py +0 -0
  446. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/side_child.py +0 -0
  447. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +0 -0
  448. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +0 -0
  449. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solve.py +0 -0
  450. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py +0 -0
  451. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +0 -0
  452. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/step.py +0 -0
  453. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation.py +0 -0
  454. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py +0 -0
  455. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/type.py +0 -0
  456. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py +0 -0
  457. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_control.py +0 -0
  458. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +0 -0
  459. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable.py +0 -0
  460. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +0 -0
  461. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py +0 -0
  462. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py +0 -0
  463. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +0 -0
  464. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +0 -0
  465. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +0 -0
  466. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/abort.py +0 -0
  467. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +0 -0
  468. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +0 -0
  469. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +0 -0
  470. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +0 -0
  471. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +0 -0
  472. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +0 -0
  473. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +0 -0
  474. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +0 -0
  475. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +0 -0
  476. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +0 -0
  477. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +0 -0
  478. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +0 -0
  479. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +0 -0
  480. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +0 -0
  481. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +0 -0
  482. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/apip.py +0 -0
  483. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +0 -0
  484. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +0 -0
  485. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +0 -0
  486. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +0 -0
  487. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +0 -0
  488. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +0 -0
  489. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +0 -0
  490. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +0 -0
  491. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +0 -0
  492. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +0 -0
  493. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +0 -0
  494. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +0 -0
  495. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +0 -0
  496. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +0 -0
  497. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +0 -0
  498. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +0 -0
  499. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +0 -0
  500. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +0 -0
  501. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +0 -0
  502. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +0 -0
  503. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +0 -0
  504. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression.py +0 -0
  505. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +0 -0
  506. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +0 -0
  507. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +0 -0
  508. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +0 -0
  509. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +0 -0
  510. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +0 -0
  511. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +0 -0
  512. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +0 -0
  513. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +0 -0
  514. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +0 -0
  515. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +0 -0
  516. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +0 -0
  517. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +0 -0
  518. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +0 -0
  519. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +0 -0
  520. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +0 -0
  521. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +0 -0
  522. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +0 -0
  523. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +0 -0
  524. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +0 -0
  525. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +0 -0
  526. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +0 -0
  527. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +0 -0
  528. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +0 -0
  529. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +0 -0
  530. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/library.py +0 -0
  531. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +0 -0
  532. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +0 -0
  533. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +0 -0
  534. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open.py +0 -0
  535. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +0 -0
  536. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +0 -0
  537. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +0 -0
  538. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +0 -0
  539. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +0 -0
  540. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +0 -0
  541. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/properties.py +0 -0
  542. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +0 -0
  543. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +0 -0
  544. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +0 -0
  545. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/region.py +0 -0
  546. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +0 -0
  547. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +0 -0
  548. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/results.py +0 -0
  549. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/save.py +0 -0
  550. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +0 -0
  551. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +0 -0
  552. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +0 -0
  553. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +0 -0
  554. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/side.py +0 -0
  555. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +0 -0
  556. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +0 -0
  557. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +0 -0
  558. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solve.py +0 -0
  559. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +0 -0
  560. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +0 -0
  561. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/step.py +0 -0
  562. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +0 -0
  563. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +0 -0
  564. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/type.py +0 -0
  565. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +0 -0
  566. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +0 -0
  567. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +0 -0
  568. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/variable.py +0 -0
  569. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +0 -0
  570. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +0 -0
  571. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +0 -0
  572. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_add_participant.py +0 -0
  573. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_clear_state.py +0 -0
  574. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_solve.py +0 -0
  575. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/abort.py +0 -0
  576. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/activate_hidden.py +0 -0
  577. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_aerodamping_data_transfers.py +0 -0
  578. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_data_transfer.py +0 -0
  579. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_data_transfer_by_display_names.py +0 -0
  580. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_expression_function.py +0 -0
  581. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_flow_boundary_data_transfers.py +0 -0
  582. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_fsi_data_transfers.py +0 -0
  583. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_interface.py +0 -0
  584. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_interface_by_display_names.py +0 -0
  585. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_named_expression.py +0 -0
  586. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_ordered_data_transfers.py +0 -0
  587. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_participant.py +0 -0
  588. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_reference_frame.py +0 -0
  589. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_thermal_data_transfers.py +0 -0
  590. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_transformation.py +0 -0
  591. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/analysis_control.py +0 -0
  592. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/apip.py +0 -0
  593. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/ascii_output.py +0 -0
  594. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/attribute.py +0 -0
  595. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/attribute_child.py +0 -0
  596. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/automatic_alignment_options.py +0 -0
  597. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/available_ports.py +0 -0
  598. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/avoid_data_reconstruction.py +0 -0
  599. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/case_root.py +0 -0
  600. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/clear_state.py +0 -0
  601. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/connect_ensight_dvs.py +0 -0
  602. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_interface.py +0 -0
  603. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_interface_child.py +0 -0
  604. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_participant.py +0 -0
  605. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_participant_child.py +0 -0
  606. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/create_restart_point.py +0 -0
  607. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/data_transfer.py +0 -0
  608. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/data_transfer_child.py +0 -0
  609. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/delete_snapshot.py +0 -0
  610. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/delete_transformation.py +0 -0
  611. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/dimensionality.py +0 -0
  612. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/execution_control.py +0 -0
  613. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/execution_control_1.py +0 -0
  614. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression.py +0 -0
  615. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_child.py +0 -0
  616. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_function.py +0 -0
  617. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_function_child.py +0 -0
  618. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/external_data_file.py +0 -0
  619. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fluent_input.py +0 -0
  620. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fmu_parameter.py +0 -0
  621. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fmu_parameter_child.py +0 -0
  622. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/generate_input_file.py +0 -0
  623. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_add_data_transfer_group_commands.py +0 -0
  624. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_execution_command.py +0 -0
  625. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_machines.py +0 -0
  626. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_mode_shape_variables.py +0 -0
  627. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_region_names_for_participant.py +0 -0
  628. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_setup_summary.py +0 -0
  629. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_status_messages.py +0 -0
  630. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_supported_participant_types.py +0 -0
  631. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_thermal_data_transfer_options.py +0 -0
  632. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_transformation.py +0 -0
  633. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/global_stabilization.py +0 -0
  634. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/has_input_file_changed.py +0 -0
  635. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/import_system_coupling_input_file.py +0 -0
  636. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/initialize.py +0 -0
  637. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/interrupt.py +0 -0
  638. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/library.py +0 -0
  639. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/live_visualization.py +0 -0
  640. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/live_visualization_child.py +0 -0
  641. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open.py +0 -0
  642. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open_results_in_ensight.py +0 -0
  643. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open_snapshot.py +0 -0
  644. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/output_control.py +0 -0
  645. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/parameter.py +0 -0
  646. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/parameter_child.py +0 -0
  647. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/partition_participants.py +0 -0
  648. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/properties.py +0 -0
  649. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/record_interactions.py +0 -0
  650. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reference_frame.py +0 -0
  651. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reference_frame_child.py +0 -0
  652. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/region.py +0 -0
  653. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/region_child.py +0 -0
  654. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reload_expression_function_modules.py +0 -0
  655. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/results.py +0 -0
  656. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/save.py +0 -0
  657. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/save_snapshot.py +0 -0
  658. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/show_plot.py +0 -0
  659. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/shutdown.py +0 -0
  660. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/side.py +0 -0
  661. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/side_child.py +0 -0
  662. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solution_control.py +0 -0
  663. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solution_root.py +0 -0
  664. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solve.py +0 -0
  665. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/stabilization.py +0 -0
  666. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/start_participants.py +0 -0
  667. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/step.py +0 -0
  668. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/transformation.py +0 -0
  669. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/transformation_child.py +0 -0
  670. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/type.py +0 -0
  671. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/unmapped_value_options.py +0 -0
  672. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/update_control.py +0 -0
  673. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/variable.py +0 -0
  674. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/variable_child.py +0 -0
  675. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/write_csv_chart_files.py +0 -0
  676. {ansys_systemcoupling_core-0.8.0 → ansys_systemcoupling_core-0.9.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/write_ensight.py +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
3
+ Copyright (c) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
@@ -1,10 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ansys-systemcoupling-core
3
- Version: 0.8.0
3
+ Version: 0.9.0
4
4
  Summary: A Python wrapper for Ansys System Coupling.
5
5
  Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
6
6
  Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
7
- Requires-Python: >=3.10,<3.13
7
+ Requires-Python: >=3.10,<3.14
8
8
  Description-Content-Type: text/x-rst
9
9
  Classifier: Development Status :: 4 - Beta
10
10
  Classifier: Intended Audience :: Science/Research
@@ -16,10 +16,12 @@ Classifier: Operating System :: MacOS
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ License-File: LICENSE
19
21
  Requires-Dist: ansys-api-systemcoupling==0.2.0
20
22
  Requires-Dist: ansys-platform-instancemanagement~=1.0
21
23
  Requires-Dist: grpcio>=1.30.0
22
- Requires-Dist: grpcio-status>=1.30.0,<1.66.2
24
+ Requires-Dist: grpcio-status>=1.30.0
23
25
  Requires-Dist: googleapis-common-protos>=1.50.0
24
26
  Requires-Dist: psutil>=5.7.0
25
27
  Requires-Dist: pyyaml
@@ -27,27 +29,26 @@ Requires-Dist: appdirs>=1.4.0
27
29
  Requires-Dist: importlib-metadata>=4.0
28
30
  Requires-Dist: matplotlib>=3.8.2
29
31
  Requires-Dist: build ; extra == "build"
30
- Requires-Dist: black==24.8.0 ; extra == "classesgen"
31
- Requires-Dist: isort==5.13.2 ; extra == "classesgen"
32
- Requires-Dist: ansys-sphinx-theme==1.0.11 ; extra == "doc"
32
+ Requires-Dist: black==25.1.0 ; extra == "classesgen"
33
+ Requires-Dist: isort==6.0.1 ; extra == "classesgen"
34
+ Requires-Dist: ansys-sphinx-theme==1.3.2 ; extra == "doc"
33
35
  Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
34
36
  Requires-Dist: matplotlib ; extra == "doc"
35
37
  Requires-Dist: numpydoc==1.8.0 ; extra == "doc"
36
- Requires-Dist: pypandoc==1.13 ; extra == "doc"
38
+ Requires-Dist: pypandoc==1.15 ; extra == "doc"
37
39
  Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
38
- Requires-Dist: Sphinx==8.0.2 ; extra == "doc"
39
- Requires-Dist: sphinx-autobuild==2024.9.19 ; extra == "doc"
40
- Requires-Dist: sphinx-autodoc-typehints==2.4.4 ; extra == "doc"
40
+ Requires-Dist: sphinx>=8.1.3 ; extra == "doc"
41
+ Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
42
+ Requires-Dist: sphinx-autodoc-typehints==3.1.0 ; extra == "doc"
41
43
  Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
42
- Requires-Dist: sphinx-gallery==0.17.1 ; extra == "doc"
43
- Requires-Dist: sphinx-notfound-page==1.0.4 ; extra == "doc"
44
+ Requires-Dist: sphinx-gallery==0.19.0 ; extra == "doc"
45
+ Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
44
46
  Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
45
47
  Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
46
- Requires-Dist: ansys-fluent-core==0.26.0 ; extra == "doc"
47
- Requires-Dist: ansys-dpf-core==0.13.0 ; extra == "doc"
48
- Requires-Dist: ansys-mapdl-core==0.68.4 ; extra == "doc"
49
- Requires-Dist: codespell==2.3.0 ; extra == "style"
50
- Requires-Dist: flake8==7.1.1 ; extra == "style"
48
+ Requires-Dist: ansys-fluent-core==0.29.0 ; extra == "doc"
49
+ Requires-Dist: ansys-mapdl-core==0.69.3 ; extra == "doc"
50
+ Requires-Dist: codespell==2.4.1 ; extra == "style"
51
+ Requires-Dist: flake8==7.1.2 ; extra == "style"
51
52
  Requires-Dist: pytest ; extra == "tests"
52
53
  Requires-Dist: pytest-cov ; extra == "tests"
53
54
  Requires-Dist: psutil>=5.7.0 ; extra == "tests"
@@ -136,16 +137,29 @@ in this order:
136
137
 
137
138
  * ``SYSC_ROOT``
138
139
  * ``AWP_ROOT``
139
- * ``AWP_ROOT242``
140
+ * ``AWP_ROOT251``
140
141
 
141
142
  If a variable is set but does not refer to a valid installation, PySystemCoupling
142
143
  fails at that point, rather than attempting to use the next variable.
143
144
 
144
- In a standard user installation, the expectation is that only ``AWP_ROOT242`` is set.
145
+ In a standard user installation, the expectation is that only ``AWP_ROOT251`` is set.
145
146
 
146
147
  (It is also possible to provide a different version number as an argument to the ``launch()``
147
148
  function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
148
149
 
150
+ **WARNING**
151
+
152
+ There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
153
+ working in the gRPC server mode on which PySystemCoupling depends. A small patch
154
+ is available that may be applied to some of the Python files in the System Coupling
155
+ installation. This is provided in the ``patches/`` directory of this repository and will
156
+ allow System Coupling to work with the current release of PySystemCoupling.
157
+
158
+ Otherwise, PySystemCoupling should be used with an earlier release of System Coupling by
159
+ setting the environment variable ``AWP_ROOT`` or specifying the version number as an
160
+ argument to the ``launch()`` function.
161
+
162
+
149
163
  The System Coupling API is exposed to PySystemCoupling in two forms:
150
164
 
151
165
  * A documented interface based on concrete Python classes, following Pythonic conventions
@@ -157,7 +171,7 @@ familiar with System Coupling, adjusting to this form, which is the recommended
157
171
  However, if you are transitioning existing scripts, the native System Coupling API is made available
158
172
  as a convenience.
159
173
 
160
- .. note::
174
+ **Note**
161
175
 
162
176
  While most commands should work as expected via the native System Coupling API,
163
177
  no guarantees can be given because of the nature of how it is exposed.
@@ -73,16 +73,29 @@ in this order:
73
73
 
74
74
  * ``SYSC_ROOT``
75
75
  * ``AWP_ROOT``
76
- * ``AWP_ROOT242``
76
+ * ``AWP_ROOT251``
77
77
 
78
78
  If a variable is set but does not refer to a valid installation, PySystemCoupling
79
79
  fails at that point, rather than attempting to use the next variable.
80
80
 
81
- In a standard user installation, the expectation is that only ``AWP_ROOT242`` is set.
81
+ In a standard user installation, the expectation is that only ``AWP_ROOT251`` is set.
82
82
 
83
83
  (It is also possible to provide a different version number as an argument to the ``launch()``
84
84
  function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
85
85
 
86
+ **WARNING**
87
+
88
+ There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
89
+ working in the gRPC server mode on which PySystemCoupling depends. A small patch
90
+ is available that may be applied to some of the Python files in the System Coupling
91
+ installation. This is provided in the ``patches/`` directory of this repository and will
92
+ allow System Coupling to work with the current release of PySystemCoupling.
93
+
94
+ Otherwise, PySystemCoupling should be used with an earlier release of System Coupling by
95
+ setting the environment variable ``AWP_ROOT`` or specifying the version number as an
96
+ argument to the ``launch()`` function.
97
+
98
+
86
99
  The System Coupling API is exposed to PySystemCoupling in two forms:
87
100
 
88
101
  * A documented interface based on concrete Python classes, following Pythonic conventions
@@ -94,7 +107,7 @@ familiar with System Coupling, adjusting to this form, which is the recommended
94
107
  However, if you are transitioning existing scripts, the native System Coupling API is made available
95
108
  as a convenience.
96
109
 
97
- .. note::
110
+ **Note**
98
111
 
99
112
  While most commands should work as expected via the native System Coupling API,
100
113
  no guarantees can be given because of the nature of how it is exposed.
@@ -5,10 +5,10 @@ build-backend = "flit_core.buildapi"
5
5
  [project]
6
6
  # Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
7
7
  name = "ansys-systemcoupling-core"
8
- version = "0.8.0"
8
+ version = "0.9.0"
9
9
  description = "A Python wrapper for Ansys System Coupling."
10
10
  readme = "README.rst"
11
- requires-python = ">=3.10,<3.13"
11
+ requires-python = ">=3.10,<3.14"
12
12
  license = {file = "LICENSE"}
13
13
  authors = [
14
14
  {name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"},
@@ -20,7 +20,7 @@ dependencies = [
20
20
  "ansys-api-systemcoupling==0.2.0",
21
21
  "ansys-platform-instancemanagement~=1.0",
22
22
  "grpcio>=1.30.0",
23
- "grpcio-status>=1.30.0,<1.66.2",
23
+ "grpcio-status>=1.30.0",
24
24
  "googleapis-common-protos>=1.50.0",
25
25
  "psutil>=5.7.0",
26
26
  "pyyaml",
@@ -39,6 +39,7 @@ classifiers = [
39
39
  "Programming Language :: Python :: 3.10",
40
40
  "Programming Language :: Python :: 3.11",
41
41
  "Programming Language :: Python :: 3.12",
42
+ "Programming Language :: Python :: 3.13",
42
43
  ]
43
44
 
44
45
  [project.optional-dependencies]
@@ -52,34 +53,33 @@ classesgen = [
52
53
  # black and isort are called programmatically to keep generated code
53
54
  # consistent with style elsewhere. We need to keep these versions in
54
55
  # sync with the precommit dependencies.
55
- "black==24.8.0",
56
- "isort==5.13.2",
56
+ "black==25.1.0",
57
+ "isort==6.0.1",
57
58
  ]
58
59
  doc = [
59
- "ansys-sphinx-theme==1.0.11",
60
+ "ansys-sphinx-theme==1.3.2",
60
61
  "jupyter_sphinx==0.5.3",
61
62
  "matplotlib",
62
63
  "numpydoc==1.8.0",
63
- "pypandoc==1.13",
64
+ "pypandoc==1.15",
64
65
  "pytest-sphinx==0.6.3",
65
- "Sphinx==8.0.2",
66
- "sphinx-autobuild==2024.9.19",
67
- "sphinx-autodoc-typehints==2.4.4",
66
+ "sphinx>=8.1.3",
67
+ "sphinx-autobuild==2024.10.3",
68
+ "sphinx-autodoc-typehints==3.1.0",
68
69
  "sphinx-copybutton==0.5.2",
69
- "sphinx-gallery==0.17.1",
70
- "sphinx-notfound-page==1.0.4",
70
+ "sphinx-gallery==0.19.0",
71
+ "sphinx-notfound-page==1.1.0",
71
72
  "sphinxcontrib-websupport==2.0.0",
72
73
  "sphinxemoji==0.3.1",
73
74
 
74
75
  # pyansys dependencies for sphinx gallery examples
75
- "ansys-fluent-core==0.26.0",
76
- "ansys-dpf-core==0.13.0",
77
- "ansys-mapdl-core==0.68.4",
76
+ "ansys-fluent-core==0.29.0",
77
+ "ansys-mapdl-core==0.69.3",
78
78
  ]
79
79
  style = [
80
80
  # NB: ensure these remain synced with .pre-commit-config.yaml
81
- "codespell==2.3.0",
82
- "flake8==7.1.1",
81
+ "codespell==2.4.1",
82
+ "flake8==7.1.2",
83
83
  ]
84
84
  tests = [
85
85
  "pytest",
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -72,7 +72,7 @@ def launch(
72
72
  (The forms ``"24.1"`` and ``"24_1"`` are also acceptable.)
73
73
  The version will be sought in the standard installation location. The
74
74
  default is ``None``, which is equivalent to specifying
75
- ``"242"`` ("2024 R2" release), unless either of the environment
75
+ ``"251"`` ("2025 R1" release), unless either of the environment
76
76
  variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. It is considered
77
77
  to be an error if either these is set *and* ``version`` is provided.
78
78
  start_output: bool, optional
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
1
+ # Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
2
2
  # SPDX-License-Identifier: MIT
3
3
  #
4
4
  #
@@ -0,0 +1,25 @@
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 .instancing_child import instancing_child
8
+
9
+
10
+ class instancing(NamedContainer[instancing_child]):
11
+ """
12
+ Define instancing for an interface side.
13
+
14
+ Available when cylindrical geometry instancing has been added to
15
+ the data model.
16
+
17
+ ``RotationAxis`` controls how the axis of rotation is defined.
18
+ """
19
+
20
+ syc_name = "Instancing"
21
+
22
+ child_object_type: instancing_child = instancing_child
23
+ """
24
+ child_object_type of instancing.
25
+ """
@@ -0,0 +1,114 @@
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 instancing_child(Container):
9
+ """
10
+ Define instancing for an interface side.
11
+
12
+ Available when cylindrical geometry instancing has been added to
13
+ the data model.
14
+
15
+ ``RotationAxis`` controls how the axis of rotation is defined.
16
+ """
17
+
18
+ syc_name = "child_object_type"
19
+
20
+ property_names_types = [
21
+ ("rotation_axis", "RotationAxis", "str"),
22
+ ("instances_in_full_circle", "InstancesInFullCircle", "int"),
23
+ ("instances_for_mapping", "InstancesForMapping", "int"),
24
+ ("reference_frame", "ReferenceFrame", "str"),
25
+ ("axis", "Axis", "str"),
26
+ ("axis_from", "AxisFrom", "RealVectorType"),
27
+ ("axis_to", "AxisTo", "RealVectorType"),
28
+ ("rotational_offset", "RotationalOffset", "RealType"),
29
+ ]
30
+
31
+ @property
32
+ def rotation_axis(self) -> str:
33
+ """UNDOCUMENTED"""
34
+ return self.get_property_state("rotation_axis")
35
+
36
+ @rotation_axis.setter
37
+ def rotation_axis(self, value: str):
38
+ self.set_property_state("rotation_axis", value)
39
+
40
+ @property
41
+ def instances_in_full_circle(self) -> int:
42
+ """Total number of instances (including the first instance) in
43
+ a full 360 degree rotation of the participant mesh. This value
44
+ includes the reference instance (with the participant mesh).
45
+ All instances defined for the instancing object have identical
46
+ angles."""
47
+ return self.get_property_state("instances_in_full_circle")
48
+
49
+ @instances_in_full_circle.setter
50
+ def instances_in_full_circle(self, value: int):
51
+ self.set_property_state("instances_in_full_circle", value)
52
+
53
+ @property
54
+ def instances_for_mapping(self) -> int:
55
+ """Number of instances to be included in the mapping when instancing
56
+ is applied.
57
+
58
+ Required when the number of instances to be used for mapping does
59
+ not match the number of instances in a full circle. Default
60
+ assumes a 360 degree rotation of the participant mesh. This value
61
+ includes the reference instance (with the participant mesh)."""
62
+ return self.get_property_state("instances_for_mapping")
63
+
64
+ @instances_for_mapping.setter
65
+ def instances_for_mapping(self, value: int):
66
+ self.set_property_state("instances_for_mapping", value)
67
+
68
+ @property
69
+ def reference_frame(self) -> str:
70
+ """Reference frame that defines the orientation of the instancing.
71
+
72
+ Rotation will be around the z-axis of the reference frame,
73
+ following the right-hand rule."""
74
+ return self.get_property_state("reference_frame")
75
+
76
+ @reference_frame.setter
77
+ def reference_frame(self, value: str):
78
+ self.set_property_state("reference_frame", value)
79
+
80
+ @property
81
+ def axis(self) -> str:
82
+ """Principal axis of rotation for instancing"""
83
+ return self.get_property_state("axis")
84
+
85
+ @axis.setter
86
+ def axis(self, value: str):
87
+ self.set_property_state("axis", value)
88
+
89
+ @property
90
+ def axis_from(self) -> RealVectorType:
91
+ """Define the starting point of a user-defined axis."""
92
+ return self.get_property_state("axis_from")
93
+
94
+ @axis_from.setter
95
+ def axis_from(self, value: RealVectorType):
96
+ self.set_property_state("axis_from", value)
97
+
98
+ @property
99
+ def axis_to(self) -> RealVectorType:
100
+ """Define the end point of a user-defined axis."""
101
+ return self.get_property_state("axis_to")
102
+
103
+ @axis_to.setter
104
+ def axis_to(self, value: RealVectorType):
105
+ self.set_property_state("axis_to", value)
106
+
107
+ @property
108
+ def rotational_offset(self) -> RealType:
109
+ """Offset (in radians) about the rotation axis for the first instance"""
110
+ return self.get_property_state("rotational_offset")
111
+
112
+ @rotational_offset.setter
113
+ def rotational_offset(self, value: RealType):
114
+ self.set_property_state("rotational_offset", value)
@@ -0,0 +1,259 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class mapping_control(Container):
9
+ """
10
+ Configure controls for mapping.
11
+ """
12
+
13
+ syc_name = "MappingControl"
14
+
15
+ property_names_types = [
16
+ ("stop_if_poor_intersection", "StopIfPoorIntersection", "bool"),
17
+ ("poor_intersection_threshold", "PoorIntersectionThreshold", "RealType"),
18
+ ("face_alignment", "FaceAlignment", "str"),
19
+ ("absolute_gap_tolerance", "AbsoluteGapTolerance", "RealType"),
20
+ ("relative_gap_tolerance", "RelativeGapTolerance", "RealType"),
21
+ ("small_weight_tolerance", "SmallWeightTolerance", "RealType"),
22
+ ("corner_tolerance", "CornerTolerance", "RealType"),
23
+ ("halo_tolerance", "HaloTolerance", "RealType"),
24
+ (
25
+ "conservative_reciprocity_factor",
26
+ "ConservativeReciprocityFactor",
27
+ "RealType",
28
+ ),
29
+ (
30
+ "profile_preserving_reciprocity_factor",
31
+ "ProfilePreservingReciprocityFactor",
32
+ "RealType",
33
+ ),
34
+ ("conservative_intensive", "ConservativeIntensive", "str"),
35
+ ("preserve_normal", "PreserveNormal", "str"),
36
+ (
37
+ "conservation_fix_tolerance_volume",
38
+ "ConservationFixToleranceVolume",
39
+ "RealType",
40
+ ),
41
+ ("rbf_option", "RBFOption", "str"),
42
+ ("rbf_shape_parameter", "RBFShapeParameter", "RealType"),
43
+ ("rbf_linear_correction", "RBFLinearCorrection", "bool"),
44
+ ("rbf_clipping_scale", "RBFClippingScale", "RealType"),
45
+ ("rbf_taper_init_factor", "RBFTaperInitFactor", "RealType"),
46
+ ("rbf_max_extrapolation_factor", "RBFMaxExtrapolationFactor", "RealType"),
47
+ ("clipping", "Clipping", "bool"),
48
+ ]
49
+
50
+ @property
51
+ def stop_if_poor_intersection(self) -> bool:
52
+ """Controls whether to stop if the intersection is poor"""
53
+ return self.get_property_state("stop_if_poor_intersection")
54
+
55
+ @stop_if_poor_intersection.setter
56
+ def stop_if_poor_intersection(self, value: bool):
57
+ self.set_property_state("stop_if_poor_intersection", value)
58
+
59
+ @property
60
+ def poor_intersection_threshold(self) -> RealType:
61
+ """System Coupling terminates with an error if the intersected fractions are below this threshold (in both directions)"""
62
+ return self.get_property_state("poor_intersection_threshold")
63
+
64
+ @poor_intersection_threshold.setter
65
+ def poor_intersection_threshold(self, value: RealType):
66
+ self.set_property_state("poor_intersection_threshold", value)
67
+
68
+ @property
69
+ def face_alignment(self) -> str:
70
+ """Controls how face alignment is used during mapping.
71
+
72
+ Allowed values:
73
+
74
+ - \"ProgramControlled\" (default)
75
+ - \"OppositeOrientation\"
76
+ - \"SameOrientation\"
77
+ - \"AnyOrientation\" """
78
+ return self.get_property_state("face_alignment")
79
+
80
+ @face_alignment.setter
81
+ def face_alignment(self, value: str):
82
+ self.set_property_state("face_alignment", value)
83
+
84
+ @property
85
+ def absolute_gap_tolerance(self) -> RealType:
86
+ """Absolute gap tolerance value."""
87
+ return self.get_property_state("absolute_gap_tolerance")
88
+
89
+ @absolute_gap_tolerance.setter
90
+ def absolute_gap_tolerance(self, value: RealType):
91
+ self.set_property_state("absolute_gap_tolerance", value)
92
+
93
+ @property
94
+ def relative_gap_tolerance(self) -> RealType:
95
+ """Maximum gap size relative to face size."""
96
+ return self.get_property_state("relative_gap_tolerance")
97
+
98
+ @relative_gap_tolerance.setter
99
+ def relative_gap_tolerance(self, value: RealType):
100
+ self.set_property_state("relative_gap_tolerance", value)
101
+
102
+ @property
103
+ def small_weight_tolerance(self) -> RealType:
104
+ """Relative tolerance used to control when weights are dropped."""
105
+ return self.get_property_state("small_weight_tolerance")
106
+
107
+ @small_weight_tolerance.setter
108
+ def small_weight_tolerance(self, value: RealType):
109
+ self.set_property_state("small_weight_tolerance", value)
110
+
111
+ @property
112
+ def corner_tolerance(self) -> RealType:
113
+ """Angle [degrees] between adjacent source mesh faces above which the
114
+ mapping algorithm will stop searching for mapping candidates."""
115
+ return self.get_property_state("corner_tolerance")
116
+
117
+ @corner_tolerance.setter
118
+ def corner_tolerance(self, value: RealType):
119
+ self.set_property_state("corner_tolerance", value)
120
+
121
+ @property
122
+ def halo_tolerance(self) -> RealType:
123
+ """If a face intersects but a target node lies outside of the source face, then
124
+ map the node if the projected distance to the face / sqrt(srcArea) is less
125
+ than this tolerance, otherwise leave as unmapped."""
126
+ return self.get_property_state("halo_tolerance")
127
+
128
+ @halo_tolerance.setter
129
+ def halo_tolerance(self, value: RealType):
130
+ self.set_property_state("halo_tolerance", value)
131
+
132
+ @property
133
+ def conservative_reciprocity_factor(self) -> RealType:
134
+ """Reciprocity blend factor for conservative mapping."""
135
+ return self.get_property_state("conservative_reciprocity_factor")
136
+
137
+ @conservative_reciprocity_factor.setter
138
+ def conservative_reciprocity_factor(self, value: RealType):
139
+ self.set_property_state("conservative_reciprocity_factor", value)
140
+
141
+ @property
142
+ def profile_preserving_reciprocity_factor(self) -> RealType:
143
+ """Reciprocity blend factor for profile-preserving mapping."""
144
+ return self.get_property_state("profile_preserving_reciprocity_factor")
145
+
146
+ @profile_preserving_reciprocity_factor.setter
147
+ def profile_preserving_reciprocity_factor(self, value: RealType):
148
+ self.set_property_state("profile_preserving_reciprocity_factor", value)
149
+
150
+ @property
151
+ def conservative_intensive(self) -> str:
152
+ """Determines when the Intensive option is used for conservative mapping.
153
+
154
+ Allowed values:
155
+
156
+ - \"ProgramControlled\" (default)
157
+ - \"Off\"
158
+ - \"On\" """
159
+ return self.get_property_state("conservative_intensive")
160
+
161
+ @conservative_intensive.setter
162
+ def conservative_intensive(self, value: str):
163
+ self.set_property_state("conservative_intensive", value)
164
+
165
+ @property
166
+ def preserve_normal(self) -> str:
167
+ """Determines if the normal component of a vector is preserved.
168
+
169
+ Allowed values:
170
+
171
+ - \"ProgramControlled\" (default)
172
+ - \"Off\"
173
+ - \"On\" """
174
+ return self.get_property_state("preserve_normal")
175
+
176
+ @preserve_normal.setter
177
+ def preserve_normal(self, value: str):
178
+ self.set_property_state("preserve_normal", value)
179
+
180
+ @property
181
+ def conservation_fix_tolerance_volume(self) -> RealType:
182
+ """Source element overlap fraction to trigger volume mapping conservation fix.
183
+
184
+ 0.0 is default. 1.0 effectively disables it."""
185
+ return self.get_property_state("conservation_fix_tolerance_volume")
186
+
187
+ @conservation_fix_tolerance_volume.setter
188
+ def conservation_fix_tolerance_volume(self, value: RealType):
189
+ self.set_property_state("conservation_fix_tolerance_volume", value)
190
+
191
+ @property
192
+ def rbf_option(self) -> str:
193
+ """Controls radial basis function formulation.
194
+
195
+ Allowed values:
196
+
197
+ - \"Gaussian\" (default)
198
+ - \"ThinPlateSpline\" """
199
+ return self.get_property_state("rbf_option")
200
+
201
+ @rbf_option.setter
202
+ def rbf_option(self, value: str):
203
+ self.set_property_state("rbf_option", value)
204
+
205
+ @property
206
+ def rbf_shape_parameter(self) -> RealType:
207
+ """Sets the shape parameter beta when using Gaussian radial basis functions."""
208
+ return self.get_property_state("rbf_shape_parameter")
209
+
210
+ @rbf_shape_parameter.setter
211
+ def rbf_shape_parameter(self, value: RealType):
212
+ self.set_property_state("rbf_shape_parameter", value)
213
+
214
+ @property
215
+ def rbf_linear_correction(self) -> bool:
216
+ """Controls whether linear polynomial augmentation is added to the RBF stencil for
217
+ low order regular element types (tet, hex, pyramid, wedge)."""
218
+ return self.get_property_state("rbf_linear_correction")
219
+
220
+ @rbf_linear_correction.setter
221
+ def rbf_linear_correction(self, value: bool):
222
+ self.set_property_state("rbf_linear_correction", value)
223
+
224
+ @property
225
+ def rbf_clipping_scale(self) -> RealType:
226
+ """Length scale factor used to determine if source nodes are removed from RBF
227
+ stencil when too close."""
228
+ return self.get_property_state("rbf_clipping_scale")
229
+
230
+ @rbf_clipping_scale.setter
231
+ def rbf_clipping_scale(self, value: RealType):
232
+ self.set_property_state("rbf_clipping_scale", value)
233
+
234
+ @property
235
+ def rbf_taper_init_factor(self) -> RealType:
236
+ """Length scale factor at which to start tapering the extrapolative effect for profile-preserving mapping."""
237
+ return self.get_property_state("rbf_taper_init_factor")
238
+
239
+ @rbf_taper_init_factor.setter
240
+ def rbf_taper_init_factor(self, value: RealType):
241
+ self.set_property_state("rbf_taper_init_factor", value)
242
+
243
+ @property
244
+ def rbf_max_extrapolation_factor(self) -> RealType:
245
+ """Maximum factor allowed to extrapolate for profile-preserving mapping."""
246
+ return self.get_property_state("rbf_max_extrapolation_factor")
247
+
248
+ @rbf_max_extrapolation_factor.setter
249
+ def rbf_max_extrapolation_factor(self, value: RealType):
250
+ self.set_property_state("rbf_max_extrapolation_factor", value)
251
+
252
+ @property
253
+ def clipping(self) -> bool:
254
+ """Controls whether to clip target values to the min/max of the local source values for profile-preserving transfers."""
255
+ return self.get_property_state("clipping")
256
+
257
+ @clipping.setter
258
+ def clipping(self, value: bool):
259
+ self.set_property_state("clipping", value)
@@ -2,7 +2,7 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "6df721e79bf47d4600bcf0c989e98ae4f519fdb935ad1b104d4eb853d73a9ec6"
5
+ SHASH = "b2cdc470c64043e9f6c2aed2ca2c63cf2ada211ba396b1c9aa4ebadb357d3b91"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8