Basix
serendipity.h
1 // Copyright (c) 2020 Matthew Scroggs
2 // FEniCS Project
3 // SPDX-License-Identifier: MIT
4 
5 #pragma once
6 
7 #include "cell.h"
8 #include "finite-element.h"
9 
10 namespace basix
11 {
16 FiniteElement create_serendipity(cell::type celltype, int degree);
17 
22 FiniteElement create_serendipity_div(cell::type celltype, int degree);
23 
28 FiniteElement create_serendipity_curl(cell::type celltype, int degree);
29 } // namespace basix
type
Cell type.
Definition: cell.h:21
Placeholder.
Definition: brezzi-douglas-marini.h:10
FiniteElement create_serendipity_div(cell::type celltype, int degree)
Definition: serendipity.cpp:656
FiniteElement create_serendipity(cell::type celltype, int degree)
Definition: serendipity.cpp:551
int degree(int handle)
Degree.
Definition: basix.cpp:195
FiniteElement create_serendipity_curl(cell::type celltype, int degree)
Definition: serendipity.cpp:727