-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding TraceFEMTests.jl #56
Conversation
Codecov Report
@@ Coverage Diff @@
## master #56 +/- ##
=======================================
Coverage 87.59% 87.59%
=======================================
Files 19 19
Lines 1758 1758
=======================================
Hits 1540 1540
Misses 218 218
Continue to review full report at Codecov.
|
In release 0.17 will be possible to build a FESpace on a (body fitted) triangulation |
ah ok i see. Probably not the right time for this PR then. |
We can add it to the current version for the moment. No problem with this. |
@@ -0,0 +1,64 @@ | |||
module TraceFEMTests | |||
|
|||
using Gridap |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is not being called by the CI
you need to include it in test/GridapEmbeddedTests/runtests.jl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fverdugo done
This PR relates relates to solving an equation ( in this case with no derivatives ) on a surface embedded in a volume. TraceFEM is used here for which the space used is the the space of traces of functions in the bulk FESpace on the boundary. Using this method, we can simply used the bulk FESpace restricted to cut cells, integrate along the
EmbeddedBoundary
and add some term for stability. This seems to work here, but in the new working branch the possibility to restrict aDiscreteModel
is gone. The warning says to use a restricted Triangulation - but we cannot define a space based on a Triangulation. What is the alternative here if we want a space which only exists on a surface ?