Adding variables to a System and specifying FE Type with multiple Orders #3075
-
Hi all, Let us say that I want to add a variable to a System. So, say that I want to add a Lagrange variable of Serendipity type (8 dofs) They are both Lagrange, they are both second order, Is the underlying mesh driving the choice somehow? I would assume not, Thanks for any clarification and sorry if I missed some detail, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Unfortunately that's not the case. Generally speaking, you can have a lower-order LAGRANGE FE on a higher-order geometric element, and in that case some nodes won't have DOFs. For example, the following LAGRANGE combinations are supported: As far as I know, it's not possible to declare a (SECOND, LAGRANGE) FE on a Quad9 and have it "drop" the DOF at the center node, giving you a serendipity discretization. |
Beta Was this translation helpful? Give feedback.
Unfortunately that's not the case. Generally speaking, you can have a lower-order LAGRANGE FE on a higher-order geometric element, and in that case some nodes won't have DOFs. For example, the following LAGRANGE combinations are supported:
✔️ SECOND on Quad8
✔️ SECOND on Quad9
✔️ FIRST on Quad4
✔️ FIRST on Quad8
✔️ FIRST on Quad9
As far as I know, it's not possible to declare a (SECOND, LAGRANGE) FE on a Quad9 and have it "drop" the DOF at the center node, giving you a serendipity discretization.