Unusual boundary condition form #3434
-
I have an unusual boundary condition which I am not sure how to implement in ULF. Please can you help? The equation in the interior is just a Poisson like equation in 2D. The boundary condition requires integration over the boundary twice, i.e. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
This is something that isn’t in the usual paradigm because it would result in a dense matrix that can’t be formed by the usual fem assembly strategy. Did it come from the reduction of a larger system? Usually in fem (and grid based discretisation in general) it is better to work with the larger system and deal with the reduction in the iterative solver. |
Beta Was this translation helpful? Give feedback.
-
For a large domain:
To make the double integral possible, we first need to propose how it would actually be implemented. There has been some work on coupling the way you describe by Rob Kirby: |
Beta Was this translation helpful? Give feedback.
For a large domain:
To make the d…