download_tecplot_ascii#
- download_tecplot_ascii(load: bool = True) MultiBlock | str[source]#
Download the single block ASCII Tecplot dataset.
Originally downloaded from Paul Bourke’s Sample file
- Parameters:
- Returns:
- output
pyvista.MultiBlock|str Multiblock format with only 1 data block, simple geometric shape. If
loadisFalse, then the path of the example Tecplot file is returned.
- output
Examples#
Download Python source code | Download Jupyter notebook
Plot the example Tecplot dataset.
>>> from pyvista import examples
>>> import pyvista as pv
>>> dataset = examples.download_tecplot_ascii()
>>> dataset.plot()
See also
- Tecplot Ascii Dataset
See this dataset in the Dataset Gallery for more info.