@@ -119,7 +119,7 @@ def download_all_kinds_of_complexity_modal() -> str:
119119 Download an example result file and return the path of the file
120120
121121 >>> from ansys.dpf.core import examples
122- >>> path = examples.download_all_kinds_of_complexity_modal
122+ >>> path = examples.download_all_kinds_of_complexity_modal()
123123 >>> path
124124 'C:/Users/user/AppData/local/temp/modal_allKindOfComplexity.rst'
125125
@@ -144,9 +144,58 @@ def download_pontoon() -> str:
144144 Download an example result file and return the path of the file
145145
146146 >>> from ansys.dpf.core import examples
147- >>> path = examples.download_all_kinds_of_complexity_modal
147+ >>> path = examples.download_pontoon()
148148 >>> path
149- 'C:/Users/user/AppData/local/temp/modal_allKindOfComplexity .rst'
149+ 'C:/Users/user/AppData/local/temp/pontoon .rst'
150150
151151 """
152152 return _download_file ('docs' , 'pontoon.rst' )
153+
154+
155+ def download_multi_harmonic_result () -> str :
156+ """Download an example multi-harmonic result file and return the
157+ download path.
158+
159+ Examples files are downloaded to a persistent cache to avoid
160+ re-downloading the same file twice.
161+
162+ Returns
163+ -------
164+ str
165+ Path to the example file.
166+
167+ Examples
168+ --------
169+ Download an example result file and return the path of the file
170+
171+ >>> from ansys.dpf.core import examples
172+ >>> path = examples.download_multi_harmonic_result()
173+ >>> path
174+ 'C:/Users/user/AppData/local/temp/file_harmonic_5rpms.rst'
175+ """
176+ return _download_file ('harmonic' , 'file_harmonic_5rpms.rst' )
177+
178+
179+ def download_multi_stage_cyclic_result () -> str :
180+ """Download an example multi stage result file and return the
181+ download path.
182+
183+ Examples files are downloaded to a persistent cache to avoid
184+ re-downloading the same file twice.
185+
186+ Returns
187+ -------
188+ str
189+ Path to the example file.
190+
191+ Examples
192+ --------
193+ Download an example result file and return the path of the file
194+
195+ >>> from ansys.dpf.core import examples
196+ >>> path = examples.download_multi_stage_cyclic_result()
197+ >>> path
198+ 'C:/Users/user/AppData/local/temp/multistage.rst'
199+
200+ """
201+ return _download_file ('multistage' , 'multistage.rst' )
0 commit comments