FLUENTCFFReader#
- class FLUENTCFFReader(*args, **kwargs)[source]#
FLUENTCFFReader for .h5 files.
Wraps vtkFLUENTCFFReader.
Examples#
Download Python source code | Download Jupyter notebook
>>> import pyvista as pv
>>> from pyvista import examples
>>> filename = examples.download_room_cff(load=False)
>>> reader = pv.get_reader(filename)
>>> blocks = reader.read()
>>> mesh = blocks[0]
>>> mesh.plot(cpos='xy', scalars='SV_T')