ansys-systemcoupling-core 0.3.0__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.0 → ansys_systemcoupling_core-0.4.dev0}/PKG-INFO +19 -18
  2. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/README.rst +3 -2
  3. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/pyproject.toml +16 -16
  4. {ansys_systemcoupling_core-0.3.0 → 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.0/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 -8
  7. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py +36 -0
  8. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py +173 -0
  9. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py +126 -0
  10. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1/output_control.py +129 -0
  11. {ansys_systemcoupling_core-0.3.0/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 +1 -1
  12. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +104 -0
  13. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py +201 -0
  14. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer_by_display_names.py +188 -0
  15. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface.py +75 -0
  16. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface_by_display_names.py +75 -0
  17. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/add_participant.py +160 -0
  18. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/has_input_file_changed.py +36 -0
  19. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/region_child.py +72 -0
  20. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py +91 -0
  21. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py +47 -0
  22. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2/update_participant.py +61 -0
  23. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py +70 -0
  24. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/_solve.py +13 -0
  25. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/abort.py +39 -0
  26. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py +46 -0
  27. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_aerodamping_data_transfers.py +43 -0
  28. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer.py +190 -0
  29. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_expression_function.py +61 -0
  30. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py +32 -0
  31. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_named_expression.py +42 -0
  32. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py +32 -0
  33. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py +40 -0
  34. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_thermal_data_transfers.py +43 -0
  35. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/add_transformation.py +102 -0
  36. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +283 -0
  37. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/apip.py +33 -0
  38. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py +44 -0
  39. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute.py +20 -0
  40. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py +54 -0
  41. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py +40 -0
  42. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +56 -0
  43. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +16 -0
  44. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py +20 -0
  45. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py +42 -0
  46. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py +23 -0
  47. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +26 -0
  48. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py +29 -0
  49. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py +20 -0
  50. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py +187 -0
  51. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py +28 -0
  52. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py +42 -0
  53. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py +96 -0
  54. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +196 -0
  55. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/expression.py +20 -0
  56. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py +36 -0
  57. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py +20 -0
  58. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py +46 -0
  59. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py +24 -0
  60. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py +67 -0
  61. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py +20 -0
  62. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py +41 -0
  63. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_add_data_transfer_group_commands.py +29 -0
  64. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py +30 -0
  65. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py +13 -0
  66. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_mode_shape_variables.py +29 -0
  67. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py +31 -0
  68. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py +25 -0
  69. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py +52 -0
  70. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/get_thermal_data_transfer_options.py +32 -0
  71. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py +143 -0
  72. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py +36 -0
  73. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/initialize.py +27 -0
  74. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing.py +23 -0
  75. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py +62 -0
  76. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py +39 -0
  77. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/library.py +37 -0
  78. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +239 -0
  79. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/open.py +102 -0
  80. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_en_sight.py → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +1 -1
  81. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py +37 -0
  82. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py +0 -8
  83. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py +138 -0
  84. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/record_interactions.py +36 -0
  85. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py +20 -0
  86. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py +71 -0
  87. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/region.py +20 -0
  88. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py +14 -0
  89. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/results.py +89 -0
  90. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/save.py +51 -0
  91. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py +54 -0
  92. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +243 -0
  93. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py +25 -0
  94. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/side.py +20 -0
  95. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/side_child.py +56 -0
  96. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +12 -0
  97. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +5 -5
  98. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/solve.py +30 -0
  99. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py +157 -0
  100. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/step.py +57 -0
  101. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation.py +21 -0
  102. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py +62 -0
  103. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/type.py +38 -0
  104. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py +158 -0
  105. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/update_control.py +44 -0
  106. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/variable.py +20 -0
  107. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +1 -2
  108. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py +21 -0
  109. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py +46 -0
  110. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +22 -0
  111. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +59 -0
  112. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/injected_commands.py +29 -0
  113. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/root_source.py +22 -1
  114. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/static_info.py +22 -0
  115. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +22 -0
  116. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +73 -0
  117. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/types.py +23 -0
  118. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/grpc_client.py +22 -0
  119. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/command_query.py +48 -0
  120. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/output_stream.py +54 -0
  121. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/process.py +39 -0
  122. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/services/solution.py +22 -0
  123. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/syc_container.py +22 -0
  124. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/syc_process.py +22 -0
  125. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/variant.py +22 -0
  126. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/examples/__init__.py +23 -0
  127. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/examples/downloads.py +23 -0
  128. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/__init__.py +23 -0
  129. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/command_metadata.py +42 -0
  130. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/datamodel_metadata.py +22 -0
  131. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +33 -0
  132. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/native_api.py +22 -0
  133. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/object_path.py +22 -0
  134. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/participant/manager.py +22 -0
  135. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/participant/mapdl.py +298 -0
  136. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/participant/protocol.py +22 -0
  137. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/session.py +22 -0
  138. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/syc_version.py +22 -0
  139. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/logging.py +22 -0
  140. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/util/name_util.py +34 -0
  141. ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/util/pathstr.py +49 -0
  142. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/state_keys.py +22 -0
  143. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/yaml_helper.py +22 -0
  144. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/_version.py +0 -17
  145. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +0 -35
  146. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +0 -51
  147. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/client/services/command_query.py +0 -26
  148. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/client/services/output_stream.py +0 -32
  149. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/client/services/process.py +0 -17
  150. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/examples/__init__.py +0 -1
  151. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/native_api/__init__.py +0 -1
  152. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/native_api/command_metadata.py +0 -19
  153. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +0 -10
  154. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/util/name_util.py +0 -12
  155. ansys_systemcoupling_core-0.3.0/src/ansys/systemcoupling/core/util/pathstr.py +0 -27
  156. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/LICENSE +0 -0
  157. {ansys_systemcoupling_core-0.3.0/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
  158. {ansys_systemcoupling_core-0.3.0/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
  159. {ansys_systemcoupling_core-0.3.0/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
  160. {ansys_systemcoupling_core-0.3.0/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
  161. {ansys_systemcoupling_core-0.3.0/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
  162. {ansys_systemcoupling_core-0.3.0/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
  163. {ansys_systemcoupling_core-0.3.0/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
  164. {ansys_systemcoupling_core-0.3.0/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
  165. {ansys_systemcoupling_core-0.3.0/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
  166. {ansys_systemcoupling_core-0.3.0/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
  167. {ansys_systemcoupling_core-0.3.0/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
  168. {ansys_systemcoupling_core-0.3.0/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
  169. {ansys_systemcoupling_core-0.3.0/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
  170. {ansys_systemcoupling_core-0.3.0/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
  171. {ansys_systemcoupling_core-0.3.0/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
  172. {ansys_systemcoupling_core-0.3.0/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
  173. {ansys_systemcoupling_core-0.3.0/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
  174. {ansys_systemcoupling_core-0.3.0/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
  175. {ansys_systemcoupling_core-0.3.0/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
  176. {ansys_systemcoupling_core-0.3.0/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
  177. {ansys_systemcoupling_core-0.3.0/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
  178. {ansys_systemcoupling_core-0.3.0/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
  179. {ansys_systemcoupling_core-0.3.0/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
  180. {ansys_systemcoupling_core-0.3.0/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
  181. {ansys_systemcoupling_core-0.3.0/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
  182. {ansys_systemcoupling_core-0.3.0/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
  183. {ansys_systemcoupling_core-0.3.0/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
  184. {ansys_systemcoupling_core-0.3.0/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
  185. {ansys_systemcoupling_core-0.3.0/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
  186. {ansys_systemcoupling_core-0.3.0/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
  187. {ansys_systemcoupling_core-0.3.0/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
  188. {ansys_systemcoupling_core-0.3.0/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
  189. {ansys_systemcoupling_core-0.3.0/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
  190. {ansys_systemcoupling_core-0.3.0/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
  191. {ansys_systemcoupling_core-0.3.0/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
  192. {ansys_systemcoupling_core-0.3.0/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
  193. {ansys_systemcoupling_core-0.3.0/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
  194. {ansys_systemcoupling_core-0.3.0/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
  195. {ansys_systemcoupling_core-0.3.0/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
  196. {ansys_systemcoupling_core-0.3.0/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
  197. {ansys_systemcoupling_core-0.3.0/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
  198. {ansys_systemcoupling_core-0.3.0/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
  199. {ansys_systemcoupling_core-0.3.0/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
  200. {ansys_systemcoupling_core-0.3.0/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
  201. {ansys_systemcoupling_core-0.3.0/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
  202. {ansys_systemcoupling_core-0.3.0/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
  203. {ansys_systemcoupling_core-0.3.0/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
  204. {ansys_systemcoupling_core-0.3.0/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
  205. {ansys_systemcoupling_core-0.3.0/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
  206. {ansys_systemcoupling_core-0.3.0/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
  207. {ansys_systemcoupling_core-0.3.0/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
  208. {ansys_systemcoupling_core-0.3.0/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
  209. {ansys_systemcoupling_core-0.3.0/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
  210. {ansys_systemcoupling_core-0.3.0/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
  211. {ansys_systemcoupling_core-0.3.0/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
  212. {ansys_systemcoupling_core-0.3.0/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
  213. {ansys_systemcoupling_core-0.3.0/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
  214. {ansys_systemcoupling_core-0.3.0/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
  215. {ansys_systemcoupling_core-0.3.0/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
  216. {ansys_systemcoupling_core-0.3.0/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
  217. {ansys_systemcoupling_core-0.3.0/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
  218. {ansys_systemcoupling_core-0.3.0/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
  219. {ansys_systemcoupling_core-0.3.0/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
  220. {ansys_systemcoupling_core-0.3.0/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
  221. {ansys_systemcoupling_core-0.3.0/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
  222. {ansys_systemcoupling_core-0.3.0/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
  223. {ansys_systemcoupling_core-0.3.0/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
  224. {ansys_systemcoupling_core-0.3.0/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
  225. {ansys_systemcoupling_core-0.3.0/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
  226. {ansys_systemcoupling_core-0.3.0/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
  227. {ansys_systemcoupling_core-0.3.0/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
  228. {ansys_systemcoupling_core-0.3.0/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
  229. {ansys_systemcoupling_core-0.3.0/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
  230. {ansys_systemcoupling_core-0.3.0/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
  231. {ansys_systemcoupling_core-0.3.0/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
  232. {ansys_systemcoupling_core-0.3.0/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
  233. {ansys_systemcoupling_core-0.3.0/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
  234. {ansys_systemcoupling_core-0.3.0/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
  235. {ansys_systemcoupling_core-0.3.0/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
  236. {ansys_systemcoupling_core-0.3.0/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
  237. {ansys_systemcoupling_core-0.3.0/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
  238. {ansys_systemcoupling_core-0.3.0/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
  239. {ansys_systemcoupling_core-0.3.0/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
  240. {ansys_systemcoupling_core-0.3.0/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
  241. {ansys_systemcoupling_core-0.3.0/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
  242. {ansys_systemcoupling_core-0.3.0/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
  243. {ansys_systemcoupling_core-0.3.0/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
  244. {ansys_systemcoupling_core-0.3.0/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
  245. {ansys_systemcoupling_core-0.3.0/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
  246. {ansys_systemcoupling_core-0.3.0/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
  247. {ansys_systemcoupling_core-0.3.0/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
  248. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py +0 -0
  249. {ansys_systemcoupling_core-0.3.0/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
  250. {ansys_systemcoupling_core-0.3.0/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
  251. {ansys_systemcoupling_core-0.3.0/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
  252. {ansys_systemcoupling_core-0.3.0/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
  253. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +0 -0
  254. {ansys_systemcoupling_core-0.3.0/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
  255. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py +0 -0
  256. {ansys_systemcoupling_core-0.3.0/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
  257. {ansys_systemcoupling_core-0.3.0/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
  258. {ansys_systemcoupling_core-0.3.0/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
  259. {ansys_systemcoupling_core-0.3.0/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
  260. {ansys_systemcoupling_core-0.3.0/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
  261. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py +0 -0
  262. {ansys_systemcoupling_core-0.3.0/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
  263. {ansys_systemcoupling_core-0.3.0/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
  264. {ansys_systemcoupling_core-0.3.0/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
  265. {ansys_systemcoupling_core-0.3.0/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
  266. {ansys_systemcoupling_core-0.3.0/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
  267. {ansys_systemcoupling_core-0.3.0/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
  268. {ansys_systemcoupling_core-0.3.0/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
  269. {ansys_systemcoupling_core-0.3.0/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
  270. {ansys_systemcoupling_core-0.3.0/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
  271. {ansys_systemcoupling_core-0.3.0/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
  272. {ansys_systemcoupling_core-0.3.0/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
  273. {ansys_systemcoupling_core-0.3.0/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
  274. {ansys_systemcoupling_core-0.3.0/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
  275. {ansys_systemcoupling_core-0.3.0/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
  276. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py +0 -0
  277. {ansys_systemcoupling_core-0.3.0/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
  278. {ansys_systemcoupling_core-0.3.0/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
  279. {ansys_systemcoupling_core-0.3.0/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
  280. {ansys_systemcoupling_core-0.3.0/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
  281. {ansys_systemcoupling_core-0.3.0/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
  282. {ansys_systemcoupling_core-0.3.0/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
  283. {ansys_systemcoupling_core-0.3.0/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
  284. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +0 -0
  285. {ansys_systemcoupling_core-0.3.0/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
  286. {ansys_systemcoupling_core-0.3.0/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
  287. {ansys_systemcoupling_core-0.3.0/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
  288. {ansys_systemcoupling_core-0.3.0/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
  289. {ansys_systemcoupling_core-0.3.0/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
  290. {ansys_systemcoupling_core-0.3.0/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
  291. {ansys_systemcoupling_core-0.3.0/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
  292. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +0 -0
  293. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +0 -0
  294. {ansys_systemcoupling_core-0.3.0/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
  295. {ansys_systemcoupling_core-0.3.0/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
  296. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +0 -0
  297. {ansys_systemcoupling_core-0.3.0/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
  298. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/output_control.py +0 -0
  299. {ansys_systemcoupling_core-0.3.0/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
  300. {ansys_systemcoupling_core-0.3.0/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
  301. {ansys_systemcoupling_core-0.3.0/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
  302. {ansys_systemcoupling_core-0.3.0/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
  303. {ansys_systemcoupling_core-0.3.0/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
  304. {ansys_systemcoupling_core-0.3.0/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
  305. {ansys_systemcoupling_core-0.3.0/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
  306. {ansys_systemcoupling_core-0.3.0/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
  307. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py +0 -0
  308. {ansys_systemcoupling_core-0.3.0/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
  309. {ansys_systemcoupling_core-0.3.0/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
  310. {ansys_systemcoupling_core-0.3.0/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
  311. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +0 -0
  312. {ansys_systemcoupling_core-0.3.0/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
  313. {ansys_systemcoupling_core-0.3.0/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
  314. {ansys_systemcoupling_core-0.3.0/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
  315. {ansys_systemcoupling_core-0.3.0/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
  316. {ansys_systemcoupling_core-0.3.0/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
  317. {ansys_systemcoupling_core-0.3.0/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
  318. {ansys_systemcoupling_core-0.3.0/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
  319. {ansys_systemcoupling_core-0.3.0/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
  320. {ansys_systemcoupling_core-0.3.0/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
  321. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py +0 -0
  322. {ansys_systemcoupling_core-0.3.0/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
  323. {ansys_systemcoupling_core-0.3.0/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
  324. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +0 -0
  325. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +0 -0
  326. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +0 -0
  327. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +0 -0
  328. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py +0 -0
  329. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +0 -0
  330. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +0 -0
  331. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py +0 -0
  332. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +0 -0
  333. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py +0 -0
  334. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py +0 -0
  335. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +0 -0
  336. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter.py +0 -0
  337. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +0 -0
  338. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +0 -0
  339. {ansys_systemcoupling_core-0.3.0 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ansys-systemcoupling-core
3
- Version: 0.3.0
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.0"
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")
@@ -5,7 +5,6 @@
5
5
  from ansys.systemcoupling.core.adaptor.impl.types import *
6
6
 
7
7
  from .apip import apip
8
- from .automatic_alignment_options import automatic_alignment_options
9
8
  from .avoid_data_reconstruction import avoid_data_reconstruction
10
9
  from .global_stabilization import global_stabilization
11
10
  from .unmapped_value_options import unmapped_value_options
@@ -23,7 +22,6 @@ class analysis_control(Container):
23
22
  "apip",
24
23
  "avoid_data_reconstruction",
25
24
  "unmapped_value_options",
26
- "automatic_alignment_options",
27
25
  ]
28
26
 
29
27
  global_stabilization: global_stabilization = global_stabilization
@@ -42,12 +40,6 @@ class analysis_control(Container):
42
40
  """
43
41
  unmapped_value_options child of analysis_control.
44
42
  """
45
- automatic_alignment_options: automatic_alignment_options = (
46
- automatic_alignment_options
47
- )
48
- """
49
- automatic_alignment_options child of analysis_control.
50
- """
51
43
  property_names_types = [
52
44
  ("analysis_type", "AnalysisType", "str"),
53
45
  ("optimize_if_one_way", "OptimizeIfOneWay", "bool"),
@@ -0,0 +1,36 @@
1
+ #
2
+ # This is an auto-generated file. DO NOT EDIT!
3
+ #
4
+
5
+ from ansys.systemcoupling.core.adaptor.impl.types import *
6
+
7
+
8
+ class avoid_data_reconstruction(Container):
9
+ """
10
+ Control whether data reconstruction should be done for elemental intensive data.
11
+ """
12
+
13
+ syc_name = "AvoidDataReconstruction"
14
+
15
+ property_names_types = [
16
+ ("volume_mapping", "VolumeMapping", "bool"),
17
+ ("surface_mapping", "SurfaceMapping", "bool"),
18
+ ]
19
+
20
+ @property
21
+ def volume_mapping(self) -> bool:
22
+ """UNDOCUMENTED"""
23
+ return self.get_property_state("volume_mapping")
24
+
25
+ @volume_mapping.setter
26
+ def volume_mapping(self, value: bool):
27
+ self.set_property_state("volume_mapping", value)
28
+
29
+ @property
30
+ def surface_mapping(self) -> bool:
31
+ """UNDOCUMENTED"""
32
+ return self.get_property_state("surface_mapping")
33
+
34
+ @surface_mapping.setter
35
+ def surface_mapping(self, value: bool):
36
+ self.set_property_state("surface_mapping", value)
@@ -0,0 +1,173 @@
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 .execution_control import execution_control
8
+ from .external_data_file import external_data_file
9
+ from .fmu_parameter import fmu_parameter
10
+ from .region import region
11
+ from .update_control import update_control
12
+ from .variable import variable
13
+
14
+
15
+ class coupling_participant_child(Container):
16
+ """
17
+ Configure a coupling participant.
18
+
19
+ These settings are typically populated by using the ``add_participant``
20
+ command.
21
+ """
22
+
23
+ syc_name = "child_object_type"
24
+
25
+ child_names = [
26
+ "variable",
27
+ "region",
28
+ "update_control",
29
+ "fmu_parameter",
30
+ "execution_control",
31
+ "external_data_file",
32
+ ]
33
+
34
+ variable: variable = variable
35
+ """
36
+ variable child of coupling_participant_child.
37
+ """
38
+ region: region = region
39
+ """
40
+ region child of coupling_participant_child.
41
+ """
42
+ update_control: update_control = update_control
43
+ """
44
+ update_control child of coupling_participant_child.
45
+ """
46
+ fmu_parameter: fmu_parameter = fmu_parameter
47
+ """
48
+ fmu_parameter child of coupling_participant_child.
49
+ """
50
+ execution_control: execution_control = execution_control
51
+ """
52
+ execution_control child of coupling_participant_child.
53
+ """
54
+ external_data_file: external_data_file = external_data_file
55
+ """
56
+ external_data_file child of coupling_participant_child.
57
+ """
58
+ property_names_types = [
59
+ ("participant_type", "ParticipantType", "str"),
60
+ ("participant_display_name", "ParticipantDisplayName", "str"),
61
+ ("display_name", "DisplayName", "str"),
62
+ ("dimension", "Dimension", "str"),
63
+ ("participant_file_loaded", "ParticipantFileLoaded", "str"),
64
+ ("logging_on", "LoggingOn", "bool"),
65
+ ("participant_analysis_type", "ParticipantAnalysisType", "str"),
66
+ ("use_new_apis", "UseNewAPIs", "bool"),
67
+ ("restarts_supported", "RestartsSupported", "bool"),
68
+ ("instancing", "Instancing", "str"),
69
+ ]
70
+
71
+ @property
72
+ def participant_type(self) -> str:
73
+ """Coupling participant type.
74
+
75
+ Allowed values:
76
+ - \"DEFAULT\"
77
+ - \"CFX\"
78
+ - \"FLUENT\"
79
+ - \"MAPDL\"
80
+ - \"AEDT\"
81
+ - \"FMU\"
82
+ - \"EXTERNALDATA\"
83
+ - \"FORTE\"
84
+ - \"DEFAULT-SRV\"
85
+ - \"MECH-SRV\"
86
+ - \"CFD-SRV\" """
87
+ return self.get_property_state("participant_type")
88
+
89
+ @participant_type.setter
90
+ def participant_type(self, value: str):
91
+ self.set_property_state("participant_type", value)
92
+
93
+ @property
94
+ def participant_display_name(self) -> str:
95
+ """Participant's display name as defined by the participant solver (as
96
+ opposed to System Coupling's ``display_name`` for the participant)."""
97
+ return self.get_property_state("participant_display_name")
98
+
99
+ @participant_display_name.setter
100
+ def participant_display_name(self, value: str):
101
+ self.set_property_state("participant_display_name", value)
102
+
103
+ @property
104
+ def display_name(self) -> str:
105
+ """Participant's display name as defined in System Coupling."""
106
+ return self.get_property_state("display_name")
107
+
108
+ @display_name.setter
109
+ def display_name(self, value: str):
110
+ self.set_property_state("display_name", value)
111
+
112
+ @property
113
+ def dimension(self) -> str:
114
+ """Dimension of the participant (\"2D\" or \"3D\")."""
115
+ return self.get_property_state("dimension")
116
+
117
+ @dimension.setter
118
+ def dimension(self, value: str):
119
+ self.set_property_state("dimension", value)
120
+
121
+ @property
122
+ def participant_file_loaded(self) -> str:
123
+ """File used to generate the participant."""
124
+ return self.get_property_state("participant_file_loaded")
125
+
126
+ @participant_file_loaded.setter
127
+ def participant_file_loaded(self, value: str):
128
+ self.set_property_state("participant_file_loaded", value)
129
+
130
+ @property
131
+ def logging_on(self) -> bool:
132
+ """Specifies whether logging is activated for the participant."""
133
+ return self.get_property_state("logging_on")
134
+
135
+ @logging_on.setter
136
+ def logging_on(self, value: bool):
137
+ self.set_property_state("logging_on", value)
138
+
139
+ @property
140
+ def participant_analysis_type(self) -> str:
141
+ """Coupling participant analysis type (\"Steady\" or \"Transient\")."""
142
+ return self.get_property_state("participant_analysis_type")
143
+
144
+ @participant_analysis_type.setter
145
+ def participant_analysis_type(self, value: str):
146
+ self.set_property_state("participant_analysis_type", value)
147
+
148
+ @property
149
+ def use_new_apis(self) -> bool:
150
+ """Controls whether a Fluent or MAPDL participant should communicate using new APIs."""
151
+ return self.get_property_state("use_new_apis")
152
+
153
+ @use_new_apis.setter
154
+ def use_new_apis(self, value: bool):
155
+ self.set_property_state("use_new_apis", value)
156
+
157
+ @property
158
+ def restarts_supported(self) -> bool:
159
+ """Indicates whether the participant supports restarts."""
160
+ return self.get_property_state("restarts_supported")
161
+
162
+ @restarts_supported.setter
163
+ def restarts_supported(self, value: bool):
164
+ self.set_property_state("restarts_supported", value)
165
+
166
+ @property
167
+ def instancing(self) -> str:
168
+ """Set instancing on the participant."""
169
+ return self.get_property_state("instancing")
170
+
171
+ @instancing.setter
172
+ def instancing(self, value: str):
173
+ self.set_property_state("instancing", value)
@@ -0,0 +1,126 @@
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 fmu_parameter_child(Container):
9
+ """
10
+ Configure a parameter for an FMU coupling participant.
11
+ """
12
+
13
+ syc_name = "child_object_type"
14
+
15
+ property_names_types = [
16
+ ("data_type", "DataType", "str"),
17
+ ("participant_display_name", "ParticipantDisplayName", "str"),
18
+ ("display_name", "DisplayName", "str"),
19
+ ("real_value", "RealValue", "RealType"),
20
+ ("real_min", "RealMin", "RealType"),
21
+ ("real_max", "RealMax", "RealType"),
22
+ ("integer_value", "IntegerValue", "int"),
23
+ ("integer_min", "IntegerMin", "int"),
24
+ ("integer_max", "IntegerMax", "int"),
25
+ ("logical_value", "LogicalValue", "bool"),
26
+ ("string_value", "StringValue", "str"),
27
+ ]
28
+
29
+ @property
30
+ def data_type(self) -> str:
31
+ """UNDOCUMENTED"""
32
+ return self.get_property_state("data_type")
33
+
34
+ @data_type.setter
35
+ def data_type(self, value: str):
36
+ self.set_property_state("data_type", value)
37
+
38
+ @property
39
+ def participant_display_name(self) -> str:
40
+ """Parameter's display name as defined by the participant solver."""
41
+ return self.get_property_state("participant_display_name")
42
+
43
+ @participant_display_name.setter
44
+ def participant_display_name(self, value: str):
45
+ self.set_property_state("participant_display_name", value)
46
+
47
+ @property
48
+ def display_name(self) -> str:
49
+ """Parameter's display name as defined in System Coupling."""
50
+ return self.get_property_state("display_name")
51
+
52
+ @display_name.setter
53
+ def display_name(self, value: str):
54
+ self.set_property_state("display_name", value)
55
+
56
+ @property
57
+ def real_value(self) -> RealType:
58
+ """Real data start value."""
59
+ return self.get_property_state("real_value")
60
+
61
+ @real_value.setter
62
+ def real_value(self, value: RealType):
63
+ self.set_property_state("real_value", value)
64
+
65
+ @property
66
+ def real_min(self) -> RealType:
67
+ """Real data minimum value."""
68
+ return self.get_property_state("real_min")
69
+
70
+ @real_min.setter
71
+ def real_min(self, value: RealType):
72
+ self.set_property_state("real_min", value)
73
+
74
+ @property
75
+ def real_max(self) -> RealType:
76
+ """Real data maximum value."""
77
+ return self.get_property_state("real_max")
78
+
79
+ @real_max.setter
80
+ def real_max(self, value: RealType):
81
+ self.set_property_state("real_max", value)
82
+
83
+ @property
84
+ def integer_value(self) -> int:
85
+ """Integer data start value."""
86
+ return self.get_property_state("integer_value")
87
+
88
+ @integer_value.setter
89
+ def integer_value(self, value: int):
90
+ self.set_property_state("integer_value", value)
91
+
92
+ @property
93
+ def integer_min(self) -> int:
94
+ """Integer data minimum value."""
95
+ return self.get_property_state("integer_min")
96
+
97
+ @integer_min.setter
98
+ def integer_min(self, value: int):
99
+ self.set_property_state("integer_min", value)
100
+
101
+ @property
102
+ def integer_max(self) -> int:
103
+ """Integer data maximum value."""
104
+ return self.get_property_state("integer_max")
105
+
106
+ @integer_max.setter
107
+ def integer_max(self, value: int):
108
+ self.set_property_state("integer_max", value)
109
+
110
+ @property
111
+ def logical_value(self) -> bool:
112
+ """Logical data start value."""
113
+ return self.get_property_state("logical_value")
114
+
115
+ @logical_value.setter
116
+ def logical_value(self, value: bool):
117
+ self.set_property_state("logical_value", value)
118
+
119
+ @property
120
+ def string_value(self) -> str:
121
+ """String data start value."""
122
+ return self.get_property_state("string_value")
123
+
124
+ @string_value.setter
125
+ def string_value(self, value: str):
126
+ self.set_property_state("string_value", value)