pyvista.examples.downloads.download_naca

Contents

pyvista.examples.downloads.download_naca#

download_naca(load=True)[source]#

Download NACA airfoil dataset in EnSight format.

Parameters:
loadbool, default: True

Load the dataset after downloading it when True. Set this to False and only the filename will be returned.

Returns:
pyvista.MultiBlock | str

DataSet or filename depending on load.

Examples

Plot the density of the air surrounding the NACA airfoil using the "jet" color map.

>>> from pyvista import examples
>>> import pyvista as pv
>>> cpos = pv.CameraPosition(
...     position=(-0.22, 0.0, 2.52),
...     focal_point=(0.43, 0.0, 0.0),
...     viewup=(0.0, 1.0, 0.0),
... )
>>> dataset = examples.download_naca()
>>> dataset.plot(cpos=cpos, cmap='jet')
../../../_images/pyvista-examples-downloads-download_naca-57958718b989a1f5_00_00.png

See also

Naca Dataset

See this dataset in the Dataset Gallery for more info.

Load data using a Reader

Example using this dataset.