diff --git a/src/ansys/dpf/core/examples/__init__.py b/src/ansys/dpf/core/examples/__init__.py index 913061712f..4fb9076874 100644 --- a/src/ansys/dpf/core/examples/__init__.py +++ b/src/ansys/dpf/core/examples/__init__.py @@ -22,10 +22,33 @@ from .examples import get_example_required_minimum_dpf_version, find_files, fluid_axial_model from .downloads import ( + download_cycles_to_failure, download_all_kinds_of_complexity, + download_all_kinds_of_complexity_modal, + download_fluent_mixing_elbow_steady_state, + download_binout_glstat, + download_fluent_axial_comp, + download_fluent_multi_species, + download_fluent_mixing_elbow_transient, + download_easy_statistics, + download_gltf_plugin, + download_d3plot_beam, + download_harmonic_clamped_pipe, + 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_modal_frame, download_multi_stage_cyclic_result, + download_multi_harmonic_result, + download_fluent_multi_phase, + download_pontoon, download_transient_result, + download_binout_matsum, find_simple_bar, find_static_rst, find_complex_rst, @@ -36,6 +59,8 @@ find_msup_transient, find_simple_cyclic, find_distributed_msup_folder, + download_distributed_files, + download_hemisphere, ) @@ -86,6 +111,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 +119,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 +136,21 @@ 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", ]