Hi,
I am studying the temperature distribution in isolated district heating pipes.
I have generated a mesh of the pipe in 2D with the program Gmsh and saved it as "DoublePipes2D.msh", and on my python code I have the following:
mesh = Mesh('DoublePipes2D.msh')
V = FunctionSpace(mesh, 'Lagrange', 1),
but when running the python code, I get an Error:
Error: Unable to open file.
Reason: Unknown file type (".msh") for file "DoublePipes2D.msh".
Where: This error was encountered inside File.cpp.
Which format should I use?
Thanks
Desirée