-
Notifications
You must be signed in to change notification settings - Fork 7
Quick fixes #216
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
base: main
Are you sure you want to change the base?
Quick fixes #216
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -93,7 +93,7 @@ def show_elements(): | |||||
|
|
||||||
| # Elements not in the periodic table | ||||||
| # TODO: Implement generic Tear operator for elements instead of this: | ||||||
| register_element("Brezzi-Douglas-Fortin-Marini", "BDFM", 1, HDiv, "contravariant Piola", (1, None), simplices[1:]) | ||||||
| register_element("Brezzi-Douglas-Fortin-Marini", "BDFM", 1, HDiv, "contravariant Piola", (2, 2), ("triangle",)) | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| register_element("Crouzeix-Raviart", "CR", 0, L2, "identity", (1, None), simplices[1:]) | ||||||
| register_element("Discontinuous Raviart-Thomas", "DRT", 1, L2, "contravariant Piola", (1, None), simplices[1:]) | ||||||
| register_element("Kong-Mulder-Veldhuizen", "KMV", 0, H1, "identity", (1, None), simplices[1:]) | ||||||
|
|
@@ -106,7 +106,7 @@ def show_elements(): | |||||
|
|
||||||
| register_element("Nonconforming Arnold-Winther", "AWnc", 2, HDiv, "double contravariant Piola", (2, 2), ("triangle",)) | ||||||
| register_element("Conforming Arnold-Winther", "AWc", 2, HDiv, "double contravariant Piola", (3, None), ("triangle",)) | ||||||
| register_element("Hu-Zhang", "HZ", 2, HDiv, "double contravariant Piola", (3, None), ("triangle")) | ||||||
| register_element("Hu-Zhang", "HZ", 2, HDiv, "double contravariant Piola", (3, None), ("triangle",)) | ||||||
|
|
||||||
| # Zany elements | ||||||
| register_element("Bernardi-Raugel", "BR", 1, H1, "contravariant Piola", (1, None), simplices[1:]) | ||||||
|
|
@@ -148,7 +148,7 @@ def show_elements(): | |||||
| register_element("Real", "R", 0, HInf, "identity", (0, 0), any_cell + ("TensorProductCell",)) | ||||||
| register_element("Undefined", "U", 0, L2, "identity", (0, None), any_cell) | ||||||
| register_element("Radau", "Rad", 0, L2, "identity", (0, None), ("interval",)) | ||||||
| register_element("HDiv Trace", "HDivT", 0, L2, "identity", (0, None), any_cell) | ||||||
| register_element("HDiv Trace", "HDivT", 0, L2, "identity", (0, None), (None, *simplices[1:], *cubes[1:], "prism", "pyramid")) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. HDivT would be easy to implement on an interval. In fact I redid here #151 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we support anything on pyramids? |
||||||
|
|
||||||
| # Spectral elements. | ||||||
| register_element("Gauss-Legendre", "GL", 0, L2, "identity", (0, None), ("interval",)) | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also the right fix for this one is #181. We just need to update the regression tests