one more question; if i use this code (for read a h5 file);
f = HDF5File('input_6x4_mesh.h5', 'r')
mesh = Mesh()
f.read(mesh, 'mesh')
V = FunctionSpace(mesh, 'Lagrange', 1)
i got this error again;
new_HDF5File expected 3 arguments, got 2
but if i add "mesh.mpi_comm()" for above code i get;
'module' object has no attribute 'mpi_comm'
any idea for this?
thanks