The architecture of ParaView allows extending its functionality by creating plugins which can be loaded as dynamic libraries without recompiling ParaView.
The main mesh filetypes we are handling in our lab are
.ugrid
generated by AFLR3 and used widely within FUN3D,
.meshb
from INRIA Gamma Team and .su2
from the SU2 solver. Unfortunately there is no support for these from
Paraview. Fortunately there is documentation for creating readers (plugin
guides).
Here is the boilerplate for writting a reader for an unstructred grid based on the Paraview wiki.
[Read More]