ansys-systemcoupling-core 0.3.1__tar.gz → 0.4.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ansys-systemcoupling-core might be problematic. Click here for more details.
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/PKG-INFO +19 -18
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/README.rst +3 -2
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/pyproject.toml +16 -16
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/__init__.py +23 -1
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/_version.py +39 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_fsi_data_transfers.py +1 -12
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_participant_child.py +1 -13
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/execution_control.py +0 -20
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/fluent_input.py +0 -10
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/record_interactions.py +0 -10
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/region_child.py +1 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/setup_root.py +1 -1
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +59 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/injected_commands.py +29 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/root_source.py +22 -1
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/static_info.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +73 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/impl/types.py +23 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/grpc_client.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/command_query.py +48 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/output_stream.py +54 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/client/services/process.py +39 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/services/solution.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/syc_container.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/syc_process.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/client/variant.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/examples/__init__.py +23 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/examples/downloads.py +23 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/__init__.py +23 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/command_metadata.py +42 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/datamodel_metadata.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +33 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/native_api.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/native_api/object_path.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/participant/manager.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/participant/mapdl.py +298 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/participant/protocol.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/session.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/syc_version.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/logging.py +22 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/util/name_util.py +34 -0
- ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/util/pathstr.py +49 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/state_keys.py +22 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/util/yaml_helper.py +22 -0
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/_version.py +0 -17
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +0 -35
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +0 -51
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/client/services/command_query.py +0 -26
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/client/services/output_stream.py +0 -32
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/client/services/process.py +0 -17
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/examples/__init__.py +0 -1
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/native_api/__init__.py +0 -1
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/native_api/command_metadata.py +0 -19
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +0 -10
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/util/name_util.py +0 -12
- ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/util/pathstr.py +0 -27
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/LICENSE +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/_solve.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/abort.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/apip.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/attribute.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/case_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/initialize.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/instancing.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/library.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/open.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/output_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/region.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/region_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/results.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/save.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/side.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/side_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/solve.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/step.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/type.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/update_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/variable.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_23_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_1}/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/_solve.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/abort.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/apip.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/attribute.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/case_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/initialize.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/instancing.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/library.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/open.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/output_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/region.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/region_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/results.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/save.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/side.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/side_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/solve.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/step.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/type.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/update_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/variable.py +0 -0
- {ansys_systemcoupling_core-0.3.1 → ansys_systemcoupling_core-0.4.dev0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_1 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_23_2}/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/_solve.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/abort.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/apip.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/attribute.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/case_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/initialize.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/instancing.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/library.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/open.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/output_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/parameter.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/region.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/results.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/save.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/side.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/side_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/solve.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/step.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/transformation.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/type.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/update_control.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/variable.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.3.1/src/ansys/systemcoupling/core/adaptor/api_24_2 → ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/api_24_1}/write_ensight.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.dev0
|
|
4
4
|
Summary: A Python wrapper for Ansys System Coupling.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
6
|
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
20
|
Requires-Dist: ansys-api-systemcoupling==0.1.0
|
|
21
21
|
Requires-Dist: grpcio>=1.30.0
|
|
22
|
-
Requires-Dist: grpcio-status>=1.30.0,<1.
|
|
22
|
+
Requires-Dist: grpcio-status>=1.30.0,<1.60.2
|
|
23
23
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
24
24
|
Requires-Dist: protobuf>=3.20.1,<4.0.0
|
|
25
25
|
Requires-Dist: psutil>=5.7.0
|
|
@@ -27,26 +27,26 @@ Requires-Dist: pyyaml
|
|
|
27
27
|
Requires-Dist: appdirs>=1.4.0
|
|
28
28
|
Requires-Dist: importlib-metadata>=4.0
|
|
29
29
|
Requires-Dist: build ; extra == "build"
|
|
30
|
-
Requires-Dist: black==
|
|
31
|
-
Requires-Dist: isort==5.
|
|
32
|
-
Requires-Dist: ansys-sphinx-theme==0.
|
|
33
|
-
Requires-Dist: jupyter_sphinx==0.
|
|
30
|
+
Requires-Dist: black==24.1.1 ; extra == "classesgen"
|
|
31
|
+
Requires-Dist: isort==5.13.2 ; extra == "classesgen"
|
|
32
|
+
Requires-Dist: ansys-sphinx-theme==0.13.3 ; extra == "doc"
|
|
33
|
+
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
34
34
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
35
|
-
Requires-Dist: numpydoc==1.
|
|
36
|
-
Requires-Dist: pypandoc==1.
|
|
37
|
-
Requires-Dist: pytest-sphinx==0.
|
|
35
|
+
Requires-Dist: numpydoc==1.6.0 ; extra == "doc"
|
|
36
|
+
Requires-Dist: pypandoc==1.12 ; extra == "doc"
|
|
37
|
+
Requires-Dist: pytest-sphinx==0.6.0 ; extra == "doc"
|
|
38
38
|
Requires-Dist: Sphinx==7.2.6 ; extra == "doc"
|
|
39
|
-
Requires-Dist: sphinx-autobuild==
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints==1.
|
|
39
|
+
Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx-autodoc-typehints==1.25.2 ; extra == "doc"
|
|
41
41
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
42
|
-
Requires-Dist: sphinx-gallery==0.
|
|
42
|
+
Requires-Dist: sphinx-gallery==0.15.0 ; extra == "doc"
|
|
43
43
|
Requires-Dist: sphinx-notfound-page==1.0.0 ; extra == "doc"
|
|
44
|
-
Requires-Dist: sphinxcontrib-websupport==1.2.
|
|
45
|
-
Requires-Dist: sphinxemoji==0.
|
|
44
|
+
Requires-Dist: sphinxcontrib-websupport==1.2.7 ; extra == "doc"
|
|
45
|
+
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
|
46
46
|
Requires-Dist: ansys-fluent-core ; extra == "doc"
|
|
47
47
|
Requires-Dist: ansys-dpf-core ; extra == "doc"
|
|
48
|
-
Requires-Dist: codespell==2.2.
|
|
49
|
-
Requires-Dist: flake8==
|
|
48
|
+
Requires-Dist: codespell==2.2.6 ; extra == "style"
|
|
49
|
+
Requires-Dist: flake8==7.0.0 ; extra == "style"
|
|
50
50
|
Requires-Dist: pytest ; extra == "tests"
|
|
51
51
|
Requires-Dist: pytest-cov ; extra == "tests"
|
|
52
52
|
Requires-Dist: psutil>=5.7.0 ; extra == "tests"
|
|
@@ -135,12 +135,12 @@ in this order:
|
|
|
135
135
|
|
|
136
136
|
* ``SYSC_ROOT``
|
|
137
137
|
* ``AWP_ROOT``
|
|
138
|
-
* ``
|
|
138
|
+
* ``AWP_ROOT241``
|
|
139
139
|
|
|
140
140
|
If a variable is set but does not refer to a valid installation, PySystemCoupling
|
|
141
141
|
fails at that point, rather than attempting to use the next variable.
|
|
142
142
|
|
|
143
|
-
In a standard user installation, the expectation is that only ``
|
|
143
|
+
In a standard user installation, the expectation is that only ``AWP_ROOT241`` is set.
|
|
144
144
|
|
|
145
145
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
146
146
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
|
@@ -157,6 +157,7 @@ However, if you are transitioning existing scripts, the native System Coupling A
|
|
|
157
157
|
as a convenience.
|
|
158
158
|
|
|
159
159
|
.. note::
|
|
160
|
+
|
|
160
161
|
While most commands should work as expected via the native System Coupling API,
|
|
161
162
|
no guarantees can be given because of the nature of how it is exposed.
|
|
162
163
|
|
|
@@ -73,12 +73,12 @@ in this order:
|
|
|
73
73
|
|
|
74
74
|
* ``SYSC_ROOT``
|
|
75
75
|
* ``AWP_ROOT``
|
|
76
|
-
* ``
|
|
76
|
+
* ``AWP_ROOT241``
|
|
77
77
|
|
|
78
78
|
If a variable is set but does not refer to a valid installation, PySystemCoupling
|
|
79
79
|
fails at that point, rather than attempting to use the next variable.
|
|
80
80
|
|
|
81
|
-
In a standard user installation, the expectation is that only ``
|
|
81
|
+
In a standard user installation, the expectation is that only ``AWP_ROOT241`` is set.
|
|
82
82
|
|
|
83
83
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
84
84
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
|
@@ -95,6 +95,7 @@ However, if you are transitioning existing scripts, the native System Coupling A
|
|
|
95
95
|
as a convenience.
|
|
96
96
|
|
|
97
97
|
.. note::
|
|
98
|
+
|
|
98
99
|
While most commands should work as expected via the native System Coupling API,
|
|
99
100
|
no guarantees can be given because of the nature of how it is exposed.
|
|
100
101
|
|
|
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
|
|
|
5
5
|
[project]
|
|
6
6
|
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
|
|
7
7
|
name = "ansys-systemcoupling-core"
|
|
8
|
-
version = "0.
|
|
8
|
+
version = "0.4.dev0"
|
|
9
9
|
description = "A Python wrapper for Ansys System Coupling."
|
|
10
10
|
readme = "README.rst"
|
|
11
11
|
requires-python = ">=3.7"
|
|
@@ -19,7 +19,7 @@ maintainers = [
|
|
|
19
19
|
dependencies = [
|
|
20
20
|
"ansys-api-systemcoupling==0.1.0",
|
|
21
21
|
"grpcio>=1.30.0",
|
|
22
|
-
"grpcio-status>=1.30.0,<1.
|
|
22
|
+
"grpcio-status>=1.30.0,<1.60.2",
|
|
23
23
|
"googleapis-common-protos>=1.50.0",
|
|
24
24
|
"protobuf>=3.20.1,<4.0.0",
|
|
25
25
|
"psutil>=5.7.0",
|
|
@@ -52,32 +52,32 @@ classesgen = [
|
|
|
52
52
|
# black and isort are called programmatically to keep generated code
|
|
53
53
|
# consistent with style elsewhere. We need to keep the versions in
|
|
54
54
|
# sync with the precommit dependencies.
|
|
55
|
-
"black==
|
|
56
|
-
"isort==5.
|
|
55
|
+
"black==24.1.1",
|
|
56
|
+
"isort==5.13.2",
|
|
57
57
|
]
|
|
58
58
|
doc = [
|
|
59
|
-
"ansys-sphinx-theme==0.
|
|
60
|
-
"jupyter_sphinx==0.
|
|
59
|
+
"ansys-sphinx-theme==0.13.3",
|
|
60
|
+
"jupyter_sphinx==0.5.3",
|
|
61
61
|
"matplotlib",
|
|
62
|
-
"numpydoc==1.
|
|
63
|
-
"pypandoc==1.
|
|
64
|
-
"pytest-sphinx==0.
|
|
62
|
+
"numpydoc==1.6.0",
|
|
63
|
+
"pypandoc==1.12",
|
|
64
|
+
"pytest-sphinx==0.6.0",
|
|
65
65
|
"Sphinx==7.2.6",
|
|
66
|
-
"sphinx-autobuild==
|
|
67
|
-
"sphinx-autodoc-typehints==1.
|
|
66
|
+
"sphinx-autobuild==2024.2.4",
|
|
67
|
+
"sphinx-autodoc-typehints==1.25.2",
|
|
68
68
|
"sphinx-copybutton==0.5.2",
|
|
69
|
-
"sphinx-gallery==0.
|
|
69
|
+
"sphinx-gallery==0.15.0",
|
|
70
70
|
"sphinx-notfound-page==1.0.0",
|
|
71
|
-
"sphinxcontrib-websupport==1.2.
|
|
72
|
-
"sphinxemoji==0.
|
|
71
|
+
"sphinxcontrib-websupport==1.2.7",
|
|
72
|
+
"sphinxemoji==0.3.1",
|
|
73
73
|
|
|
74
74
|
# pyansys dependencies for sphinx gallery examples
|
|
75
75
|
"ansys-fluent-core",
|
|
76
76
|
"ansys-dpf-core",
|
|
77
77
|
]
|
|
78
78
|
style = [
|
|
79
|
-
"codespell==2.2.
|
|
80
|
-
"flake8==
|
|
79
|
+
"codespell==2.2.6",
|
|
80
|
+
"flake8==7.0.0",
|
|
81
81
|
]
|
|
82
82
|
tests = [
|
|
83
83
|
"pytest",
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
import os
|
|
2
24
|
from typing import List
|
|
3
25
|
|
|
@@ -47,7 +69,7 @@ def launch(
|
|
|
47
69
|
(The forms ``"23.1"`` and ``"23_1"`` are also acceptable.)
|
|
48
70
|
The version will be sought in the standard installation location. The
|
|
49
71
|
default is ``None``, which is equivalent to specifying
|
|
50
|
-
``"
|
|
72
|
+
``"241"`` ("2024 R1" release), unless either of the environment
|
|
51
73
|
variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. It is considered
|
|
52
74
|
to be an error if either these is set *and* ``version`` is provided.
|
|
53
75
|
extra_args : List[str]
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
23
|
+
"""Version of ansys-systemcoupling-core library.
|
|
24
|
+
|
|
25
|
+
On the ``main`` branch, use 'dev0' to denote a development version.
|
|
26
|
+
For example:
|
|
27
|
+
|
|
28
|
+
version_info = 0, 1, 'dev0'
|
|
29
|
+
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
try:
|
|
33
|
+
import importlib.metadata as importlib_metadata
|
|
34
|
+
except ModuleNotFoundError: # pragma: no cover
|
|
35
|
+
import importlib_metadata
|
|
36
|
+
|
|
37
|
+
# Read from the pyproject.toml
|
|
38
|
+
# major, minor, patch
|
|
39
|
+
__version__ = importlib_metadata.version("ansys.systemcoupling.core")
|
|
@@ -16,15 +16,12 @@ class add_fsi_data_transfers(Command):
|
|
|
16
16
|
interface : str
|
|
17
17
|
String indicating the name of the interface on which the data transfer
|
|
18
18
|
is to be created.
|
|
19
|
-
use_force_density : bool, optional
|
|
20
|
-
Boolean indicating whether to prefer force density variable over force.
|
|
21
|
-
Default value is False.
|
|
22
19
|
|
|
23
20
|
"""
|
|
24
21
|
|
|
25
22
|
syc_name = "AddFSIDataTransfers"
|
|
26
23
|
|
|
27
|
-
argument_names = ["interface"
|
|
24
|
+
argument_names = ["interface"]
|
|
28
25
|
|
|
29
26
|
class interface(String):
|
|
30
27
|
"""
|
|
@@ -33,11 +30,3 @@ class add_fsi_data_transfers(Command):
|
|
|
33
30
|
"""
|
|
34
31
|
|
|
35
32
|
syc_name = "Interface"
|
|
36
|
-
|
|
37
|
-
class use_force_density(Boolean):
|
|
38
|
-
"""
|
|
39
|
-
Boolean indicating whether to prefer force density variable over force.
|
|
40
|
-
Default value is False.
|
|
41
|
-
"""
|
|
42
|
-
|
|
43
|
-
syc_name = "UseForceDensity"
|
|
@@ -85,7 +85,6 @@ class coupling_participant_child(Container):
|
|
|
85
85
|
("can_get_and_set_fmu_state", "CanGetAndSetFmuState", "bool"),
|
|
86
86
|
("free_fmu_state", "FreeFmuState", "bool"),
|
|
87
87
|
("instancing", "Instancing", "str"),
|
|
88
|
-
("accepts_new_inputs", "AcceptsNewInputs", "bool"),
|
|
89
88
|
]
|
|
90
89
|
|
|
91
90
|
@property
|
|
@@ -104,9 +103,7 @@ class coupling_participant_child(Container):
|
|
|
104
103
|
- \"DEFAULT-SRV\"
|
|
105
104
|
- \"MECH-SRV\"
|
|
106
105
|
- \"CFD-SRV\"
|
|
107
|
-
- \"SCDT-SRV\"
|
|
108
|
-
- \"THERMAL-DESKTOP\"
|
|
109
|
-
- \"LS-DYNA\" """
|
|
106
|
+
- \"SCDT-SRV\" """
|
|
110
107
|
return self.get_property_state("participant_type")
|
|
111
108
|
|
|
112
109
|
@participant_type.setter
|
|
@@ -257,12 +254,3 @@ class coupling_participant_child(Container):
|
|
|
257
254
|
@instancing.setter
|
|
258
255
|
def instancing(self, value: str):
|
|
259
256
|
self.set_property_state("instancing", value)
|
|
260
|
-
|
|
261
|
-
@property
|
|
262
|
-
def accepts_new_inputs(self) -> bool:
|
|
263
|
-
"""Controls whether participant accept new input variables or parameters."""
|
|
264
|
-
return self.get_property_state("accepts_new_inputs")
|
|
265
|
-
|
|
266
|
-
@accepts_new_inputs.setter
|
|
267
|
-
def accepts_new_inputs(self, value: bool):
|
|
268
|
-
self.set_property_state("accepts_new_inputs", value)
|
|
@@ -25,8 +25,6 @@ class execution_control(Container):
|
|
|
25
25
|
("working_directory", "WorkingDirectory", "str"),
|
|
26
26
|
("executable", "Executable", "str"),
|
|
27
27
|
("auto_distribution_settings", "AutoDistributionSettings", "bool"),
|
|
28
|
-
("use_ls_dyna_custom_executable", "UseLsDynaCustomExecutable", "bool"),
|
|
29
|
-
("ls_dyna_custom_executable", "LsDynaCustomExecutable", "str"),
|
|
30
28
|
(
|
|
31
29
|
"include_hpc_distribution_types",
|
|
32
30
|
"IncludeHPCDistributionTypes",
|
|
@@ -89,24 +87,6 @@ class execution_control(Container):
|
|
|
89
87
|
def auto_distribution_settings(self, value: bool):
|
|
90
88
|
self.set_property_state("auto_distribution_settings", value)
|
|
91
89
|
|
|
92
|
-
@property
|
|
93
|
-
def use_ls_dyna_custom_executable(self) -> bool:
|
|
94
|
-
"""Specify whether to use custom executable for LS-DYNA."""
|
|
95
|
-
return self.get_property_state("use_ls_dyna_custom_executable")
|
|
96
|
-
|
|
97
|
-
@use_ls_dyna_custom_executable.setter
|
|
98
|
-
def use_ls_dyna_custom_executable(self, value: bool):
|
|
99
|
-
self.set_property_state("use_ls_dyna_custom_executable", value)
|
|
100
|
-
|
|
101
|
-
@property
|
|
102
|
-
def ls_dyna_custom_executable(self) -> str:
|
|
103
|
-
"""Path to LS-DYNA executable."""
|
|
104
|
-
return self.get_property_state("ls_dyna_custom_executable")
|
|
105
|
-
|
|
106
|
-
@ls_dyna_custom_executable.setter
|
|
107
|
-
def ls_dyna_custom_executable(self, value: str):
|
|
108
|
-
self.set_property_state("ls_dyna_custom_executable", value)
|
|
109
|
-
|
|
110
90
|
@property
|
|
111
91
|
def include_hpc_distribution_types(self) -> StringListType:
|
|
112
92
|
"""Include HPC distribution types for the distributed AEDT runs."""
|
|
@@ -16,7 +16,6 @@ class fluent_input(Container):
|
|
|
16
16
|
("option", "Option", "str"),
|
|
17
17
|
("case_file", "CaseFile", "str"),
|
|
18
18
|
("data_file", "DataFile", "str"),
|
|
19
|
-
("enable_autosave", "EnableAutosave", "bool"),
|
|
20
19
|
("journal_file", "JournalFile", "str"),
|
|
21
20
|
]
|
|
22
21
|
|
|
@@ -58,15 +57,6 @@ class fluent_input(Container):
|
|
|
58
57
|
def data_file(self, value: str):
|
|
59
58
|
self.set_property_state("data_file", value)
|
|
60
59
|
|
|
61
|
-
@property
|
|
62
|
-
def enable_autosave(self) -> bool:
|
|
63
|
-
"""Set Fluent autosave frequency to System Coupling output control frequency to generate .flprj file."""
|
|
64
|
-
return self.get_property_state("enable_autosave")
|
|
65
|
-
|
|
66
|
-
@enable_autosave.setter
|
|
67
|
-
def enable_autosave(self, value: bool):
|
|
68
|
-
self.set_property_state("enable_autosave", value)
|
|
69
|
-
|
|
70
60
|
@property
|
|
71
61
|
def journal_file(self) -> str:
|
|
72
62
|
"""Set Fluent journal file."""
|
|
@@ -15,7 +15,6 @@ class record_interactions(Container):
|
|
|
15
15
|
property_names_types = [
|
|
16
16
|
("record_setup", "RecordSetup", "bool"),
|
|
17
17
|
("record_solution", "RecordSolution", "bool"),
|
|
18
|
-
("record_precision", "RecordPrecision", "int"),
|
|
19
18
|
]
|
|
20
19
|
|
|
21
20
|
@property
|
|
@@ -35,12 +34,3 @@ class record_interactions(Container):
|
|
|
35
34
|
@record_solution.setter
|
|
36
35
|
def record_solution(self, value: bool):
|
|
37
36
|
self.set_property_state("record_solution", value)
|
|
38
|
-
|
|
39
|
-
@property
|
|
40
|
-
def record_precision(self) -> int:
|
|
41
|
-
"""Set the digital precision of solution variable,1 <= N <= 16.."""
|
|
42
|
-
return self.get_property_state("record_precision")
|
|
43
|
-
|
|
44
|
-
@record_precision.setter
|
|
45
|
-
def record_precision(self, value: int):
|
|
46
|
-
self.set_property_state("record_precision", value)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This is an auto-generated file. DO NOT EDIT!
|
|
3
3
|
#
|
|
4
4
|
|
|
5
|
-
SHASH = "
|
|
5
|
+
SHASH = "8e81ea84cd8d53f78719455f1af3cb4574a4ca5d37da4b5269211b224fff8259"
|
|
6
6
|
|
|
7
7
|
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
8
8
|
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
"""Local implementation of the System Coupling ``GetErrors`` command, to be injected
|
|
2
24
|
into the ``setup`` hierarchy.
|
|
3
25
|
"""
|
ansys_systemcoupling_core-0.4.dev0/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
23
|
+
# This is the version we assume if no GetVersion query is available from
|
|
24
|
+
# the SyC server.
|
|
25
|
+
_FALLBACK_VERSION = "23.1"
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def get_syc_version(api) -> str:
|
|
29
|
+
"""Get the System Coupling version.
|
|
30
|
+
|
|
31
|
+
The version is returned in a string like ``"23.2"``.
|
|
32
|
+
|
|
33
|
+
System Coupling versions earlier than 23.2 (2023 R2) do not expose
|
|
34
|
+
the ``GetVersion`` query. Because the first version of the server
|
|
35
|
+
that PySystemCoupling is able to connect to is 23.1 (2023 R1), the
|
|
36
|
+
version is assumed to be 23.1 if no version query exists.
|
|
37
|
+
|
|
38
|
+
Parameters
|
|
39
|
+
----------
|
|
40
|
+
api : NativeApi
|
|
41
|
+
Object providing access to the System Coupling *native API* .
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
def clean_version_string(version_in: str) -> str:
|
|
45
|
+
year, _, release = version_in.partition(" ")
|
|
46
|
+
if len(year) == 4 and year.startswith("20") and release.startswith("R"):
|
|
47
|
+
try:
|
|
48
|
+
year = int(year[2:])
|
|
49
|
+
release = int(release[1:])
|
|
50
|
+
return f"{year}.{release}"
|
|
51
|
+
except:
|
|
52
|
+
pass
|
|
53
|
+
raise RuntimeError(
|
|
54
|
+
f"Version string {version_in} has invalid format (expect '20yy Rn')."
|
|
55
|
+
)
|
|
56
|
+
|
|
57
|
+
cmds = api.GetCommandAndQueryMetadata()
|
|
58
|
+
exists = any(cmd["name"] == "GetVersion" for cmd in cmds)
|
|
59
|
+
return clean_version_string(api.GetVersion()) if exists else _FALLBACK_VERSION
|
|
@@ -1,7 +1,30 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
from copy import deepcopy
|
|
2
24
|
from typing import Callable, Dict
|
|
3
25
|
|
|
4
26
|
from ansys.systemcoupling.core.participant.manager import ParticipantManager
|
|
27
|
+
from ansys.systemcoupling.core.participant.mapdl import MapdlSystemCouplingInterface
|
|
5
28
|
from ansys.systemcoupling.core.syc_version import compare_versions
|
|
6
29
|
from ansys.systemcoupling.core.util.yaml_helper import yaml_load_from_string
|
|
7
30
|
|
|
@@ -61,6 +84,12 @@ def _wrap_add_participant(
|
|
|
61
84
|
"support this form of 'add_participant'. Minimum version is '24.1'."
|
|
62
85
|
)
|
|
63
86
|
|
|
87
|
+
# special handling for mapdl session
|
|
88
|
+
if "ansys.mapdl.core.mapdl_grpc.MapdlGrpc" in str(type(session)):
|
|
89
|
+
return part_mgr.add_participant(
|
|
90
|
+
participant_session=MapdlSystemCouplingInterface(session)
|
|
91
|
+
)
|
|
92
|
+
|
|
64
93
|
if not hasattr(session, "system_coupling"):
|
|
65
94
|
raise RuntimeError(
|
|
66
95
|
"The 'participant_session' parameter does not provide a "
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
"""Source of adaptor API "root" classes and related functionality.
|
|
2
24
|
|
|
3
25
|
At runtime, the key function provided here is ``get_root``. This
|
|
@@ -21,7 +43,6 @@ pre-generated classes, runtime classes that are consistent with the System Coupl
|
|
|
21
43
|
server are constructed and returned.
|
|
22
44
|
"""
|
|
23
45
|
|
|
24
|
-
|
|
25
46
|
import hashlib
|
|
26
47
|
import importlib
|
|
27
48
|
import json
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
from copy import deepcopy
|
|
2
24
|
from typing import Dict, List, Tuple
|
|
3
25
|
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
from ansys.systemcoupling.core.adaptor.impl.get_syc_version import get_syc_version
|
|
2
24
|
from ansys.systemcoupling.core.adaptor.impl.static_info import (
|
|
3
25
|
get_dm_metadata,
|