TecplotReader#
- class TecplotReader(*args, **kwargs)[source]#
Tecplot Reader for ascii .dat files.
Wraps vtkTecplotReader.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> from pyvista import examples
>>> filename = examples.download_tecplot_ascii(load=False)
>>> reader = pv.get_reader(filename)
>>> mesh = reader.read()
>>> mesh[0].plot()