-
I didn't quite get it yet what map_to_cell should look like for a tetrahedron. Could an example be provided for how to map_to_cell for tet? |
Beta Was this translation helpful? Give feedback.
Answered by
mscroggs
Sep 18, 2023
Replies: 1 comment
-
If you want an explanation of what mathematical operation the map does, it's written down here. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mscroggs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
element.map_to_cell(vs,element.get_basis_functions())
is the correct usage. This will return the basis functions mapped to the cell definite by the verticesvs
. Try doingprint(element.map_to_cell(vs,element.get_basis_functions()))
.If you want an explanation of what mathematical operation the map does, it's written down here.