Gridap.jl
Gridap.jl copied to clipboard
Error when using interval
Hello,
I was trying to solve the 1D, 2D and 3D Poisson equation using Gridap.jl. I used Gmsh for mesh construction. I get the following error:

The error only occurs in the 1D case. It happens when loading the mesh from the 1d.msh in line 22 of the attached Julia code ex03_1d.jl. You will find it with the corresponding 1d.geo, 1d.msh,Manifest.toml and Project.tomlfiles here:
error.zip
One workaround is to use the internal mesh capabilities of Gridap.jl
domain = (0,1)
partition = (4)
model = CartesianDiscreteModel(domain,partition)