ansys-systemcoupling-core 0.9.0__tar.gz → 0.10.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-systemcoupling-core might be problematic. Click here for more details.
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/PKG-INFO +14 -8
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/README.rst +7 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/pyproject.toml +7 -6
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/__init__.py +1 -1
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +9 -9
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +1 -1
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +12 -3
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +27 -12
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +30 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +12 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +1 -1
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +28 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +195 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +30 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +10 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +53 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +34 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +32 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +24 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open.py +107 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +148 -0
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/save.py +53 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +1 -17
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +10 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +1 -1
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +4 -4
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +4 -1
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/injected_commands.py +3 -1
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +34 -4
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/csv_chartdata.py +4 -3
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/plot_functions.py +12 -4
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/plotter.py +3 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/grpc_client.py +11 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/syc_container.py +40 -35
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/syc_process.py +5 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/native_api/datamodel_metadata.py +3 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/native_api/object_path.py +2 -1
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/syc_version.py +1 -1
- ansys_systemcoupling_core-0.10.0/src/ansys/systemcoupling/core/util/assertion.py +38 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/util/file_transfer.py +2 -1
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/util/state_keys.py +11 -2
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/util/yaml_helper.py +5 -5
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer_by_display_names.py +0 -191
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_interface_by_display_names.py +0 -78
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +0 -102
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +0 -20
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +0 -29
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +0 -187
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +0 -28
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +0 -41
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +0 -30
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +0 -13
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +0 -31
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open.py +0 -102
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +0 -138
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/save.py +0 -51
- ansys_systemcoupling_core-0.9.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solve.py +0 -30
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/_version.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/abort.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/apip.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/attribute.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/initialize.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/instancing.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/library.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/output_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/region.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/region_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/results.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/save.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/side.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/side_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/step.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/type.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/update_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/variable.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/abort.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/apip.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/attribute.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/initialize.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/instancing.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/library.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/output_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/region.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/region_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/results.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/save.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/side.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/side_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/step.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/type.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/update_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/abort.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/apip.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/initialize.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/library.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/results.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/save.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/side.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/side_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/step.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/type.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/abort.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/apip.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/library.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/properties.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/region.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/results.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/save.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/side.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/step.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/type.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/variable.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/abort.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_flow_boundary_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/apip.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/attribute.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/case_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/connect_ensight_dvs.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/execution_control_1.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_supported_participant_types.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/initialize.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/library.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/output_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/properties.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/region.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/region_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/results.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/save.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/side.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/side_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/step.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/type.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/update_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/variable.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/abort.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/apip.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/expression.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/library.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/map.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/properties.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/region.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/results.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/side.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/step.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/type.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/variable.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/root_source.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/static_info.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/adaptor/impl/types.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/chart_datatypes.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/live_csv_datasource.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/message_dispatcher.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/charts/plotdefinition_manager.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/services/command_query.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/services/handle_rpc_error.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/services/output_stream.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/services/process.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/services/solution.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/client/variant.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/examples/__init__.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/examples/downloads.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/native_api/__init__.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/native_api/command_metadata.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/native_api/native_api.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/participant/manager.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/participant/mapdl.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/participant/protocol.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/session.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/util/logging.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/util/name_util.py +0 -0
- {ansys_systemcoupling_core-0.9.0 → ansys_systemcoupling_core-0.10.0}/src/ansys/systemcoupling/core/util/pathstr.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: A Python wrapper for Ansys System Coupling.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
6
|
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
@@ -20,6 +20,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
20
20
|
License-File: LICENSE
|
|
21
21
|
Requires-Dist: ansys-api-systemcoupling==0.2.0
|
|
22
22
|
Requires-Dist: ansys-platform-instancemanagement~=1.0
|
|
23
|
+
Requires-Dist: docker>=7.1.0
|
|
23
24
|
Requires-Dist: grpcio>=1.30.0
|
|
24
25
|
Requires-Dist: grpcio-status>=1.30.0
|
|
25
26
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
@@ -31,10 +32,10 @@ Requires-Dist: matplotlib>=3.8.2
|
|
|
31
32
|
Requires-Dist: build ; extra == "build"
|
|
32
33
|
Requires-Dist: black==25.1.0 ; extra == "classesgen"
|
|
33
34
|
Requires-Dist: isort==6.0.1 ; extra == "classesgen"
|
|
34
|
-
Requires-Dist: ansys-sphinx-theme==1.3
|
|
35
|
+
Requires-Dist: ansys-sphinx-theme==1.5.3 ; extra == "doc"
|
|
35
36
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
36
37
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
37
|
-
Requires-Dist: numpydoc==1.
|
|
38
|
+
Requires-Dist: numpydoc==1.9.0 ; extra == "doc"
|
|
38
39
|
Requires-Dist: pypandoc==1.15 ; extra == "doc"
|
|
39
40
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
|
40
41
|
Requires-Dist: sphinx>=8.1.3 ; extra == "doc"
|
|
@@ -45,10 +46,10 @@ Requires-Dist: sphinx-gallery==0.19.0 ; extra == "doc"
|
|
|
45
46
|
Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
|
|
46
47
|
Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
|
|
47
48
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
|
48
|
-
Requires-Dist: ansys-fluent-core==0.
|
|
49
|
-
Requires-Dist: ansys-mapdl-core==0.
|
|
49
|
+
Requires-Dist: ansys-fluent-core==0.33.0 ; extra == "doc"
|
|
50
|
+
Requires-Dist: ansys-mapdl-core==0.70.2 ; extra == "doc"
|
|
50
51
|
Requires-Dist: codespell==2.4.1 ; extra == "style"
|
|
51
|
-
Requires-Dist: flake8==7.
|
|
52
|
+
Requires-Dist: flake8==7.3.0 ; extra == "style"
|
|
52
53
|
Requires-Dist: pytest ; extra == "tests"
|
|
53
54
|
Requires-Dist: pytest-cov ; extra == "tests"
|
|
54
55
|
Requires-Dist: psutil>=5.7.0 ; extra == "tests"
|
|
@@ -149,13 +150,18 @@ function. This will affect which ``AWP_ROOT<version>`` environment variable is e
|
|
|
149
150
|
|
|
150
151
|
**WARNING**
|
|
151
152
|
|
|
153
|
+
Note that the following applies only to the 25 R1 release of Ansys System Coupling.
|
|
154
|
+
|
|
152
155
|
There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
|
|
153
156
|
working in the gRPC server mode on which PySystemCoupling depends. A small patch
|
|
154
157
|
is available that may be applied to some of the Python files in the System Coupling
|
|
155
158
|
installation. This is provided in the ``patches/`` directory of this repository and will
|
|
156
|
-
allow System Coupling to work with
|
|
159
|
+
allow System Coupling 25 R1 to work with PySystemCoupling releases 0.9 and later.
|
|
160
|
+
|
|
161
|
+
This issue is not present in later releases of System Coupling. If a later release
|
|
162
|
+
is available, you are recommended to use that.
|
|
157
163
|
|
|
158
|
-
|
|
164
|
+
Alternatively, PySystemCoupling can be used with an earlier release of System Coupling by
|
|
159
165
|
setting the environment variable ``AWP_ROOT`` or specifying the version number as an
|
|
160
166
|
argument to the ``launch()`` function.
|
|
161
167
|
|
|
@@ -85,13 +85,18 @@ function. This will affect which ``AWP_ROOT<version>`` environment variable is e
|
|
|
85
85
|
|
|
86
86
|
**WARNING**
|
|
87
87
|
|
|
88
|
+
Note that the following applies only to the 25 R1 release of Ansys System Coupling.
|
|
89
|
+
|
|
88
90
|
There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
|
|
89
91
|
working in the gRPC server mode on which PySystemCoupling depends. A small patch
|
|
90
92
|
is available that may be applied to some of the Python files in the System Coupling
|
|
91
93
|
installation. This is provided in the ``patches/`` directory of this repository and will
|
|
92
|
-
allow System Coupling to work with
|
|
94
|
+
allow System Coupling 25 R1 to work with PySystemCoupling releases 0.9 and later.
|
|
95
|
+
|
|
96
|
+
This issue is not present in later releases of System Coupling. If a later release
|
|
97
|
+
is available, you are recommended to use that.
|
|
93
98
|
|
|
94
|
-
|
|
99
|
+
Alternatively, PySystemCoupling can be used with an earlier release of System Coupling by
|
|
95
100
|
setting the environment variable ``AWP_ROOT`` or specifying the version number as an
|
|
96
101
|
argument to the ``launch()`` function.
|
|
97
102
|
|
|
@@ -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.
|
|
8
|
+
version = "0.10.0"
|
|
9
9
|
description = "A Python wrapper for Ansys System Coupling."
|
|
10
10
|
readme = "README.rst"
|
|
11
11
|
requires-python = ">=3.10,<3.14"
|
|
@@ -19,6 +19,7 @@ maintainers = [
|
|
|
19
19
|
dependencies = [
|
|
20
20
|
"ansys-api-systemcoupling==0.2.0",
|
|
21
21
|
"ansys-platform-instancemanagement~=1.0",
|
|
22
|
+
"docker>=7.1.0",
|
|
22
23
|
"grpcio>=1.30.0",
|
|
23
24
|
"grpcio-status>=1.30.0",
|
|
24
25
|
"googleapis-common-protos>=1.50.0",
|
|
@@ -57,10 +58,10 @@ classesgen = [
|
|
|
57
58
|
"isort==6.0.1",
|
|
58
59
|
]
|
|
59
60
|
doc = [
|
|
60
|
-
"ansys-sphinx-theme==1.3
|
|
61
|
+
"ansys-sphinx-theme==1.5.3",
|
|
61
62
|
"jupyter_sphinx==0.5.3",
|
|
62
63
|
"matplotlib",
|
|
63
|
-
"numpydoc==1.
|
|
64
|
+
"numpydoc==1.9.0",
|
|
64
65
|
"pypandoc==1.15",
|
|
65
66
|
"pytest-sphinx==0.6.3",
|
|
66
67
|
"sphinx>=8.1.3",
|
|
@@ -73,13 +74,13 @@ doc = [
|
|
|
73
74
|
"sphinxemoji==0.3.1",
|
|
74
75
|
|
|
75
76
|
# pyansys dependencies for sphinx gallery examples
|
|
76
|
-
"ansys-fluent-core==0.
|
|
77
|
-
"ansys-mapdl-core==0.
|
|
77
|
+
"ansys-fluent-core==0.33.0",
|
|
78
|
+
"ansys-mapdl-core==0.70.2",
|
|
78
79
|
]
|
|
79
80
|
style = [
|
|
80
81
|
# NB: ensure these remain synced with .pre-commit-config.yaml
|
|
81
82
|
"codespell==2.4.1",
|
|
82
|
-
"flake8==7.
|
|
83
|
+
"flake8==7.3.0",
|
|
83
84
|
]
|
|
84
85
|
tests = [
|
|
85
86
|
"pytest",
|
|
@@ -72,7 +72,7 @@ def launch(
|
|
|
72
72
|
(The forms ``"24.1"`` and ``"24_1"`` are also acceptable.)
|
|
73
73
|
The version will be sought in the standard installation location. The
|
|
74
74
|
default is ``None``, which is equivalent to specifying
|
|
75
|
-
``"
|
|
75
|
+
``"252"`` ("2025 R2" release), unless either of the environment
|
|
76
76
|
variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. It is considered
|
|
77
77
|
to be an error if either these is set *and* ``version`` is provided.
|
|
78
78
|
start_output: bool, optional
|
|
@@ -9,10 +9,10 @@ class add_data_transfer(Command):
|
|
|
9
9
|
"""
|
|
10
10
|
Adds data transfer based on arguments that specify the interface, target
|
|
11
11
|
side, and variables to be associated with each side of the interface.
|
|
12
|
-
The command requires that you specify variables using their names
|
|
13
|
-
|
|
12
|
+
The command requires that you specify variables using their names, as
|
|
13
|
+
described below in Essential Keyword Arguments. Either a variable-based or
|
|
14
14
|
expression-based data transfer may be created with this command based on
|
|
15
|
-
the
|
|
15
|
+
the Optional Keyword Arguments. If a variable-based data transfer argument
|
|
16
16
|
is given, then no expression-based data transfer arguments can be used. If
|
|
17
17
|
an expression-based data transfer argument is given, then no variable-based
|
|
18
18
|
data transfer arguments can be used.
|
|
@@ -36,8 +36,8 @@ class add_data_transfer(Command):
|
|
|
36
36
|
target_variable : str, optional
|
|
37
37
|
String specifying the name of the variable on the target side of
|
|
38
38
|
the data transfer. Must be combined with either ``source_variable`` (when
|
|
39
|
-
creating a variable-based data transfer) or with ``
|
|
40
|
-
|
|
39
|
+
creating a variable-based data transfer) or with ``value_{x|y|z}``
|
|
40
|
+
(when creating an expression-based data transfer).
|
|
41
41
|
value : str, optional
|
|
42
42
|
String specifying the expression to use on the source side of the data
|
|
43
43
|
transfer. Used when creating an expression-based data transfer. If the
|
|
@@ -48,7 +48,7 @@ class add_data_transfer(Command):
|
|
|
48
48
|
String specifying the X component of the expression to use on the
|
|
49
49
|
source side of the data transfer. This may optionally be used when creating
|
|
50
50
|
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
51
|
-
alternative to specifying a vector-valued expression in ``value
|
|
51
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_y`` and
|
|
52
52
|
``value_z`` are also required if ``value_x`` is used.
|
|
53
53
|
value_y : str, optional
|
|
54
54
|
String specifying the Y component of the expression to use on the
|
|
@@ -119,8 +119,8 @@ class add_data_transfer(Command):
|
|
|
119
119
|
"""
|
|
120
120
|
String specifying the name of the variable on the target side of
|
|
121
121
|
the data transfer. Must be combined with either ``source_variable`` (when
|
|
122
|
-
creating a variable-based data transfer) or with ``
|
|
123
|
-
|
|
122
|
+
creating a variable-based data transfer) or with ``value_{x|y|z}``
|
|
123
|
+
(when creating an expression-based data transfer).
|
|
124
124
|
"""
|
|
125
125
|
|
|
126
126
|
syc_name = "TargetVariable"
|
|
@@ -141,7 +141,7 @@ class add_data_transfer(Command):
|
|
|
141
141
|
String specifying the X component of the expression to use on the
|
|
142
142
|
source side of the data transfer. This may optionally be used when creating
|
|
143
143
|
an expression-based data transfer if the ``target_variable`` is a vector as an
|
|
144
|
-
alternative to specifying a vector-valued expression in ``value
|
|
144
|
+
alternative to specifying a vector-valued expression in ``value``. ``value_y`` and
|
|
145
145
|
``value_z`` are also required if ``value_x`` is used.
|
|
146
146
|
"""
|
|
147
147
|
|
|
@@ -10,7 +10,7 @@ class add_interface(Command):
|
|
|
10
10
|
Adds an interface based on the participant and region names specified
|
|
11
11
|
as arguments for each side of the interface. This command requires that
|
|
12
12
|
you specify participants using their names as described below in
|
|
13
|
-
Essential Keyword Arguments. Non-FMU participants
|
|
13
|
+
Essential Keyword Arguments. Non-FMU participants can provide a list
|
|
14
14
|
of regions as described below in Optional Keyword Arguments. For FMU
|
|
15
15
|
interfaces, specifying the regions are not allowed.
|
|
16
16
|
|
|
@@ -7,9 +7,18 @@ from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
|
7
7
|
|
|
8
8
|
class add_ordered_data_transfers(Command):
|
|
9
9
|
"""
|
|
10
|
-
Adds data transfer for each ordered pair of variables in an
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
Adds data transfer for each ordered pair of variables in an
|
|
11
|
+
FMU-FMU interface. Requires the FMU-FMU interface. Requires
|
|
12
|
+
that the target FMU has the same number of input variables
|
|
13
|
+
as the source FMU has output variables.
|
|
14
|
+
The transfers are added in order. That is, the n-th output
|
|
15
|
+
variable for side one will be connected to the n-th input
|
|
16
|
+
variable for side two. This is only available for interfaces
|
|
17
|
+
with FMUs on both side one and side two.
|
|
18
|
+
|
|
19
|
+
Data transfers will be created in both directions, if possible.
|
|
20
|
+
|
|
21
|
+
Returns the name of the data transfers created.
|
|
13
22
|
|
|
14
23
|
Parameters
|
|
15
24
|
----------
|
|
@@ -31,13 +31,8 @@ class add_participant(InjectedCommand):
|
|
|
31
31
|
|
|
32
32
|
The remainder of the documentation describes the more usual non-session mode.
|
|
33
33
|
|
|
34
|
-
Adds a coupling participant to the
|
|
35
|
-
|
|
36
|
-
When executed, this command adds the new participant to the analysis
|
|
37
|
-
without removing any interfaces or data transfers created previously.
|
|
38
|
-
|
|
34
|
+
Adds a coupling participant to the setup.
|
|
39
35
|
Cannot be called after participants have been started.
|
|
40
|
-
|
|
41
36
|
Returns the name of the participant.
|
|
42
37
|
|
|
43
38
|
There are several options that can be selected to add the
|
|
@@ -76,8 +71,8 @@ class add_participant(InjectedCommand):
|
|
|
76
71
|
input_file : str, optional
|
|
77
72
|
Name of the input file for the participant to be added.
|
|
78
73
|
Currently supported formats are SCP files, Forte input (FTSIM)
|
|
79
|
-
files,
|
|
80
|
-
FMU (\*.fmu) files, and System Coupling
|
|
74
|
+
files, Mechanical Server (\*.rst) files, CFD Server (\*.csv) files,
|
|
75
|
+
FMU (\*.fmu) files, and System Coupling Data Server (\*.scdt/axdt/csv) files.
|
|
81
76
|
executable : str, optional
|
|
82
77
|
Path to the executable file for the participant to be added.
|
|
83
78
|
additional_arguments : str, optional
|
|
@@ -87,7 +82,17 @@ class add_participant(InjectedCommand):
|
|
|
87
82
|
python_script : str, optional
|
|
88
83
|
Instead of the executable, use a Python script and wrap it with
|
|
89
84
|
System Coupling-provided .bat/.sh scripts to set up the environment
|
|
90
|
-
correctly before calling this Python script.
|
|
85
|
+
correctly before calling this Python script. On Windows, a few
|
|
86
|
+
lines will need to be included near the top of the Python script to
|
|
87
|
+
add the required dll directories as follows:
|
|
88
|
+
|
|
89
|
+
.. code-block:: python
|
|
90
|
+
|
|
91
|
+
import os
|
|
92
|
+
import sys
|
|
93
|
+
if sys.platform.startswith("win"):
|
|
94
|
+
for p in os.environ["PYTHON_DLL_PATH"].split(os.pathsep):
|
|
95
|
+
os.add_dll_directory(p)
|
|
91
96
|
|
|
92
97
|
"""
|
|
93
98
|
|
|
@@ -125,8 +130,8 @@ class add_participant(InjectedCommand):
|
|
|
125
130
|
"""
|
|
126
131
|
Name of the input file for the participant to be added.
|
|
127
132
|
Currently supported formats are SCP files, Forte input (FTSIM)
|
|
128
|
-
files,
|
|
129
|
-
FMU (\*.fmu) files, and System Coupling
|
|
133
|
+
files, Mechanical Server (\*.rst) files, CFD Server (\*.csv) files,
|
|
134
|
+
FMU (\*.fmu) files, and System Coupling Data Server (\*.scdt/axdt/csv) files.
|
|
130
135
|
"""
|
|
131
136
|
|
|
132
137
|
syc_name = "InputFile"
|
|
@@ -156,7 +161,17 @@ class add_participant(InjectedCommand):
|
|
|
156
161
|
"""
|
|
157
162
|
Instead of the executable, use a Python script and wrap it with
|
|
158
163
|
System Coupling-provided .bat/.sh scripts to set up the environment
|
|
159
|
-
correctly before calling this Python script.
|
|
164
|
+
correctly before calling this Python script. On Windows, a few
|
|
165
|
+
lines will need to be included near the top of the Python script to
|
|
166
|
+
add the required dll directories as follows:
|
|
167
|
+
|
|
168
|
+
.. code-block:: python
|
|
169
|
+
|
|
170
|
+
import os
|
|
171
|
+
import sys
|
|
172
|
+
if sys.platform.startswith("win"):
|
|
173
|
+
for p in os.environ["PYTHON_DLL_PATH"].split(os.pathsep):
|
|
174
|
+
os.add_dll_directory(p)
|
|
160
175
|
"""
|
|
161
176
|
|
|
162
177
|
syc_name = "PythonScript"
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class add_transformation(Command):
|
|
9
|
+
"""
|
|
10
|
+
Add a transformation to a reference frame defined in the datamodel
|
|
11
|
+
|
|
12
|
+
Given the reference frame to add to the transform to, the type of transform
|
|
13
|
+
to be added, and any required information for the transformation, add the
|
|
14
|
+
transformation to the referenceFrame. Not all parameters are required for
|
|
15
|
+
every transformation.
|
|
16
|
+
|
|
17
|
+
The name of the transformation will be based on the type of transformation.
|
|
18
|
+
The name will be of the form ``<transformation_type>-#`` where ``#`` is the first
|
|
19
|
+
positive integer which yields a unique frame name.
|
|
20
|
+
|
|
21
|
+
The transformation will also be added to the end of the ``transformation_order``
|
|
22
|
+
list for the reference frame.
|
|
23
|
+
|
|
24
|
+
Returns the name of the transformation.
|
|
25
|
+
|
|
26
|
+
Parameters
|
|
27
|
+
----------
|
|
28
|
+
reference_frame : str
|
|
29
|
+
Name of the reference frame to which the transformation will be added.
|
|
30
|
+
transformation_type : str
|
|
31
|
+
Type of transformation to be added. Available options are Rotation or
|
|
32
|
+
Translation
|
|
33
|
+
|
|
34
|
+
Required Parameters for Transformation Types:
|
|
35
|
+
Rotation: ``angle``, ``axis``, ``vector`` (if ``axis`` is \"UserDefined\")
|
|
36
|
+
Translation: ``vector``
|
|
37
|
+
angle : real, optional
|
|
38
|
+
Angle to rotate a reference frame. Used with Rotation
|
|
39
|
+
``transformation_type``. Default unit is Radians.
|
|
40
|
+
axis : str, optional
|
|
41
|
+
Axis about which a rotation is applied. Used with
|
|
42
|
+
Rotation ``transformation_type``. Available options are: "XAxis", "YAxis",
|
|
43
|
+
"ZAxis", and "UserDefined".
|
|
44
|
+
vector : Tuple, optional
|
|
45
|
+
A vector for use with Translation ``transformation_type`` or Rotation
|
|
46
|
+
``transformation_type`` if the ``axis`` is "UserDefined".
|
|
47
|
+
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
syc_name = "AddTransformation"
|
|
51
|
+
|
|
52
|
+
argument_names = [
|
|
53
|
+
"reference_frame",
|
|
54
|
+
"transformation_type",
|
|
55
|
+
"angle",
|
|
56
|
+
"axis",
|
|
57
|
+
"vector",
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
class reference_frame(String):
|
|
61
|
+
"""
|
|
62
|
+
Name of the reference frame to which the transformation will be added.
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
syc_name = "ReferenceFrame"
|
|
66
|
+
|
|
67
|
+
class transformation_type(String):
|
|
68
|
+
"""
|
|
69
|
+
Type of transformation to be added. Available options are Rotation or
|
|
70
|
+
Translation
|
|
71
|
+
|
|
72
|
+
Required Parameters for Transformation Types:
|
|
73
|
+
Rotation: ``angle``, ``axis``, ``vector`` (if ``axis`` is \"UserDefined\")
|
|
74
|
+
Translation: ``vector``
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
syc_name = "TransformationType"
|
|
78
|
+
|
|
79
|
+
class angle(Real):
|
|
80
|
+
"""
|
|
81
|
+
Angle to rotate a reference frame. Used with Rotation
|
|
82
|
+
``transformation_type``. Default unit is Radians.
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
syc_name = "Angle"
|
|
86
|
+
|
|
87
|
+
class axis(String):
|
|
88
|
+
"""
|
|
89
|
+
Axis about which a rotation is applied. Used with
|
|
90
|
+
Rotation ``transformation_type``. Available options are: "XAxis", "YAxis",
|
|
91
|
+
"ZAxis", and "UserDefined".
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
syc_name = "Axis"
|
|
95
|
+
|
|
96
|
+
class vector(RealVector):
|
|
97
|
+
"""
|
|
98
|
+
A vector for use with Translation ``transformation_type`` or Rotation
|
|
99
|
+
``transformation_type`` if the ``axis`` is "UserDefined".
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
syc_name = "Vector"
|
|
@@ -79,6 +79,9 @@ class analysis_control(Container):
|
|
|
79
79
|
("check_for_input_files_changes", "CheckForInputFilesChanges", "str"),
|
|
80
80
|
("is_user_friendly_mapping", "IsUserFriendlyMapping", "bool"),
|
|
81
81
|
("reduce_informational_output", "ReduceInformationalOutput", "bool"),
|
|
82
|
+
("participant_precision", "ParticipantPrecision", "str"),
|
|
83
|
+
("avoid_rbf", "AvoidRBF", "str"),
|
|
84
|
+
("interactive_initialization", "InteractiveInitialization", "bool"),
|
|
82
85
|
]
|
|
83
86
|
|
|
84
87
|
@property
|
|
@@ -301,3 +304,30 @@ class analysis_control(Container):
|
|
|
301
304
|
@reduce_informational_output.setter
|
|
302
305
|
def reduce_informational_output(self, value: bool):
|
|
303
306
|
self.set_property_state("reduce_informational_output", value)
|
|
307
|
+
|
|
308
|
+
@property
|
|
309
|
+
def participant_precision(self) -> str:
|
|
310
|
+
"""Set global option for participant precision"""
|
|
311
|
+
return self.get_property_state("participant_precision")
|
|
312
|
+
|
|
313
|
+
@participant_precision.setter
|
|
314
|
+
def participant_precision(self, value: str):
|
|
315
|
+
self.set_property_state("participant_precision", value)
|
|
316
|
+
|
|
317
|
+
@property
|
|
318
|
+
def avoid_rbf(self) -> str:
|
|
319
|
+
"""UNDOCUMENTED"""
|
|
320
|
+
return self.get_property_state("avoid_rbf")
|
|
321
|
+
|
|
322
|
+
@avoid_rbf.setter
|
|
323
|
+
def avoid_rbf(self, value: str):
|
|
324
|
+
self.set_property_state("avoid_rbf", value)
|
|
325
|
+
|
|
326
|
+
@property
|
|
327
|
+
def interactive_initialization(self) -> bool:
|
|
328
|
+
"""Controls whether using interactive initialization for cosim"""
|
|
329
|
+
return self.get_property_state("interactive_initialization")
|
|
330
|
+
|
|
331
|
+
@interactive_initialization.setter
|
|
332
|
+
def interactive_initialization(self, value: bool):
|
|
333
|
+
self.set_property_state("interactive_initialization", value)
|
|
@@ -0,0 +1,20 @@
|
|
|
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 .attribute_child import attribute_child
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class attribute(NamedContainer[attribute_child]):
|
|
11
|
+
"""
|
|
12
|
+
Configure an attribute.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
syc_name = "Attribute"
|
|
16
|
+
|
|
17
|
+
child_object_type: attribute_child = attribute_child
|
|
18
|
+
"""
|
|
19
|
+
child_object_type of attribute.
|
|
20
|
+
"""
|
|
@@ -9,7 +9,7 @@ from .dimensionality import dimensionality
|
|
|
9
9
|
|
|
10
10
|
class attribute_child(Container):
|
|
11
11
|
"""
|
|
12
|
-
Configure
|
|
12
|
+
Configure an attribute.
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
15
|
syc_name = "child_object_type"
|
|
@@ -25,11 +25,12 @@ class attribute_child(Container):
|
|
|
25
25
|
("modifiable", "Modifiable", "bool"),
|
|
26
26
|
("real_value", "RealValue", "RealType"),
|
|
27
27
|
("integer_value", "IntegerValue", "int"),
|
|
28
|
+
("string_value", "StringValue", "str"),
|
|
28
29
|
]
|
|
29
30
|
|
|
30
31
|
@property
|
|
31
32
|
def attribute_type(self) -> str:
|
|
32
|
-
"""The type of the attribute (\"Real\" or \"
|
|
33
|
+
"""The type of the attribute (\"Real\", \"Integer\", or \"String\")."""
|
|
33
34
|
return self.get_property_state("attribute_type")
|
|
34
35
|
|
|
35
36
|
@attribute_type.setter
|
|
@@ -62,3 +63,12 @@ class attribute_child(Container):
|
|
|
62
63
|
@integer_value.setter
|
|
63
64
|
def integer_value(self, value: int):
|
|
64
65
|
self.set_property_state("integer_value", value)
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
def string_value(self) -> str:
|
|
69
|
+
"""String attribute value."""
|
|
70
|
+
return self.get_property_state("string_value")
|
|
71
|
+
|
|
72
|
+
@string_value.setter
|
|
73
|
+
def string_value(self, value: str):
|
|
74
|
+
self.set_property_state("string_value", value)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This is an auto-generated file. DO NOT EDIT!
|
|
3
3
|
#
|
|
4
4
|
|
|
5
|
-
SHASH = "
|
|
5
|
+
SHASH = "959d876aeac97f5477abdc73030965f3b5cf57f93648d88535c634374191caa8"
|
|
6
6
|
|
|
7
7
|
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
8
8
|
|
|
@@ -0,0 +1,28 @@
|
|
|
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 create_restart_point(Command):
|
|
9
|
+
"""
|
|
10
|
+
Interactive command that creates a restart point at the end of the
|
|
11
|
+
last completed coupling step.
|
|
12
|
+
|
|
13
|
+
Signals the System Coupling service and all coupling participants that a
|
|
14
|
+
restart point should be created before the next coupling step begins. The
|
|
15
|
+
restart point is created in addition to restart points created by the
|
|
16
|
+
'``output_control`` setting in the data model.
|
|
17
|
+
|
|
18
|
+
Note that some participants write their restart files only when the
|
|
19
|
+
coupling run resumes, so their files will not be available immediately
|
|
20
|
+
after the command is issued.
|
|
21
|
+
|
|
22
|
+
Results information for the coupling step is written to a file named
|
|
23
|
+
according to the convention ``Results_step<#>|iter<#>.h5``, where ``#`` is the number of
|
|
24
|
+
the coupling step or iteration. The restart files are written to the "SyC"
|
|
25
|
+
directory, which is automatically created by System Coupling.
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
syc_name = "CreateRestartPoint"
|