ansys-systemcoupling-core 0.7.0__tar.gz → 0.11.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.
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/LICENSE +7 -7
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/PKG-INFO +42 -22
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/README.rst +21 -3
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/pyproject.toml +19 -18
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/__init__.py +27 -7
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/_version.py +1 -1
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +25 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +114 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/mapping_control.py +20 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/setup_root.py +1 -1
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +61 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/_add_participant.py +80 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/_clear_state.py +13 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/_solve.py +13 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/abort.py +39 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/activate_hidden.py +46 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_aerodamping_data_transfers.py +43 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_data_transfer.py +190 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_expression_function.py +61 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_flow_boundary_data_transfers.py +32 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_fsi_data_transfers.py +43 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_interface.py +77 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_named_expression.py +42 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_ordered_data_transfers.py +41 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_participant.py +177 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_reference_frame.py +40 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_thermal_data_transfers.py +43 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/add_transformation.py +102 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/analysis_control.py +333 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/apip.py +33 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/ascii_output.py +44 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/attribute_child.py +74 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/automatic_alignment_options.py +46 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/available_ports.py +40 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/avoid_data_reconstruction.py +56 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/case_root.py +62 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/clear_state.py +18 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/connect_ensight_dvs.py +41 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_interface_child.py +42 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant.py +23 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/coupling_participant_child.py +272 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/create_restart_point.py +28 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/data_transfer_child.py +195 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_snapshot.py +30 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/delete_transformation.py +42 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/dimensionality.py +96 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/execution_control.py +266 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/execution_control_1.py +24 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_child.py +36 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_function.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/expression_function_child.py +46 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/external_data_file.py +24 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/fluent_input.py +77 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/fmu_parameter_child.py +164 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/generate_input_file.py +53 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_add_data_transfer_group_commands.py +29 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_execution_command.py +30 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_machines.py +34 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_mode_shape_variables.py +29 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_region_names_for_participant.py +32 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_setup_summary.py +25 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_status_messages.py +52 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_supported_participant_types.py +13 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_thermal_data_transfer_options.py +32 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/get_transformation.py +43 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/global_stabilization.py +155 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/has_input_file_changed.py +36 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/import_system_coupling_input_file.py +36 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/initialize.py +27 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/instancing.py +25 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/instancing_child.py +114 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/interrupt.py +39 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/library.py +37 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/live_visualization.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/live_visualization_child.py +100 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/map.py +19 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/mapping_control.py +273 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open.py +107 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open_results_in_ensight.py +56 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/open_snapshot.py +37 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/output_control.py +134 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/parameter.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/parameter_child.py +60 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/partition_participants.py +148 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/properties.py +36 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/record_interactions.py +46 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/reference_frame.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/reference_frame_child.py +71 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/region.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/region_child.py +71 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/reload_expression_function_modules.py +14 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/results.py +89 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/save.py +53 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/save_snapshot.py +54 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/setup_root.py +243 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/show_plot.py +75 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/shutdown.py +25 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/side.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/side_child.py +56 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solution_control.py +127 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solution_root.py +134 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/solve.py +30 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/stabilization.py +157 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/step.py +57 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/transformation.py +21 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/transformation_child.py +62 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/type.py +39 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/unmapped_value_options.py +158 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/update_control.py +43 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/update_interfaces.py +19 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/update_participant.py +61 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/variable.py +20 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/variable_child.py +231 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/write_csv_chart_files.py +21 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/write_ensight.py +46 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_2/write_target_data.py +32 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/get_status_messages.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/get_syc_version.py +5 -2
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/injected_commands.py +8 -5
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/root_source.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/static_info.py +27 -6
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy.py +32 -5
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/syc_proxy_interface.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/impl/types.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/chart_datatypes.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/csv_chartdata.py +22 -7
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/live_csv_datasource.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/message_dispatcher.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/plot_functions.py +13 -5
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/plotdefinition_manager.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/charts/plotter.py +4 -3
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/client/grpc_client.py +140 -32
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/client/grpc_transport.py +476 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/client/services/command_query.py +4 -13
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/client/services/handle_rpc_error.py +64 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/client/services/output_stream.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/client/services/process.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/client/services/solution.py +4 -13
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/client/syc_container.py +169 -0
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/client/syc_process.py +212 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/client/variant.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/examples/__init__.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/examples/downloads.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/native_api/__init__.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/native_api/command_metadata.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/native_api/datamodel_metadata.py +4 -3
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/native_api/meta_wrapper.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/native_api/native_api.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/native_api/object_path.py +3 -2
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/participant/manager.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/participant/mapdl.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/participant/protocol.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/session.py +10 -3
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/syc_version.py +5 -2
- ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/util/assertion.py +38 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/util/file_transfer.py +24 -6
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/util/logging.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/util/name_util.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/util/pathstr.py +1 -1
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/util/state_keys.py +16 -7
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/util/yaml_helper.py +6 -6
- ansys_systemcoupling_core-0.7.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing.py +0 -23
- ansys_systemcoupling_core-0.7.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py +0 -62
- ansys_systemcoupling_core-0.7.0/src/ansys/systemcoupling/core/adaptor/api_25_1/update_participant.py +0 -61
- ansys_systemcoupling_core-0.7.0/src/ansys/systemcoupling/core/client/syc_container.py +0 -101
- ansys_systemcoupling_core-0.7.0/src/ansys/systemcoupling/core/client/syc_process.py +0 -158
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/_solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/abort.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/apip.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/attribute.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/case_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/initialize.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/instancing.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/library.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/output_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/region.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/region_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/results.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/save.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/side.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/side_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/step.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/type.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/update_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/variable.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_1/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/_solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/abort.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/apip.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/attribute.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/case_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_snapshots.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/initialize.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/instancing.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/library.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_results_in_en_sight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/output_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/region.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/region_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/results.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/save.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/side.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/side_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/step.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/type.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/update_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_23_2/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/_solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/abort.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/apip.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/case_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/initialize.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/library.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/output_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/region_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/results.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/save.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/side.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/side_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/step.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/type.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_1/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/_solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/abort.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/apip.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/attribute.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/case_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/connect_ensight_dvs.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/execution_control_1.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_supported_participant_types.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/initialize.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/instancing.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/instancing_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/library.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/mapping_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/output_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/properties.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/region.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/region_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/results.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/save.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/setup_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/side.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/side_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/step.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/type.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/update_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/update_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/variable.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_24_2/write_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/_solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/abort.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/activate_hidden.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_aerodamping_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_data_transfer_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_flow_boundary_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_fsi_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_interface_by_display_names.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_named_expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_ordered_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_thermal_data_transfers.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/add_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/analysis_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/apip.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/ascii_output.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/attribute.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/attribute_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/automatic_alignment_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/available_ports.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/avoid_data_reconstruction.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/case_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/clear_state.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/connect_ensight_dvs.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_interface.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_interface_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/coupling_participant_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/create_restart_point.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/data_transfer.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/data_transfer_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/delete_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/delete_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/dimensionality.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/execution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/execution_control_1.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_function.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/expression_function_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/external_data_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fluent_input.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fmu_parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/fmu_parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/generate_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_add_data_transfer_group_commands.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_execution_command.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_machines.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_mode_shape_variables.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_region_names_for_participant.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_setup_summary.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_status_messages.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_supported_participant_types.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_thermal_data_transfer_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/get_transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/global_stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/has_input_file_changed.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/import_system_coupling_input_file.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/initialize.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/interrupt.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/library.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/live_visualization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/live_visualization_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open_results_in_ensight.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/open_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/output_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/parameter.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/parameter_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/partition_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/properties.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/record_interactions.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reference_frame.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reference_frame_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/region.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/region_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/reload_expression_function_modules.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/results.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/save.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/save_snapshot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/show_plot.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/shutdown.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/side.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/side_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solution_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solution_root.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/solve.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/stabilization.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/start_participants.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/step.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/transformation.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/transformation_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/type.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/unmapped_value_options.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/update_control.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/variable.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/variable_child.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/write_csv_chart_files.py +0 -0
- {ansys_systemcoupling_core-0.7.0 → ansys_systemcoupling_core-0.11.0}/src/ansys/systemcoupling/core/adaptor/api_25_1/write_ensight.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
4
4
|
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
9
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
10
|
+
so, subject to the following conditions:
|
|
11
11
|
|
|
12
12
|
The above copyright notice and this permission notice shall be included in all
|
|
13
13
|
copies or substantial portions of the Software.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ansys-systemcoupling-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.11.0
|
|
4
4
|
Summary: A Python wrapper for Ansys System Coupling.
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
6
|
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
7
|
-
Requires-Python: >=3.10,<3.
|
|
7
|
+
Requires-Python: >=3.10,<3.14
|
|
8
8
|
Description-Content-Type: text/x-rst
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -16,10 +16,13 @@ Classifier: Operating System :: MacOS
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
License-File: LICENSE
|
|
19
21
|
Requires-Dist: ansys-api-systemcoupling==0.2.0
|
|
20
22
|
Requires-Dist: ansys-platform-instancemanagement~=1.0
|
|
23
|
+
Requires-Dist: docker>=7.1.0
|
|
21
24
|
Requires-Dist: grpcio>=1.30.0
|
|
22
|
-
Requires-Dist: grpcio-status>=1.30.0
|
|
25
|
+
Requires-Dist: grpcio-status>=1.30.0
|
|
23
26
|
Requires-Dist: googleapis-common-protos>=1.50.0
|
|
24
27
|
Requires-Dist: psutil>=5.7.0
|
|
25
28
|
Requires-Dist: pyyaml
|
|
@@ -27,27 +30,26 @@ Requires-Dist: appdirs>=1.4.0
|
|
|
27
30
|
Requires-Dist: importlib-metadata>=4.0
|
|
28
31
|
Requires-Dist: matplotlib>=3.8.2
|
|
29
32
|
Requires-Dist: build ; extra == "build"
|
|
30
|
-
Requires-Dist: black==
|
|
31
|
-
Requires-Dist: isort==
|
|
32
|
-
Requires-Dist: ansys-sphinx-theme==1.
|
|
33
|
+
Requires-Dist: black==25.11.0 ; extra == "classesgen"
|
|
34
|
+
Requires-Dist: isort==7.0.0 ; extra == "classesgen"
|
|
35
|
+
Requires-Dist: ansys-sphinx-theme==1.6.3 ; extra == "doc"
|
|
33
36
|
Requires-Dist: jupyter_sphinx==0.5.3 ; extra == "doc"
|
|
34
37
|
Requires-Dist: matplotlib ; extra == "doc"
|
|
35
|
-
Requires-Dist: numpydoc==1.
|
|
36
|
-
Requires-Dist: pypandoc==1.
|
|
38
|
+
Requires-Dist: numpydoc==1.9.0 ; extra == "doc"
|
|
39
|
+
Requires-Dist: pypandoc==1.16.2 ; extra == "doc"
|
|
37
40
|
Requires-Dist: pytest-sphinx==0.6.3 ; extra == "doc"
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist: sphinx-autobuild==2024.
|
|
40
|
-
Requires-Dist: sphinx-autodoc-typehints==
|
|
41
|
+
Requires-Dist: sphinx>=8.1.3 ; extra == "doc"
|
|
42
|
+
Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc"
|
|
43
|
+
Requires-Dist: sphinx-autodoc-typehints==3.1.0 ; extra == "doc"
|
|
41
44
|
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
42
|
-
Requires-Dist: sphinx-gallery==0.
|
|
43
|
-
Requires-Dist: sphinx-notfound-page==1.0
|
|
45
|
+
Requires-Dist: sphinx-gallery==0.19.0 ; extra == "doc"
|
|
46
|
+
Requires-Dist: sphinx-notfound-page==1.1.0 ; extra == "doc"
|
|
44
47
|
Requires-Dist: sphinxcontrib-websupport==2.0.0 ; extra == "doc"
|
|
45
48
|
Requires-Dist: sphinxemoji==0.3.1 ; extra == "doc"
|
|
46
|
-
Requires-Dist: ansys-fluent-core==0.
|
|
47
|
-
Requires-Dist: ansys-
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist: flake8==7.1.1 ; extra == "style"
|
|
49
|
+
Requires-Dist: ansys-fluent-core==0.35.0 ; extra == "doc"
|
|
50
|
+
Requires-Dist: ansys-mapdl-core==0.71.1 ; extra == "doc"
|
|
51
|
+
Requires-Dist: codespell==2.4.1 ; extra == "style"
|
|
52
|
+
Requires-Dist: flake8==7.3.0 ; extra == "style"
|
|
51
53
|
Requires-Dist: pytest ; extra == "tests"
|
|
52
54
|
Requires-Dist: pytest-cov ; extra == "tests"
|
|
53
55
|
Requires-Dist: psutil>=5.7.0 ; extra == "tests"
|
|
@@ -136,16 +138,34 @@ in this order:
|
|
|
136
138
|
|
|
137
139
|
* ``SYSC_ROOT``
|
|
138
140
|
* ``AWP_ROOT``
|
|
139
|
-
* ``
|
|
141
|
+
* ``AWP_ROOT252``
|
|
140
142
|
|
|
141
143
|
If a variable is set but does not refer to a valid installation, PySystemCoupling
|
|
142
144
|
fails at that point, rather than attempting to use the next variable.
|
|
143
145
|
|
|
144
|
-
In a standard user installation, the expectation is that only ``
|
|
146
|
+
In a standard user installation, the expectation is that only ``AWP_ROOT252`` is set.
|
|
145
147
|
|
|
146
148
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
147
149
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
|
148
150
|
|
|
151
|
+
**WARNING**
|
|
152
|
+
|
|
153
|
+
Note that the following applies only to the 25 R1 release of Ansys System Coupling.
|
|
154
|
+
|
|
155
|
+
There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
|
|
156
|
+
working in the gRPC server mode on which PySystemCoupling depends. A small patch
|
|
157
|
+
is available that may be applied to some of the Python files in the System Coupling
|
|
158
|
+
installation. This is provided in the ``patches/`` directory of this repository and will
|
|
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.
|
|
163
|
+
|
|
164
|
+
Alternatively, PySystemCoupling can be used with an earlier release of System Coupling by
|
|
165
|
+
setting the environment variable ``AWP_ROOT`` or specifying the version number as an
|
|
166
|
+
argument to the ``launch()`` function.
|
|
167
|
+
|
|
168
|
+
|
|
149
169
|
The System Coupling API is exposed to PySystemCoupling in two forms:
|
|
150
170
|
|
|
151
171
|
* A documented interface based on concrete Python classes, following Pythonic conventions
|
|
@@ -157,7 +177,7 @@ familiar with System Coupling, adjusting to this form, which is the recommended
|
|
|
157
177
|
However, if you are transitioning existing scripts, the native System Coupling API is made available
|
|
158
178
|
as a convenience.
|
|
159
179
|
|
|
160
|
-
|
|
180
|
+
**Note**
|
|
161
181
|
|
|
162
182
|
While most commands should work as expected via the native System Coupling API,
|
|
163
183
|
no guarantees can be given because of the nature of how it is exposed.
|
|
@@ -73,16 +73,34 @@ in this order:
|
|
|
73
73
|
|
|
74
74
|
* ``SYSC_ROOT``
|
|
75
75
|
* ``AWP_ROOT``
|
|
76
|
-
* ``
|
|
76
|
+
* ``AWP_ROOT252``
|
|
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_ROOT252`` is set.
|
|
82
82
|
|
|
83
83
|
(It is also possible to provide a different version number as an argument to the ``launch()``
|
|
84
84
|
function. This will affect which ``AWP_ROOT<version>`` environment variable is examined.)
|
|
85
85
|
|
|
86
|
+
**WARNING**
|
|
87
|
+
|
|
88
|
+
Note that the following applies only to the 25 R1 release of Ansys System Coupling.
|
|
89
|
+
|
|
90
|
+
There is an issue with the 25 R1 release of Ansys System Coupling that prevents it from
|
|
91
|
+
working in the gRPC server mode on which PySystemCoupling depends. A small patch
|
|
92
|
+
is available that may be applied to some of the Python files in the System Coupling
|
|
93
|
+
installation. This is provided in the ``patches/`` directory of this repository and will
|
|
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.
|
|
98
|
+
|
|
99
|
+
Alternatively, PySystemCoupling can be used with an earlier release of System Coupling by
|
|
100
|
+
setting the environment variable ``AWP_ROOT`` or specifying the version number as an
|
|
101
|
+
argument to the ``launch()`` function.
|
|
102
|
+
|
|
103
|
+
|
|
86
104
|
The System Coupling API is exposed to PySystemCoupling in two forms:
|
|
87
105
|
|
|
88
106
|
* A documented interface based on concrete Python classes, following Pythonic conventions
|
|
@@ -94,7 +112,7 @@ familiar with System Coupling, adjusting to this form, which is the recommended
|
|
|
94
112
|
However, if you are transitioning existing scripts, the native System Coupling API is made available
|
|
95
113
|
as a convenience.
|
|
96
114
|
|
|
97
|
-
|
|
115
|
+
**Note**
|
|
98
116
|
|
|
99
117
|
While most commands should work as expected via the native System Coupling API,
|
|
100
118
|
no guarantees can be given because of the nature of how it is exposed.
|
|
@@ -5,10 +5,10 @@ build-backend = "flit_core.buildapi"
|
|
|
5
5
|
[project]
|
|
6
6
|
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
|
|
7
7
|
name = "ansys-systemcoupling-core"
|
|
8
|
-
version = "0.
|
|
8
|
+
version = "0.11.0"
|
|
9
9
|
description = "A Python wrapper for Ansys System Coupling."
|
|
10
10
|
readme = "README.rst"
|
|
11
|
-
requires-python = ">=3.10,<3.
|
|
11
|
+
requires-python = ">=3.10,<3.14"
|
|
12
12
|
license = {file = "LICENSE"}
|
|
13
13
|
authors = [
|
|
14
14
|
{name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"},
|
|
@@ -19,8 +19,9 @@ 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
|
-
"grpcio-status>=1.30.0
|
|
24
|
+
"grpcio-status>=1.30.0",
|
|
24
25
|
"googleapis-common-protos>=1.50.0",
|
|
25
26
|
"psutil>=5.7.0",
|
|
26
27
|
"pyyaml",
|
|
@@ -39,6 +40,7 @@ classifiers = [
|
|
|
39
40
|
"Programming Language :: Python :: 3.10",
|
|
40
41
|
"Programming Language :: Python :: 3.11",
|
|
41
42
|
"Programming Language :: Python :: 3.12",
|
|
43
|
+
"Programming Language :: Python :: 3.13",
|
|
42
44
|
]
|
|
43
45
|
|
|
44
46
|
[project.optional-dependencies]
|
|
@@ -52,34 +54,33 @@ classesgen = [
|
|
|
52
54
|
# black and isort are called programmatically to keep generated code
|
|
53
55
|
# consistent with style elsewhere. We need to keep these versions in
|
|
54
56
|
# sync with the precommit dependencies.
|
|
55
|
-
"black==
|
|
56
|
-
"isort==
|
|
57
|
+
"black==25.11.0",
|
|
58
|
+
"isort==7.0.0",
|
|
57
59
|
]
|
|
58
60
|
doc = [
|
|
59
|
-
"ansys-sphinx-theme==1.
|
|
61
|
+
"ansys-sphinx-theme==1.6.3",
|
|
60
62
|
"jupyter_sphinx==0.5.3",
|
|
61
63
|
"matplotlib",
|
|
62
|
-
"numpydoc==1.
|
|
63
|
-
"pypandoc==1.
|
|
64
|
+
"numpydoc==1.9.0",
|
|
65
|
+
"pypandoc==1.16.2",
|
|
64
66
|
"pytest-sphinx==0.6.3",
|
|
65
|
-
"
|
|
66
|
-
"sphinx-autobuild==2024.
|
|
67
|
-
"sphinx-autodoc-typehints==
|
|
67
|
+
"sphinx>=8.1.3",
|
|
68
|
+
"sphinx-autobuild==2024.10.3",
|
|
69
|
+
"sphinx-autodoc-typehints==3.1.0",
|
|
68
70
|
"sphinx-copybutton==0.5.2",
|
|
69
|
-
"sphinx-gallery==0.
|
|
70
|
-
"sphinx-notfound-page==1.0
|
|
71
|
+
"sphinx-gallery==0.19.0",
|
|
72
|
+
"sphinx-notfound-page==1.1.0",
|
|
71
73
|
"sphinxcontrib-websupport==2.0.0",
|
|
72
74
|
"sphinxemoji==0.3.1",
|
|
73
75
|
|
|
74
76
|
# pyansys dependencies for sphinx gallery examples
|
|
75
|
-
"ansys-fluent-core==0.
|
|
76
|
-
"ansys-
|
|
77
|
-
"ansys-mapdl-core==0.68.4",
|
|
77
|
+
"ansys-fluent-core==0.35.0",
|
|
78
|
+
"ansys-mapdl-core==0.71.1",
|
|
78
79
|
]
|
|
79
80
|
style = [
|
|
80
81
|
# NB: ensure these remain synced with .pre-commit-config.yaml
|
|
81
|
-
"codespell==2.
|
|
82
|
-
"flake8==7.
|
|
82
|
+
"codespell==2.4.1",
|
|
83
|
+
"flake8==7.3.0",
|
|
83
84
|
]
|
|
84
85
|
tests = [
|
|
85
86
|
"pytest",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2023 -
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
2
|
# SPDX-License-Identifier: MIT
|
|
3
3
|
#
|
|
4
4
|
#
|
|
@@ -25,7 +25,7 @@ from typing import List
|
|
|
25
25
|
|
|
26
26
|
import appdirs
|
|
27
27
|
|
|
28
|
-
from ansys.systemcoupling.core.client.grpc_client import SycGrpc
|
|
28
|
+
from ansys.systemcoupling.core.client.grpc_client import SycGrpc, ConnectionType
|
|
29
29
|
from ansys.systemcoupling.core.session import Session
|
|
30
30
|
from ansys.systemcoupling.core.util.logging import LOG
|
|
31
31
|
|
|
@@ -41,6 +41,7 @@ __version__ = importlib_metadata.version(__name__.replace(".", "-"))
|
|
|
41
41
|
|
|
42
42
|
def launch(
|
|
43
43
|
*,
|
|
44
|
+
connection_type: ConnectionType = ConnectionType.SECURE_LOCAL,
|
|
44
45
|
port: int = None,
|
|
45
46
|
working_dir: str = None,
|
|
46
47
|
nprocs: int = None,
|
|
@@ -53,6 +54,12 @@ def launch(
|
|
|
53
54
|
|
|
54
55
|
Parameters
|
|
55
56
|
----------
|
|
57
|
+
connection_type: ConnectionType, optional
|
|
58
|
+
Specifies the type of connection to make with the launched server.
|
|
59
|
+
See :class:`ConnectionType` for available options.
|
|
60
|
+
Not all options are currently supported. The default is a secure
|
|
61
|
+
local connection. This will not work with some older versions or
|
|
62
|
+
older versions that have not been updated with service pack releases.
|
|
56
63
|
port : int, optional
|
|
57
64
|
Port on which to connect to System Coupling. The default is
|
|
58
65
|
``None``, in which case an available port is found and used.
|
|
@@ -72,9 +79,11 @@ def launch(
|
|
|
72
79
|
(The forms ``"24.1"`` and ``"24_1"`` are also acceptable.)
|
|
73
80
|
The version will be sought in the standard installation location. The
|
|
74
81
|
default is ``None``, which is equivalent to specifying
|
|
75
|
-
``"
|
|
76
|
-
variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set.
|
|
77
|
-
|
|
82
|
+
``"252"`` ("2025 R2" release), unless either of the environment
|
|
83
|
+
variables ``SYSC_ROOT`` or ``AWP_ROOT`` has been set. In that case,
|
|
84
|
+
the environment variable will be used to locate System Coupling.
|
|
85
|
+
If ``version`` is also provided, it will not be used to locate System
|
|
86
|
+
Coupling but it might still be used to infer some information about it.
|
|
78
87
|
start_output: bool, optional
|
|
79
88
|
Boolean to specify if the user wants to stream system coupling output.
|
|
80
89
|
The default is ``False``, in which case the output stream is kept hidden.
|
|
@@ -102,6 +111,7 @@ def launch(
|
|
|
102
111
|
rpc.start_pim_and_connect(version, start_output)
|
|
103
112
|
else:
|
|
104
113
|
rpc.start_and_connect(
|
|
114
|
+
connection_type=connection_type,
|
|
105
115
|
port=port,
|
|
106
116
|
working_dir=working_dir,
|
|
107
117
|
nprocs=nprocs,
|
|
@@ -163,7 +173,9 @@ def launch_remote(
|
|
|
163
173
|
return Session(rpc)
|
|
164
174
|
|
|
165
175
|
|
|
166
|
-
def connect(
|
|
176
|
+
def connect(
|
|
177
|
+
host: str, port: int, connection_type: ConnectionType = ConnectionType.SECURE_LOCAL
|
|
178
|
+
) -> Session: # pragma: no cover
|
|
167
179
|
"""Connect to an instance of System Coupling already running in server mode.
|
|
168
180
|
|
|
169
181
|
Parameters
|
|
@@ -172,6 +184,14 @@ def connect(host: str, port: int) -> Session: # pragma: no cover
|
|
|
172
184
|
IP address of the system running the System Coupling instance.
|
|
173
185
|
port : int
|
|
174
186
|
Port on which to connect to System Coupling.
|
|
187
|
+
connection_type: ConnectionType, optional
|
|
188
|
+
Specifies the type of connection to make with System Coupling.
|
|
189
|
+
See :class:`ConnectionType` for available options.
|
|
190
|
+
This must be compatible with the mode in which the server was
|
|
191
|
+
started. The default is a secure local connection. This will
|
|
192
|
+
not work with some older versions of System Coupling or versions
|
|
193
|
+
that have not been updated with service pack releases. In these
|
|
194
|
+
cases, an insecure connection type must be specified.
|
|
175
195
|
|
|
176
196
|
Returns
|
|
177
197
|
-------
|
|
@@ -180,7 +200,7 @@ def connect(host: str, port: int) -> Session: # pragma: no cover
|
|
|
180
200
|
remote System Coupling instance.
|
|
181
201
|
"""
|
|
182
202
|
rpc = SycGrpc()
|
|
183
|
-
rpc.connect(host, port)
|
|
203
|
+
rpc.connect(host, port, connection_type)
|
|
184
204
|
syc = Session(rpc)
|
|
185
205
|
return syc
|
|
186
206
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
from .instancing_child import instancing_child
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class instancing(NamedContainer[instancing_child]):
|
|
11
|
+
"""
|
|
12
|
+
Define instancing for an interface side.
|
|
13
|
+
|
|
14
|
+
Available when cylindrical geometry instancing has been added to
|
|
15
|
+
the data model.
|
|
16
|
+
|
|
17
|
+
``RotationAxis`` controls how the axis of rotation is defined.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
syc_name = "Instancing"
|
|
21
|
+
|
|
22
|
+
child_object_type: instancing_child = instancing_child
|
|
23
|
+
"""
|
|
24
|
+
child_object_type of instancing.
|
|
25
|
+
"""
|
ansys_systemcoupling_core-0.11.0/src/ansys/systemcoupling/core/adaptor/api_25_1/instancing_child.py
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
#
|
|
2
|
+
# This is an auto-generated file. DO NOT EDIT!
|
|
3
|
+
#
|
|
4
|
+
|
|
5
|
+
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class instancing_child(Container):
|
|
9
|
+
"""
|
|
10
|
+
Define instancing for an interface side.
|
|
11
|
+
|
|
12
|
+
Available when cylindrical geometry instancing has been added to
|
|
13
|
+
the data model.
|
|
14
|
+
|
|
15
|
+
``RotationAxis`` controls how the axis of rotation is defined.
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
syc_name = "child_object_type"
|
|
19
|
+
|
|
20
|
+
property_names_types = [
|
|
21
|
+
("rotation_axis", "RotationAxis", "str"),
|
|
22
|
+
("instances_in_full_circle", "InstancesInFullCircle", "int"),
|
|
23
|
+
("instances_for_mapping", "InstancesForMapping", "int"),
|
|
24
|
+
("reference_frame", "ReferenceFrame", "str"),
|
|
25
|
+
("axis", "Axis", "str"),
|
|
26
|
+
("axis_from", "AxisFrom", "RealVectorType"),
|
|
27
|
+
("axis_to", "AxisTo", "RealVectorType"),
|
|
28
|
+
("rotational_offset", "RotationalOffset", "RealType"),
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
@property
|
|
32
|
+
def rotation_axis(self) -> str:
|
|
33
|
+
"""UNDOCUMENTED"""
|
|
34
|
+
return self.get_property_state("rotation_axis")
|
|
35
|
+
|
|
36
|
+
@rotation_axis.setter
|
|
37
|
+
def rotation_axis(self, value: str):
|
|
38
|
+
self.set_property_state("rotation_axis", value)
|
|
39
|
+
|
|
40
|
+
@property
|
|
41
|
+
def instances_in_full_circle(self) -> int:
|
|
42
|
+
"""Total number of instances (including the first instance) in
|
|
43
|
+
a full 360 degree rotation of the participant mesh. This value
|
|
44
|
+
includes the reference instance (with the participant mesh).
|
|
45
|
+
All instances defined for the instancing object have identical
|
|
46
|
+
angles."""
|
|
47
|
+
return self.get_property_state("instances_in_full_circle")
|
|
48
|
+
|
|
49
|
+
@instances_in_full_circle.setter
|
|
50
|
+
def instances_in_full_circle(self, value: int):
|
|
51
|
+
self.set_property_state("instances_in_full_circle", value)
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
def instances_for_mapping(self) -> int:
|
|
55
|
+
"""Number of instances to be included in the mapping when instancing
|
|
56
|
+
is applied.
|
|
57
|
+
|
|
58
|
+
Required when the number of instances to be used for mapping does
|
|
59
|
+
not match the number of instances in a full circle. Default
|
|
60
|
+
assumes a 360 degree rotation of the participant mesh. This value
|
|
61
|
+
includes the reference instance (with the participant mesh)."""
|
|
62
|
+
return self.get_property_state("instances_for_mapping")
|
|
63
|
+
|
|
64
|
+
@instances_for_mapping.setter
|
|
65
|
+
def instances_for_mapping(self, value: int):
|
|
66
|
+
self.set_property_state("instances_for_mapping", value)
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
def reference_frame(self) -> str:
|
|
70
|
+
"""Reference frame that defines the orientation of the instancing.
|
|
71
|
+
|
|
72
|
+
Rotation will be around the z-axis of the reference frame,
|
|
73
|
+
following the right-hand rule."""
|
|
74
|
+
return self.get_property_state("reference_frame")
|
|
75
|
+
|
|
76
|
+
@reference_frame.setter
|
|
77
|
+
def reference_frame(self, value: str):
|
|
78
|
+
self.set_property_state("reference_frame", value)
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
def axis(self) -> str:
|
|
82
|
+
"""Principal axis of rotation for instancing"""
|
|
83
|
+
return self.get_property_state("axis")
|
|
84
|
+
|
|
85
|
+
@axis.setter
|
|
86
|
+
def axis(self, value: str):
|
|
87
|
+
self.set_property_state("axis", value)
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
def axis_from(self) -> RealVectorType:
|
|
91
|
+
"""Define the starting point of a user-defined axis."""
|
|
92
|
+
return self.get_property_state("axis_from")
|
|
93
|
+
|
|
94
|
+
@axis_from.setter
|
|
95
|
+
def axis_from(self, value: RealVectorType):
|
|
96
|
+
self.set_property_state("axis_from", value)
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
def axis_to(self) -> RealVectorType:
|
|
100
|
+
"""Define the end point of a user-defined axis."""
|
|
101
|
+
return self.get_property_state("axis_to")
|
|
102
|
+
|
|
103
|
+
@axis_to.setter
|
|
104
|
+
def axis_to(self, value: RealVectorType):
|
|
105
|
+
self.set_property_state("axis_to", value)
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
def rotational_offset(self) -> RealType:
|
|
109
|
+
"""Offset (in radians) about the rotation axis for the first instance"""
|
|
110
|
+
return self.get_property_state("rotational_offset")
|
|
111
|
+
|
|
112
|
+
@rotational_offset.setter
|
|
113
|
+
def rotational_offset(self, value: RealType):
|
|
114
|
+
self.set_property_state("rotational_offset", value)
|
|
@@ -42,6 +42,8 @@ class mapping_control(Container):
|
|
|
42
42
|
("rbf_shape_parameter", "RBFShapeParameter", "RealType"),
|
|
43
43
|
("rbf_linear_correction", "RBFLinearCorrection", "bool"),
|
|
44
44
|
("rbf_clipping_scale", "RBFClippingScale", "RealType"),
|
|
45
|
+
("rbf_taper_init_factor", "RBFTaperInitFactor", "RealType"),
|
|
46
|
+
("rbf_max_extrapolation_factor", "RBFMaxExtrapolationFactor", "RealType"),
|
|
45
47
|
("clipping", "Clipping", "bool"),
|
|
46
48
|
]
|
|
47
49
|
|
|
@@ -229,6 +231,24 @@ class mapping_control(Container):
|
|
|
229
231
|
def rbf_clipping_scale(self, value: RealType):
|
|
230
232
|
self.set_property_state("rbf_clipping_scale", value)
|
|
231
233
|
|
|
234
|
+
@property
|
|
235
|
+
def rbf_taper_init_factor(self) -> RealType:
|
|
236
|
+
"""Length scale factor at which to start tapering the extrapolative effect for profile-preserving mapping."""
|
|
237
|
+
return self.get_property_state("rbf_taper_init_factor")
|
|
238
|
+
|
|
239
|
+
@rbf_taper_init_factor.setter
|
|
240
|
+
def rbf_taper_init_factor(self, value: RealType):
|
|
241
|
+
self.set_property_state("rbf_taper_init_factor", value)
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
def rbf_max_extrapolation_factor(self) -> RealType:
|
|
245
|
+
"""Maximum factor allowed to extrapolate for profile-preserving mapping."""
|
|
246
|
+
return self.get_property_state("rbf_max_extrapolation_factor")
|
|
247
|
+
|
|
248
|
+
@rbf_max_extrapolation_factor.setter
|
|
249
|
+
def rbf_max_extrapolation_factor(self, value: RealType):
|
|
250
|
+
self.set_property_state("rbf_max_extrapolation_factor", value)
|
|
251
|
+
|
|
232
252
|
@property
|
|
233
253
|
def clipping(self) -> bool:
|
|
234
254
|
"""Controls whether to clip target values to the min/max of the local source values for profile-preserving transfers."""
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# This is an auto-generated file. DO NOT EDIT!
|
|
3
3
|
#
|
|
4
4
|
|
|
5
|
-
SHASH = "
|
|
5
|
+
SHASH = "b2cdc470c64043e9f6c2aed2ca2c63cf2ada211ba396b1c9aa4ebadb357d3b91"
|
|
6
6
|
|
|
7
7
|
from ansys.systemcoupling.core.adaptor.impl.types import *
|
|
8
8
|
|
|
@@ -0,0 +1,61 @@
|
|
|
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 update_participant(Command):
|
|
9
|
+
"""
|
|
10
|
+
Given the name of a participant, updates the state of the participant.
|
|
11
|
+
|
|
12
|
+
Available for DEFAULT-SRV, CFD-SRV, MECH-SRV, and SCDT-SRV and
|
|
13
|
+
AEDT participants.
|
|
14
|
+
|
|
15
|
+
As part of the update, System Coupling updates all regions, variables,
|
|
16
|
+
and parameters defined in the participant, including all variable
|
|
17
|
+
attributes. Regions, variables, and parameters may be added to the
|
|
18
|
+
participant but may not be removed.
|
|
19
|
+
|
|
20
|
+
You may specify an input file using an optional argument. If an input
|
|
21
|
+
file is not provided, then the original input file will be reimported.
|
|
22
|
+
|
|
23
|
+
Note: AEDT participants must be updated using an scp file.
|
|
24
|
+
|
|
25
|
+
If the update process fails, System Coupling displays an error. In this
|
|
26
|
+
case, you can either update the setup in the participant application to
|
|
27
|
+
remove any issues with the update process or delete the participant
|
|
28
|
+
from the analysis and then re-add it using the updated input file.
|
|
29
|
+
|
|
30
|
+
Parameters
|
|
31
|
+
----------
|
|
32
|
+
participant_name : str
|
|
33
|
+
Participant name. Must be the name of an existing participant.
|
|
34
|
+
input_file : str, optional
|
|
35
|
+
Name of the input file for the participant to be added.
|
|
36
|
+
Currently supported formats are SCP files, mechanical server
|
|
37
|
+
(\*.rst) files, cfd server (\*.csv) files, and system coupling
|
|
38
|
+
data server (\*.scdt/axdt/csv) files.
|
|
39
|
+
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
syc_name = "UpdateParticipant"
|
|
43
|
+
|
|
44
|
+
argument_names = ["participant_name", "input_file"]
|
|
45
|
+
|
|
46
|
+
class participant_name(String):
|
|
47
|
+
"""
|
|
48
|
+
Participant name. Must be the name of an existing participant.
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
syc_name = "ParticipantName"
|
|
52
|
+
|
|
53
|
+
class input_file(String):
|
|
54
|
+
"""
|
|
55
|
+
Name of the input file for the participant to be added.
|
|
56
|
+
Currently supported formats are SCP files, mechanical server
|
|
57
|
+
(\*.rst) files, cfd server (\*.csv) files, and system coupling
|
|
58
|
+
data server (\*.scdt/axdt/csv) files.
|
|
59
|
+
"""
|
|
60
|
+
|
|
61
|
+
syc_name = "InputFile"
|