Hello
If we define two different domains with two different material properties, there are some elements in which are in both domains as shown below:
Two domains including inside and outside of the circle:
class Omega1(SubDomain):
def inside(self, x, on_boundary):
.
.
.
class Omega2(SubDomain):
def inside(self, x, on_boundary):
.
.
.
domains = CellFunction("size_t", mesh)
I want to know how FEniCS deals with this kind of situation because we have some elements with two different material properties that does not make sense. Could you please clarify it?
Thanks!