-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
20 node quadratic hexahedral element #377
Conversation
The convergence rate seems to be lower than I expect; I'm not sure what causes this. Need to investigate a bit further. Most likely an error in the implementation. |
Added several new tests but couldn't find the culprit: still the new element converges as O(h^1/2) in H^1 norm and O(h) in L^2 norm which isn't O(h^2) and O(h^3) as I'd expect. |
Figured out that there could still be a hidden bug in the facet->edge expansion. Added a test in the latest commit. |
Yes! Figured it out. The facet->edge expansion that was fixed in #83 was working only in case of tetrahedral elements. |
Now we have the first quadratic hexahedral element. Do we still need the 27 node element? Maybe for Stokes? |
Well we probably want it for completeness anyway and yes for Stokes, I think. |
Sure. That can be my next follow up task. |
This begins the work on #327 .
Edit: Includes also a feature for merging two meshes via
__add__
.