Hello all,
I encountered some problems when I would like to follow the Gridap tutorials to create a json file.
I have generated a msh file from Gmsh by clicking save_mesh button in it. And I exactly copy the right path and name of the msh file. But here is a LoadError: Msh file not found. This is what I would to mesh:
However, I am not certain whether the msh file is correct since it looks empty without any mesh if I open it from Gmsh directly.
Here is my code:
using Gridap
using Gridap.Io
using GridapGmsh
model = GmshDiscreteModel("<U+202A>C:/Users/15271/Downloads/gmsh-4.8.4-Windows64/gmsh-4.8.4-Windows64/test3.msh")
fn = "model.json"
to_json_file(model,fn)
And if I use
model = DiscreteModelFromFile("<U+202A>C:/Users/15271/Downloads/gmsh-4.8.4-Windows64/gmsh-4.8.4-Windows64/test3.msh")
There is: LoadError: This function is not yet implemented
Could any one give some suggestions?
Thank you very much!