Gridap.jl icon indicating copy to clipboard operation
Gridap.jl copied to clipboard

Error when using interval

Open komorekm opened this issue 2 years ago • 1 comments

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: image

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

komorekm avatar Jun 27 '22 09:06 komorekm

One workaround is to use the internal mesh capabilities of Gridap.jl

domain = (0,1)
partition = (4)
model = CartesianDiscreteModel(domain,partition)

komorekm avatar Jun 27 '22 10:06 komorekm