PExodusIIReader#
- class PExodusIIReader(*args, **kwargs)[source]#
PExodusIIReader reads parallel Exodus II and Nemesis files.
Parallel files use the extensions
.e.N.pand.n.N.p, whereNis the number of partitions andpis the partition index. Passing any single file from a series to this reader automatically reads every file in the series and loads the complete dataset. Wraps vtkPExodusIIReader.Added in version 0.49.0.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> from pyvista import examples
>>> filename = examples.download_parallel_exodus(load=False)
>>> reader = pv.get_reader(filename)
>>> mesh = reader.read()
>>> mesh.plot()