Click here to read what the information on this page means.
This element is implemented in
Bempp and
Symfem .
↓ Show implementation detail ↓↑ Hide implementation detail ↑Bempp | "RBC" ↓ Show Bempp examples ↓↑ Hide Bempp examples ↑Before running this example, you must install Bempp: pip3 install numba scipy meshio pip3 install bempp-cl This element can then be created with the following lines of Python: import bempp.api grid = bempp.api.shapes.regular_sphere(1)
# Create rotated Buffa-Christiansen degree 1 element = bempp.api.function_space(grid, "RBC", 0)
# Create rotated Buffa-Christiansen degree 1 element = bempp.api.function_space(grid, "RBC", 0)
# Create rotated Buffa-Christiansen degree 1 element = bempp.api.function_space(grid, "RBC", 0) |
Symfem | "RBC" ↓ Show Symfem examples ↓↑ Hide Symfem examples ↑Before running this example, you must install Symfem: pip3 install symfem This element can then be created with the following lines of Python: import symfem
# Create rotated Buffa-Christiansen degree 1 on a dual polygon(4) element = symfem.create_element("dual polygon(4)", "RBC", 1)
# Create rotated Buffa-Christiansen degree 1 on a dual polygon(5) element = symfem.create_element("dual polygon(5)", "RBC", 1)
# Create rotated Buffa-Christiansen degree 1 on a dual polygon(6) element = symfem.create_element("dual polygon(6)", "RBC", 1) This implementation is used to compute the examples below and verify other implementations. |
- Buffa, Annalisa and Christiansen, Snorre H. A dual finite element complex on the barycentric refinement, Mathematics of Computation 76, 1743–1769, 2007. [BibTeX]
Element added | 24 January 2021 |
Element last updated | 16 October 2024 |