from dolfinx.mesh import create_rectangle, GhostMode
import numpy as np
from mpi4py import MPI
domain = create_rectangle(MPI.COMM_WORLD,
[np.array([-6, -6, 0]),
np.array([6, 6, 0])],
[100, 100], GhostMode.none)
I’m driving myself crazy at this point. This is the error I get:
Cannot interpret ‘dolfinx.cpp.mesh.GhostMode.none’ as a data type
I don’t know enough to know what the error is trying to tell me.
running 0.8.0 on Mac Book Pro M3 through VSCode.