Replies: 1 comment 3 replies
-
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi first, of all thanks for scikit-fem! It is really a great package :)
I try to dig and learn into the FEM, but I have few questions regarding some uses.
Why in this code
u0i
will get a shape(#elems, 3)
.I get that
u0t
will have a shape(25,)
because it will be projected on the nodes of the mesh.But I don't understand with
u0i
has a 3-shape (here(16,3)
. Since the basis is defined by ElementQuad1, should it not be a(16,4)
?I saw in the code the use as
ElementDG
like in example 46 as:What is the purpose of
ElementDG
and why is it used like that here?Thank in advance for your help,
And thanks again for the amazing work on scikit-fem!
Lucas
Beta Was this translation helpful? Give feedback.
All reactions