No Normal Flow Boundary Condition #1103
Unanswered
hgpeterson
asked this question in
Q&A
Replies: 1 comment
-
You can define Note that for Hdiv-conforming spaces, e.g., Raviart-Thomas spaces, the implementation of such conditions is relatively easy as these can be imposed strongly. When you have other types of spaces (not sure if this is the case), such as, e.g., H1-conforming spaces discretized with Lagrangian FEs, the imposition of such conditions is more involved. In such a case, you may use, e.g., weak Nitsche boundary conditions, or Lagrange multipliers. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm wondering how one can implement a no-normal-flow boundary condition (
u ⋅ n = 0
) on a general mesh? It looks like the boundary condition was written out in the Darcy equation tutorial, but in the end, the linesjust set
u = 0
on the boundary. For this square geometry, it would be simple to setu ⋅ n = u₂ = 0
, but what about for a general mesh with the normal vectorn
a function of space?Thanks.
Beta Was this translation helpful? Give feedback.
All reactions