Hi, I’ve been trying to understand what NGSolve does when integrating over boundary elements or facets if the integrand specifies u.Other() with no dummy argument. Is it simply ignored by the integrator? Many of the iTutorials seem to use Other() in this way.
For example, when using a symmetric interior penalty method for diffusion, I see three different boundary behaviors depending on my jump condition (with skeleton=True)
u - u.Other() # seems to give an unconstrained boundary condition
u - u.Other(bnd=u) # usually gives an unconstrained condition, but in some cases, we get instability at the boundary
u - u.Other(bnd=0) # tries to enforce a zero Dirichlet condition.
Also, I would very much like to know how to enforce a zero Neumann condition using this method in NGSolve.
Thanks!
Dow