From 05c4f7445c782d73663c203f0326adf108e87df0 Mon Sep 17 00:00:00 2001 From: Jorge Martinez Date: Wed, 4 Dec 2024 12:01:22 +0100 Subject: [PATCH] fix: downloads --- src/ansys/dpf/core/examples/__init__.py | 62 ++++++++++++++++++++++++- 1 file changed, 60 insertions(+), 2 deletions(-) diff --git a/src/ansys/dpf/core/examples/__init__.py b/src/ansys/dpf/core/examples/__init__.py index 913061712f..2d343fca6e 100644 --- a/src/ansys/dpf/core/examples/__init__.py +++ b/src/ansys/dpf/core/examples/__init__.py @@ -22,10 +22,39 @@ from .examples import get_example_required_minimum_dpf_version, find_files, fluid_axial_model from .downloads import ( + delete_downloads, + download_transient_result, download_all_kinds_of_complexity, - download_modal_frame, + download_all_kinds_of_complexity_modal, + download_pontoon, + download_multi_harmonic_result, download_multi_stage_cyclic_result, - download_transient_result, + download_sub_file, + download_msup_files_to_dict, + download_average_filter_plugin, + download_distributed_files, + download_fluent_multi_species, + download_fluent_multi_phase, + download_extrapolation_3d_result, + download_extrapolation_2d_result, + download_easy_statistics, + download_gltf_plugin, + download_hemisphere, + download_example_asme_result, + download_crankshaft, + download_piston_rod, + download_d3plot_beam, + download_binout_matsum, + download_binout_glstat, + download_cycles_to_failure, + download_modal_frame, + download_harmonic_clamped_pipe, + download_modal_cyclic, + download_fluent_axial_comp, + download_fluent_mixing_elbow_steady_state, + download_fluent_mixing_elbow_transient, + download_cfx_heating_coil, + download_cfx_mixing_elbow, find_simple_bar, find_static_rst, find_complex_rst, @@ -86,6 +115,7 @@ def __getattr__(name): __all__ = [ "download_all_kinds_of_complexity", + "download_all_kinds_of_complexity_modal", "get_example_required_minimum_dpf_version", "find_files", "fluid_axial_model", @@ -93,6 +123,13 @@ def __getattr__(name): "download_modal_frame", "download_transient_result", "download_multi_stage_cyclic_result", + "download_fluent_mixing_elbow_steady_state", + "download_fluent_multi_species", + "download_harmonic_clamped_pipe", + "download_binout_glstat", + "download_fluent_axial_comp", + "download_d3plot_beam", + "download_multi_harmonic_result", "find_simple_bar", "find_static_rst", "find_complex_rst", @@ -103,4 +140,25 @@ def __getattr__(name): "find_msup_transient", "find_simple_cyclic", "find_distributed_msup_folder", + "download_average_filter_plugin", + "delete_downloads", + "download_cfx_mixing_elbow", + "download_cfx_heating_coil", + "download_modal_cyclic", + "download_crankshaft", + "download_example_asme_result", + "download_piston_rod", + "download_fluent_mixing_elbow_transient", + "download_easy_statistics", + "download_gltf_plugin", + "download_fluent_multi_phase", + "download_pontoon", + "download_binout_matsum", + "download_cycles_to_failure", + "download_distributed_files", + "download_hemisphere", + "download_sub_file", + "download_extrapolation_3d_result", + "download_extrapolation_2d_result", + "download_msup_files_to_dict", ]