-
Notifications
You must be signed in to change notification settings - Fork 97
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
Geometry #662
Geometry #662
Conversation
to the FESpacesTests folder.
Also cosmetic changes in PoissonLagrangeMultiplierTests
Some remaining tasks associated with this PR are detailed in #660 |
Codecov Report
@@ Coverage Diff @@
## release_0.17 #662 +/- ##
================================================
- Coverage 87.73% 83.81% -3.93%
================================================
Files 134 136 +2
Lines 14369 14960 +591
================================================
- Hits 12607 12538 -69
- Misses 1762 2422 +660
Continue to review full report at Codecov.
|
Major refactoring on how data is transferred between different triangulations.
Changed
The
Triangulation
interface has changed. Now aTriangulation
object is understood as computational domain defined from aDiscreteModel
. I.e., from the same FE mesh (the discrete model), we can extract different domains (several triangulations) like the boundary, the interior, or some portion of the interior or the boundary. These can be potentially used both for intergration (like before) but also for interpolation (except for unfitted triangulations). In consequence, types likeBoundaryDiscreteModel
orExtendedDiscreteModel
are no longer needed.