How does MFEM define the DOF functional / interpolation? #5264
Antoinemarteau
started this conversation in
General
Replies: 1 comment 2 replies
|
Hi @Antoinemarteau, In MFEM's Hope this helps, |
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.
The basis-functions documentation page suggests that the described polynomials are the actual (element local) shape functions, such that a FE function is a linear combination of them (once mapped and made global, etc.). This would mean that the interpolation into the FE space changes depending on the choice of polynomial, because a given function in the space will have different coefficient in different bases.
Lot's of FE libraries work differently: they define DOF (functionals), and compute the shape-function basis as the dual of the DOF basis as a change of basis from a given basis of the space (still, the choice of given initial/pre-basis is wide).
What is MFEM prescribing internally, the shape-functions (first paragraphs) or the DOFs (second) ?
All reactions