AVSucdReader#
- class AVSucdReader(*args, **kwargs)[source]#
AVSucdReader for .inp files.
Wraps vtkAVSucdReader.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> from pyvista import examples
>>> from pathlib import Path
>>> filename = examples.download_cells_nd(load=False)
>>> Path(filename).name
'cellsnd.ascii.inp'
>>> reader = pv.get_reader(filename)
>>> mesh = reader.read()
>>> mesh.plot(cpos='xy')