ansys-systemcoupling-core 0.3.1__tar.gz → 0.4.dev0__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 (339) hide show
  1. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/PKG-INFO +19 -18
  2. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/README.rst +3 -2
  3. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/pyproject.toml +16 -16
  4. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/__init__.py +23 -1
  5. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/_version.py +39 -0
  6. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_fsi_data_transfers.py +1 -12
  7. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_participant_child.py +1 -13
  8. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/execution_control.py +0 -20
  9. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/fluent_input.py +0 -10
  10. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/record_interactions.py +0 -10
  11. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/region_child.py +1 -0
  12. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/setup_root.py +1 -1
  13. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +22 -0
  14. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +59 -0
  15. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/injected_commands.py +29 -0
  16. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/root_source.py +22 -1
  17. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/static_info.py +22 -0
  18. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +22 -0
  19. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +73 -0
  20. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/types.py +23 -0
  21. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/grpc_client.py +22 -0
  22. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/command_query.py +48 -0
  23. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/output_stream.py +54 -0
  24. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/process.py +39 -0
  25. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/services/solution.py +22 -0
  26. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/syc_container.py +22 -0
  27. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/syc_process.py +22 -0
  28. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/variant.py +22 -0
  29. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/examples/__init__.py +23 -0
  30. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/examples/downloads.py +23 -0
  31. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/__init__.py +23 -0
  32. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/command_metadata.py +42 -0
  33. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/datamodel_metadata.py +22 -0
  34. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +33 -0
  35. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/native_api.py +22 -0
  36. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/object_path.py +22 -0
  37. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/participant/manager.py +22 -0
  38. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/participant/mapdl.py +298 -0
  39. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/participant/protocol.py +22 -0
  40. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/session.py +22 -0
  41. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/syc_version.py +22 -0
  42. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/logging.py +22 -0
  43. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/util/name_util.py +34 -0
  44. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/util/pathstr.py +49 -0
  45. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/state_keys.py +22 -0
  46. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/yaml_helper.py +22 -0
  47. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/_version.py +0 -17
  48. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +0 -35
  49. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +0 -51
  50. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/client/services/command_query.py +0 -26
  51. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/client/services/output_stream.py +0 -32
  52. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/client/services/process.py +0 -17
  53. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/examples/__init__.py +0 -1
  54. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/native_api/__init__.py +0 -1
  55. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/native_api/command_metadata.py +0 -19
  56. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +0 -10
  57. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/util/name_util.py +0 -12
  58. ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/util/pathstr.py +0 -27
  59. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/LICENSE +0 -0
  60. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/_add_participant.py +0 -0
  61. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/_solve.py +0 -0
  62. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/abort.py +0 -0
  63. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/activate_hidden.py +0 -0
  64. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_data_transfer.py +0 -0
  65. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_data_transfer_by_display_names.py +0 -0
  66. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_expression_function.py +0 -0
  67. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_interface.py +0 -0
  68. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_interface_by_display_names.py +0 -0
  69. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_named_expression.py +0 -0
  70. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_participant.py +0 -0
  71. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_reference_frame.py +0 -0
  72. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_transformation.py +0 -0
  73. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/analysis_control.py +0 -0
  74. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/apip.py +0 -0
  75. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/ascii_output.py +0 -0
  76. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/attribute.py +0 -0
  77. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/attribute_child.py +0 -0
  78. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/available_ports.py +0 -0
  79. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/avoid_data_reconstruction.py +0 -0
  80. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/case_root.py +0 -0
  81. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/clear_state.py +0 -0
  82. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_interface.py +0 -0
  83. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_interface_child.py +0 -0
  84. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_participant.py +0 -0
  85. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_participant_child.py +0 -0
  86. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/create_restart_point.py +0 -0
  87. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/data_transfer.py +0 -0
  88. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/data_transfer_child.py +0 -0
  89. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/delete_snapshot.py +0 -0
  90. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/delete_transformation.py +0 -0
  91. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/dimensionality.py +0 -0
  92. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/execution_control.py +0 -0
  93. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression.py +0 -0
  94. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression_child.py +0 -0
  95. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression_function.py +0 -0
  96. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression_function_child.py +0 -0
  97. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/external_data_file.py +0 -0
  98. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/fluent_input.py +0 -0
  99. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/fmu_parameter.py +0 -0
  100. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/fmu_parameter_child.py +0 -0
  101. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/generate_input_file.py +0 -0
  102. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_execution_command.py +0 -0
  103. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_machines.py +0 -0
  104. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_region_names_for_participant.py +0 -0
  105. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_setup_summary.py +0 -0
  106. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_snapshots.py +0 -0
  107. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_status_messages.py +0 -0
  108. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/global_stabilization.py +0 -0
  109. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/has_input_file_changed.py +0 -0
  110. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/import_system_coupling_input_file.py +0 -0
  111. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/initialize.py +0 -0
  112. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/instancing.py +0 -0
  113. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/instancing_child.py +0 -0
  114. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/interrupt.py +0 -0
  115. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/library.py +0 -0
  116. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/mapping_control.py +0 -0
  117. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/open.py +0 -0
  118. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/open_results_in_ensight.py +0 -0
  119. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/open_snapshot.py +0 -0
  120. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/output_control.py +0 -0
  121. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/partition_participants.py +0 -0
  122. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/reference_frame.py +0 -0
  123. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/reference_frame_child.py +0 -0
  124. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/region.py +0 -0
  125. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/region_child.py +0 -0
  126. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/reload_expression_function_modules.py +0 -0
  127. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/results.py +0 -0
  128. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/save.py +0 -0
  129. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/save_snapshot.py +0 -0
  130. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/setup_root.py +0 -0
  131. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/shutdown.py +0 -0
  132. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/side.py +0 -0
  133. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/side_child.py +0 -0
  134. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/solution_control.py +0 -0
  135. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/solution_root.py +0 -0
  136. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/solve.py +0 -0
  137. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/stabilization.py +0 -0
  138. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/start_participants.py +0 -0
  139. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/step.py +0 -0
  140. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/transformation.py +0 -0
  141. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/transformation_child.py +0 -0
  142. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/type.py +0 -0
  143. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/unmapped_value_options.py +0 -0
  144. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/update_control.py +0 -0
  145. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/update_participant.py +0 -0
  146. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/variable.py +0 -0
  147. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/variable_child.py +0 -0
  148. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/write_csv_chart_files.py +0 -0
  149. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/write_ensight.py +0 -0
  150. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/_add_participant.py +0 -0
  151. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/_solve.py +0 -0
  152. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/abort.py +0 -0
  153. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/activate_hidden.py +0 -0
  154. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_data_transfer.py +0 -0
  155. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_data_transfer_by_display_names.py +0 -0
  156. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_expression_function.py +0 -0
  157. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_interface.py +0 -0
  158. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_interface_by_display_names.py +0 -0
  159. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_named_expression.py +0 -0
  160. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_participant.py +0 -0
  161. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_reference_frame.py +0 -0
  162. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_transformation.py +0 -0
  163. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py +0 -0
  164. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/apip.py +0 -0
  165. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/ascii_output.py +0 -0
  166. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/attribute.py +0 -0
  167. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/attribute_child.py +0 -0
  168. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +0 -0
  169. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/available_ports.py +0 -0
  170. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py +0 -0
  171. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/case_root.py +0 -0
  172. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/clear_state.py +0 -0
  173. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/coupling_interface.py +0 -0
  174. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/coupling_interface_child.py +0 -0
  175. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/coupling_participant.py +0 -0
  176. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py +0 -0
  177. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/create_restart_point.py +0 -0
  178. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/data_transfer.py +0 -0
  179. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/data_transfer_child.py +0 -0
  180. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/delete_snapshot.py +0 -0
  181. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/delete_transformation.py +0 -0
  182. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/dimensionality.py +0 -0
  183. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/execution_control.py +0 -0
  184. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression.py +0 -0
  185. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression_child.py +0 -0
  186. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression_function.py +0 -0
  187. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression_function_child.py +0 -0
  188. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/external_data_file.py +0 -0
  189. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/fluent_input.py +0 -0
  190. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/fmu_parameter.py +0 -0
  191. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py +0 -0
  192. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/generate_input_file.py +0 -0
  193. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_execution_command.py +0 -0
  194. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_machines.py +0 -0
  195. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_region_names_for_participant.py +0 -0
  196. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_setup_summary.py +0 -0
  197. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_snapshots.py +0 -0
  198. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_status_messages.py +0 -0
  199. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +0 -0
  200. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/global_stabilization.py +0 -0
  201. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/has_input_file_changed.py +0 -0
  202. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/import_system_coupling_input_file.py +0 -0
  203. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/initialize.py +0 -0
  204. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/instancing.py +0 -0
  205. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/instancing_child.py +0 -0
  206. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/interrupt.py +0 -0
  207. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/library.py +0 -0
  208. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +0 -0
  209. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +0 -0
  210. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/mapping_control.py +0 -0
  211. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/open.py +0 -0
  212. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +0 -0
  213. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/open_snapshot.py +0 -0
  214. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/output_control.py +0 -0
  215. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/partition_participants.py +0 -0
  216. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/reference_frame.py +0 -0
  217. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/reference_frame_child.py +0 -0
  218. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/region.py +0 -0
  219. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/region_child.py +0 -0
  220. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/reload_expression_function_modules.py +0 -0
  221. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/results.py +0 -0
  222. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/save.py +0 -0
  223. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/save_snapshot.py +0 -0
  224. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py +0 -0
  225. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/shutdown.py +0 -0
  226. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/side.py +0 -0
  227. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/side_child.py +0 -0
  228. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/solution_control.py +0 -0
  229. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +0 -0
  230. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/solve.py +0 -0
  231. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/stabilization.py +0 -0
  232. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/start_participants.py +0 -0
  233. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/step.py +0 -0
  234. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/transformation.py +0 -0
  235. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/transformation_child.py +0 -0
  236. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/type.py +0 -0
  237. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/unmapped_value_options.py +0 -0
  238. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/update_control.py +0 -0
  239. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/update_participant.py +0 -0
  240. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/variable.py +0 -0
  241. {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py +0 -0
  242. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/write_csv_chart_files.py +0 -0
  243. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/write_ensight.py +0 -0
  244. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/_add_participant.py +0 -0
  245. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/_solve.py +0 -0
  246. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/abort.py +0 -0
  247. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/activate_hidden.py +0 -0
  248. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_aerodamping_data_transfers.py +0 -0
  249. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_data_transfer.py +0 -0
  250. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_data_transfer_by_display_names.py +0 -0
  251. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_expression_function.py +0 -0
  252. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_interface.py +0 -0
  253. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_interface_by_display_names.py +0 -0
  254. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_named_expression.py +0 -0
  255. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_ordered_data_transfers.py +0 -0
  256. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_participant.py +0 -0
  257. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_reference_frame.py +0 -0
  258. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_thermal_data_transfers.py +0 -0
  259. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_transformation.py +0 -0
  260. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/analysis_control.py +0 -0
  261. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/apip.py +0 -0
  262. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/ascii_output.py +0 -0
  263. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/attribute.py +0 -0
  264. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/attribute_child.py +0 -0
  265. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/automatic_alignment_options.py +0 -0
  266. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/available_ports.py +0 -0
  267. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/avoid_data_reconstruction.py +0 -0
  268. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/case_root.py +0 -0
  269. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/clear_state.py +0 -0
  270. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_interface.py +0 -0
  271. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_interface_child.py +0 -0
  272. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_participant.py +0 -0
  273. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/create_restart_point.py +0 -0
  274. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/data_transfer.py +0 -0
  275. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/data_transfer_child.py +0 -0
  276. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/delete_snapshot.py +0 -0
  277. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/delete_transformation.py +0 -0
  278. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/dimensionality.py +0 -0
  279. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression.py +0 -0
  280. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression_child.py +0 -0
  281. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression_function.py +0 -0
  282. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression_function_child.py +0 -0
  283. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/external_data_file.py +0 -0
  284. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/fmu_parameter.py +0 -0
  285. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/fmu_parameter_child.py +0 -0
  286. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/generate_input_file.py +0 -0
  287. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_add_data_transfer_group_commands.py +0 -0
  288. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_execution_command.py +0 -0
  289. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_machines.py +0 -0
  290. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_mode_shape_variables.py +0 -0
  291. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_region_names_for_participant.py +0 -0
  292. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_setup_summary.py +0 -0
  293. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_status_messages.py +0 -0
  294. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_thermal_data_transfer_options.py +0 -0
  295. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_transformation.py +0 -0
  296. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/global_stabilization.py +0 -0
  297. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/has_input_file_changed.py +0 -0
  298. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/import_system_coupling_input_file.py +0 -0
  299. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/initialize.py +0 -0
  300. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/instancing.py +0 -0
  301. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/instancing_child.py +0 -0
  302. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/interrupt.py +0 -0
  303. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/library.py +0 -0
  304. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/live_visualization.py +0 -0
  305. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/live_visualization_child.py +0 -0
  306. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/mapping_control.py +0 -0
  307. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/open.py +0 -0
  308. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/open_results_in_ensight.py +0 -0
  309. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/open_snapshot.py +0 -0
  310. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/output_control.py +0 -0
  311. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/parameter.py +0 -0
  312. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/parameter_child.py +0 -0
  313. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/partition_participants.py +0 -0
  314. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/reference_frame.py +0 -0
  315. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/reference_frame_child.py +0 -0
  316. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/region.py +0 -0
  317. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/reload_expression_function_modules.py +0 -0
  318. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/results.py +0 -0
  319. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/save.py +0 -0
  320. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/save_snapshot.py +0 -0
  321. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/shutdown.py +0 -0
  322. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/side.py +0 -0
  323. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/side_child.py +0 -0
  324. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/solution_control.py +0 -0
  325. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/solution_root.py +0 -0
  326. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/solve.py +0 -0
  327. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/stabilization.py +0 -0
  328. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/start_participants.py +0 -0
  329. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/step.py +0 -0
  330. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/transformation.py +0 -0
  331. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/transformation_child.py +0 -0
  332. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/type.py +0 -0
  333. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/unmapped_value_options.py +0 -0
  334. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/update_control.py +0 -0
  335. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/update_participant.py +0 -0
  336. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/variable.py +0 -0
  337. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/variable_child.py +0 -0
  338. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/write_csv_chart_files.py +0 -0
  339. {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/write_ensight.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansys-systemcoupling-core
3
- Version: 0.3.1
3
+ Version: 0.4.dev0
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>
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.9
19
19
  Classifier: Programming Language :: Python :: 3.10
20
20
  Requires-Dist: ansys-api-systemcoupling==0.1.0
21
21
  Requires-Dist: grpcio>=1.30.0
22
- Requires-Dist: grpcio-status>=1.30.0,<1.58.1
22
+ Requires-Dist: grpcio-status>=1.30.0,<1.60.2
23
23
  Requires-Dist: googleapis-common-protos>=1.50.0
24
24
  Requires-Dist: protobuf>=3.20.1,<4.0.0
25
25
  Requires-Dist: psutil>=5.7.0
@@ -27,26 +27,26 @@ Requires-Dist: pyyaml
27
27
  Requires-Dist: appdirs>=1.4.0
28
28
  Requires-Dist: importlib-metadata>=4.0
29
29
  Requires-Dist: build ; extra == "build"
30
- Requires-Dist: black==23.7.0 ; extra == "classesgen"
31
- Requires-Dist: isort==5.12.0 ; extra == "classesgen"
32
- Requires-Dist: ansys-sphinx-theme==0.11.2 ; extra == "doc"
33
- Requires-Dist: jupyter_sphinx==0.4.0 ; extra == "doc"
30
+ Requires-Dist: black==24.1.1 ; extra == "classesgen"
31
+ Requires-Dist: isort==5.13.2 ; extra == "classesgen"
32
+ Requires-Dist: ansys-sphinx-theme==0.13.3 ; extra == "doc"
33
+ Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
34
34
  Requires-Dist: matplotlib ; extra == "doc"
35
- Requires-Dist: numpydoc==1.5.0 ; extra == "doc"
36
- Requires-Dist: pypandoc==1.11 ; extra == "doc"
37
- Requires-Dist: pytest-sphinx==0.5.0 ; extra == "doc"
35
+ Requires-Dist: numpydoc==1.6.0 ; extra == "doc"
36
+ Requires-Dist: pypandoc==1.12 ; extra == "doc"
37
+ Requires-Dist: pytest-sphinx==0.6.0 ; extra == "doc"
38
38
  Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
39
- Requires-Dist: sphinx-autobuild==2021.3.14 ; extra == "doc"
40
- Requires-Dist: sphinx-autodoc-typehints==1.24.0 ; extra == "doc"
39
+ Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc"
40
+ Requires-Dist: sphinx-autodoc-typehints==1.25.2 ; extra == "doc"
41
41
  Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
42
- Requires-Dist: sphinx-gallery==0.14.0 ; extra == "doc"
42
+ Requires-Dist: sphinx-gallery==0.15.0 ; extra == "doc"
43
43
  Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
44
- Requires-Dist: sphinxcontrib-websupport==1.2.6 ; extra == "doc"
45
- Requires-Dist: sphinxemoji==0.2.0 ; extra == "doc"
44
+ Requires-Dist: sphinxcontrib-websupport==1.2.7 ; extra == "doc"
45
+ Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
46
46
  Requires-Dist: ansys-fluent-core ; extra == "doc"
47
47
  Requires-Dist: ansys-dpf-core ; extra == "doc"
48
- Requires-Dist: codespell==2.2.5 ; extra == "style"
49
- Requires-Dist: flake8==6.1.0 ; extra == "style"
48
+ Requires-Dist: codespell==2.2.6 ; extra == "style"
49
+ Requires-Dist: flake8==7.0.0 ; extra == "style"
50
50
  Requires-Dist: pytest ; extra == "tests"
51
51
  Requires-Dist: pytest-cov ; extra == "tests"
52
52
  Requires-Dist: psutil>=5.7.0 ; extra == "tests"
@@ -135,12 +135,12 @@ in this order:
135
135
 
136
136
  * ``SYSC_ROOT``
137
137
  * ``AWP_ROOT``
138
- * ``AWP_ROOT232``
138
+ * ``AWP_ROOT241``
139
139
 
140
140
  If a variable is set but does not refer to a valid installation, PySystemCoupling
141
141
  fails at that point, rather than attempting to use the next variable.
142
142
 
143
- In a standard user installation, the expectation is that only ``AWP_ROOT232`` is set.
143
+ In a standard user installation, the expectation is that only ``AWP_ROOT241`` is set.
144
144
 
145
145
  (It is also possible to provide a different version number as an argument to the ``launch()``
146
146
  function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
@@ -157,6 +157,7 @@ However, if you are transitioning existing scripts, the native System Coupling A
157
157
  as a convenience.
158
158
 
159
159
  .. note::
160
+
160
161
  While most commands should work as expected via the native System Coupling API,
161
162
  no guarantees can be given because of the nature of how it is exposed.
162
163
 
@@ -73,12 +73,12 @@ in this order:
73
73
 
74
74
  * ``SYSC_ROOT``
75
75
  * ``AWP_ROOT``
76
- * ``AWP_ROOT232``
76
+ * ``AWP_ROOT241``
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_ROOT232`` is set.
81
+ In a standard user installation, the expectation is that only ``AWP_ROOT241`` 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.)
@@ -95,6 +95,7 @@ However, if you are transitioning existing scripts, the native System Coupling A
95
95
  as a convenience.
96
96
 
97
97
  .. note::
98
+
98
99
  While most commands should work as expected via the native System Coupling API,
99
100
  no guarantees can be given because of the nature of how it is exposed.
100
101
 
@@ -5,7 +5,7 @@ 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.3.1"
8
+ version = "0.4.dev0"
9
9
  description = "A Python wrapper for Ansys System Coupling."
10
10
  readme = "README.rst"
11
11
  requires-python = ">=3.7"
@@ -19,7 +19,7 @@ maintainers = [
19
19
  dependencies = [
20
20
  "ansys-api-systemcoupling==0.1.0",
21
21
  "grpcio>=1.30.0",
22
- "grpcio-status>=1.30.0,<1.58.1",
22
+ "grpcio-status>=1.30.0,<1.60.2",
23
23
  "googleapis-common-protos>=1.50.0",
24
24
  "protobuf>=3.20.1,<4.0.0",
25
25
  "psutil>=5.7.0",
@@ -52,32 +52,32 @@ classesgen = [
52
52
  # black and isort are called programmatically to keep generated code
53
53
  # consistent with style elsewhere. We need to keep the versions in
54
54
  # sync with the precommit dependencies.
55
- "black==23.7.0",
56
- "isort==5.12.0",
55
+ "black==24.1.1",
56
+ "isort==5.13.2",
57
57
  ]
58
58
  doc = [
59
- "ansys-sphinx-theme==0.11.2",
60
- "jupyter_sphinx==0.4.0",
59
+ "ansys-sphinx-theme==0.13.3",
60
+ "jupyter_sphinx==0.5.3",
61
61
  "matplotlib",
62
- "numpydoc==1.5.0",
63
- "pypandoc==1.11",
64
- "pytest-sphinx==0.5.0",
62
+ "numpydoc==1.6.0",
63
+ "pypandoc==1.12",
64
+ "pytest-sphinx==0.6.0",
65
65
  "Sphinx==7.2.6",
66
- "sphinx-autobuild==2021.3.14",
67
- "sphinx-autodoc-typehints==1.24.0",
66
+ "sphinx-autobuild==2024.2.4",
67
+ "sphinx-autodoc-typehints==1.25.2",
68
68
  "sphinx-copybutton==0.5.2",
69
- "sphinx-gallery==0.14.0",
69
+ "sphinx-gallery==0.15.0",
70
70
  "sphinx-notfound-page==1.0.0",
71
- "sphinxcontrib-websupport==1.2.6",
72
- "sphinxemoji==0.2.0",
71
+ "sphinxcontrib-websupport==1.2.7",
72
+ "sphinxemoji==0.3.1",
73
73
 
74
74
  # pyansys dependencies for sphinx gallery examples
75
75
  "ansys-fluent-core",
76
76
  "ansys-dpf-core",
77
77
  ]
78
78
  style = [
79
- "codespell==2.2.5",
80
- "flake8==6.1.0",
79
+ "codespell==2.2.6",
80
+ "flake8==7.0.0",
81
81
  ]
82
82
  tests = [
83
83
  "pytest",
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  import os
2
24
  from typing import List
3
25
 
@@ -47,7 +69,7 @@ def launch(
47
69
  (The forms ``"23.1"`` and ``"23_1"`` are also acceptable.)
48
70
  The version will be sought in the standard installation location. The
49
71
  default is ``None``, which is equivalent to specifying
50
- ``"232"`` ("2023 R2" release), unless either of the environment
72
+ ``"241"`` ("2024 R1" release), unless either of the environment
51
73
  variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. It is considered
52
74
  to be an error if either these is set *and* ``version`` is provided.
53
75
  extra_args : List[str]
@@ -0,0 +1,39 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
23
+ """Version of ansys-systemcoupling-core library.
24
+
25
+ On the ``main`` branch, use 'dev0' to denote a development version.
26
+ For example:
27
+
28
+ version_info = 0, 1, 'dev0'
29
+
30
+ """
31
+
32
+ try:
33
+ import importlib.metadata as importlib_metadata
34
+ except ModuleNotFoundError: # pragma: no cover
35
+ import importlib_metadata
36
+
37
+ # Read from the pyproject.toml
38
+ # major, minor, patch
39
+ __version__ = importlib_metadata.version("ansys.systemcoupling.core")
@@ -16,15 +16,12 @@ class add_fsi_data_transfers(Command):
16
16
  interface : str
17
17
  String indicating the name of the interface on which the data transfer
18
18
  is to be created.
19
- use_force_density : bool, optional
20
- Boolean indicating whether to prefer force density variable over force.
21
- Default value is False.
22
19
 
23
20
  """
24
21
 
25
22
  syc_name = "AddFSIDataTransfers"
26
23
 
27
- argument_names = ["interface", "use_force_density"]
24
+ argument_names = ["interface"]
28
25
 
29
26
  class interface(String):
30
27
  """
@@ -33,11 +30,3 @@ class add_fsi_data_transfers(Command):
33
30
  """
34
31
 
35
32
  syc_name = "Interface"
36
-
37
- class use_force_density(Boolean):
38
- """
39
- Boolean indicating whether to prefer force density variable over force.
40
- Default value is False.
41
- """
42
-
43
- syc_name = "UseForceDensity"
@@ -85,7 +85,6 @@ class coupling_participant_child(Container):
85
85
  ("can_get_and_set_fmu_state", "CanGetAndSetFmuState", "bool"),
86
86
  ("free_fmu_state", "FreeFmuState", "bool"),
87
87
  ("instancing", "Instancing", "str"),
88
- ("accepts_new_inputs", "AcceptsNewInputs", "bool"),
89
88
  ]
90
89
 
91
90
  @property
@@ -104,9 +103,7 @@ class coupling_participant_child(Container):
104
103
  - \"DEFAULT-SRV\"
105
104
  - \"MECH-SRV\"
106
105
  - \"CFD-SRV\"
107
- - \"SCDT-SRV\"
108
- - \"THERMAL-DESKTOP\"
109
- - \"LS-DYNA\" """
106
+ - \"SCDT-SRV\" """
110
107
  return self.get_property_state("participant_type")
111
108
 
112
109
  @participant_type.setter
@@ -257,12 +254,3 @@ class coupling_participant_child(Container):
257
254
  @instancing.setter
258
255
  def instancing(self, value: str):
259
256
  self.set_property_state("instancing", value)
260
-
261
- @property
262
- def accepts_new_inputs(self) -> bool:
263
- """Controls whether participant accept new input variables or parameters."""
264
- return self.get_property_state("accepts_new_inputs")
265
-
266
- @accepts_new_inputs.setter
267
- def accepts_new_inputs(self, value: bool):
268
- self.set_property_state("accepts_new_inputs", value)
@@ -25,8 +25,6 @@ class execution_control(Container):
25
25
  ("working_directory", "WorkingDirectory", "str"),
26
26
  ("executable", "Executable", "str"),
27
27
  ("auto_distribution_settings", "AutoDistributionSettings", "bool"),
28
- ("use_ls_dyna_custom_executable", "UseLsDynaCustomExecutable", "bool"),
29
- ("ls_dyna_custom_executable", "LsDynaCustomExecutable", "str"),
30
28
  (
31
29
  "include_hpc_distribution_types",
32
30
  "IncludeHPCDistributionTypes",
@@ -89,24 +87,6 @@ class execution_control(Container):
89
87
  def auto_distribution_settings(self, value: bool):
90
88
  self.set_property_state("auto_distribution_settings", value)
91
89
 
92
- @property
93
- def use_ls_dyna_custom_executable(self) -> bool:
94
- """Specify whether to use custom executable for LS-DYNA."""
95
- return self.get_property_state("use_ls_dyna_custom_executable")
96
-
97
- @use_ls_dyna_custom_executable.setter
98
- def use_ls_dyna_custom_executable(self, value: bool):
99
- self.set_property_state("use_ls_dyna_custom_executable", value)
100
-
101
- @property
102
- def ls_dyna_custom_executable(self) -> str:
103
- """Path to LS-DYNA executable."""
104
- return self.get_property_state("ls_dyna_custom_executable")
105
-
106
- @ls_dyna_custom_executable.setter
107
- def ls_dyna_custom_executable(self, value: str):
108
- self.set_property_state("ls_dyna_custom_executable", value)
109
-
110
90
  @property
111
91
  def include_hpc_distribution_types(self) -> StringListType:
112
92
  """Include HPC distribution types for the distributed AEDT runs."""
@@ -16,7 +16,6 @@ class fluent_input(Container):
16
16
  ("option", "Option", "str"),
17
17
  ("case_file", "CaseFile", "str"),
18
18
  ("data_file", "DataFile", "str"),
19
- ("enable_autosave", "EnableAutosave", "bool"),
20
19
  ("journal_file", "JournalFile", "str"),
21
20
  ]
22
21
 
@@ -58,15 +57,6 @@ class fluent_input(Container):
58
57
  def data_file(self, value: str):
59
58
  self.set_property_state("data_file", value)
60
59
 
61
- @property
62
- def enable_autosave(self) -> bool:
63
- """Set Fluent autosave frequency to System Coupling output control frequency to generate .flprj file."""
64
- return self.get_property_state("enable_autosave")
65
-
66
- @enable_autosave.setter
67
- def enable_autosave(self, value: bool):
68
- self.set_property_state("enable_autosave", value)
69
-
70
60
  @property
71
61
  def journal_file(self) -> str:
72
62
  """Set Fluent journal file."""
@@ -15,7 +15,6 @@ class record_interactions(Container):
15
15
  property_names_types = [
16
16
  ("record_setup", "RecordSetup", "bool"),
17
17
  ("record_solution", "RecordSolution", "bool"),
18
- ("record_precision", "RecordPrecision", "int"),
19
18
  ]
20
19
 
21
20
  @property
@@ -35,12 +34,3 @@ class record_interactions(Container):
35
34
  @record_solution.setter
36
35
  def record_solution(self, value: bool):
37
36
  self.set_property_state("record_solution", value)
38
-
39
- @property
40
- def record_precision(self) -> int:
41
- """Set the digital precision of solution variable,1 <= N <= 16.."""
42
- return self.get_property_state("record_precision")
43
-
44
- @record_precision.setter
45
- def record_precision(self, value: int):
46
- self.set_property_state("record_precision", value)
@@ -26,6 +26,7 @@ class region_child(Container):
26
26
 
27
27
  Allowed values:
28
28
 
29
+ - \"Undefined\" (FMU participants only)
29
30
  - \"Surface\"
30
31
  - \"Volume\" (3D participants only)"""
31
32
  return self.get_property_state("topology")
@@ -2,7 +2,7 @@
2
2
  # This is an auto-generated file. DO NOT EDIT!
3
3
  #
4
4
 
5
- SHASH = "98b88d4e6b13c3114a995ba993ef773d805d52bb704b356b6890661a50760070"
5
+ SHASH = "8e81ea84cd8d53f78719455f1af3cb4574a4ca5d37da4b5269211b224fff8259"
6
6
 
7
7
  from ansys.systemcoupling.core.adaptor.impl.types import *
8
8
 
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  """Local implementation of the System Coupling ``GetErrors`` command, to be injected
2
24
  into the ``setup`` hierarchy.
3
25
  """
@@ -0,0 +1,59 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
23
+ # This is the version we assume if no GetVersion query is available from
24
+ # the SyC server.
25
+ _FALLBACK_VERSION = "23.1"
26
+
27
+
28
+ def get_syc_version(api) -> str:
29
+ """Get the System Coupling version.
30
+
31
+ The version is returned in a string like ``"23.2"``.
32
+
33
+ System Coupling versions earlier than 23.2 (2023 R2) do not expose
34
+ the ``GetVersion`` query. Because the first version of the server
35
+ that PySystemCoupling is able to connect to is 23.1 (2023 R1), the
36
+ version is assumed to be 23.1 if no version query exists.
37
+
38
+ Parameters
39
+ ----------
40
+ api : NativeApi
41
+ Object providing access to the System Coupling *native API* .
42
+ """
43
+
44
+ def clean_version_string(version_in: str) -> str:
45
+ year, _, release = version_in.partition(" ")
46
+ if len(year) == 4 and year.startswith("20") and release.startswith("R"):
47
+ try:
48
+ year = int(year[2:])
49
+ release = int(release[1:])
50
+ return f"{year}.{release}"
51
+ except:
52
+ pass
53
+ raise RuntimeError(
54
+ f"Version string {version_in} has invalid format (expect '20yy Rn')."
55
+ )
56
+
57
+ cmds = api.GetCommandAndQueryMetadata()
58
+ exists = any(cmd["name"] == "GetVersion" for cmd in cmds)
59
+ return clean_version_string(api.GetVersion()) if exists else _FALLBACK_VERSION
@@ -1,7 +1,30 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  from copy import deepcopy
2
24
  from typing import Callable, Dict
3
25
 
4
26
  from ansys.systemcoupling.core.participant.manager import ParticipantManager
27
+ from ansys.systemcoupling.core.participant.mapdl import MapdlSystemCouplingInterface
5
28
  from ansys.systemcoupling.core.syc_version import compare_versions
6
29
  from ansys.systemcoupling.core.util.yaml_helper import yaml_load_from_string
7
30
 
@@ -61,6 +84,12 @@ def _wrap_add_participant(
61
84
  "support this form of 'add_participant'. Minimum version is '24.1'."
62
85
  )
63
86
 
87
+ # special handling for mapdl session
88
+ if "ansys.mapdl.core.mapdl_grpc.MapdlGrpc" in str(type(session)):
89
+ return part_mgr.add_participant(
90
+ participant_session=MapdlSystemCouplingInterface(session)
91
+ )
92
+
64
93
  if not hasattr(session, "system_coupling"):
65
94
  raise RuntimeError(
66
95
  "The 'participant_session' parameter does not provide a "
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  """Source of adaptor API "root" classes and related functionality.
2
24
 
3
25
  At runtime, the key function provided here is ``get_root``. This
@@ -21,7 +43,6 @@ pre-generated classes, runtime classes that are consistent with the System Coupl
21
43
  server are constructed and returned.
22
44
  """
23
45
 
24
-
25
46
  import hashlib
26
47
  import importlib
27
48
  import json
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  from copy import deepcopy
2
24
  from typing import Dict, List, Tuple
3
25
 
@@ -1,3 +1,25 @@
1
+ # Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
2
+ # SPDX-License-Identifier: MIT
3
+ #
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
1
23
  from ansys.systemcoupling.core.adaptor.impl.get_syc_version import get_syc_version
2
24
  from ansys.systemcoupling.core.adaptor.impl.static_info import (
3
25
  get_dm_metadata,