Which is the currently suggested approach to save in file HDF5 format?
I wish in particular to save multiple functions and multiple time steps to a single file. It seems to me that this is supported looking at the source in dolfin/io/HDF5File.h
, e.g.
HDF5File.write(const Function& u, const std::string name, double timestamp)
However, I am not able to visualize the resulting .h5 file in Paraview or Visit. Which viewer do you suggest?
I was used to use the File('u.xdmf')
interface, but if I understand correctly the advanced functionality of HDF5File
are not supported with this.
I had a look also to the unit tests in dolfin/test/io
, but I cannot visualize the resulting .h5
files in paraview. I suppose I miss something. May someone help?
Corrado