How a user code looks like (so far) #42
fdrmrc
announced in
Announcements
Replies: 0 comments 3 replies
-
@luca-heltai This is the interface we have so far. Maybe we should rename Do you think that DoFs distribution ( |
Beta Was this translation helpful? Give feedback.
2 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.
-
Assume we're given a vector of agglomerations. Each agglomeration is described by a vector of cells, so
cells_to_be_agglomerated
should be a vector of vectors. They can be given all in one shot or one vector after the other.In the following, I'll try to describe the public interface we have so far by commenting line by line what we have in the tests.
The following three lines mark internally masters and slaves and create BoundingBoxes for every agglomeration.
Then, DoFS are distributed in the triangulation on master and standard deal.II cells.
After that, for every master cell we store connectivity information about agglomerated faces. That is needed for doing
ah.reinit(cell,agglomerated_face)
in an assembly procedure.This is all we need to compute the sparsity pattern associated to a Discontinuous Galerkin discretization where some cells are agglomerated together.
Beta Was this translation helpful? Give feedback.
All reactions