Dear all,
I haven't found the answer in the book, so I am resorting to the forum. I have a domain, and, apart from solving a problem on it, I'd like to perform some integrations over it, and over its subdomains.
So, If I have dx
and ds
, like in the code below, how can I perform an integration over ds(1)
?
# Variational form
a = inner(sigma(u), eps(v)) * dx
L = inner(f, v) * dx + 1*inner(force_vector, v) * ds(1)
The bigger picture is that I will implement an iterative solver, and at each iteration, I need to compute some properties on the domain and on its parts.
Thanks!