I usually create and mark my geometries through GMSH and upload them to my script. However, in order to create an MWE for a problem, I am trying to create a 2-layered annulus geometry in-script. But I ran into an error regarding marking my boundaries.
Here is the script:
C1 = Circle(Point(0, 0),1)
C2 = Circle(Point(0, 0),2)
C3 = Circle(Point(0, 0),3)
C_1 = C2 - C1
C_2 = C3 - C2
C = C_1 + C_2
mesh = generate_mesh(C, 100)
def inner(x, on_boundary):
return near(x[0]**2 + x[1]**2, 1) and on_boundary
def middle(x, on_boundary):
return near(x[0]**2 + x[1]**2, 4) and on_boundary
def middle(x, on_boundary):
return near(x[0]**2 + x[1]**2, 9) and on_boundary
class disk(SubDomain):
def inside(self, x, on_boundary):
return True
boundary_markers = MeshFunction("size_t", mesh, mesh.topology().dim()-1, 0)
surface_markers = MeshFunction("size_t", mesh, mesh.topology().dim(), 0)
inner().mark(boundary_markers, 1)
This raises the error:
inner().mark(boundary_markers, 1)
TypeError: inner() missing 2 required positional arguments: 'x' and 'on_boundary'
What’s the error in here and how to fix it? What are the arguments that must be passed on to inner()?