I would like to generate a mesh from a set of points defining a contour computed by a Julia program and then to solve a PDE on the generated mesh.
I found the package Gmsh.jl to use gmsh program to build a msh file.
Then I can read the msh file with GridapGmsh. Ok.
Is that possible to avoid creating a temporary file and directly call GmshDiscreteModel
on something from gmsh.model.mesh.generate
without writing the msh file ?
Thanks in advance