Tabulation Project basix
raviart-thomas.h
1 // Copyright (c) 2020 Chris Richardson
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_rt(cell::type celltype, int degree,
17  const std::string& = std::string());
18 
19 namespace dofperms
20 {
24 Eigen::MatrixXd triangle_rt_reflection(int degree);
25 
29 Eigen::MatrixXd triangle_rt_rotation(int degree);
30 
31 } // namespace dofperms
32 
33 } // namespace basix
type
Cell type.
Definition: cell.h:21
Eigen::MatrixXd triangle_rt_rotation(int degree)
Definition: raviart-thomas.cpp:157
Eigen::MatrixXd triangle_rt_reflection(int degree)
Definition: raviart-thomas.cpp:190
basix
Definition: basix.h:7
FiniteElement create_rt(cell::type celltype, int degree, const std::string &=std::string())
Definition: raviart-thomas.cpp:18
int degree(int handle)
Degree.
Definition: basix.cpp:50