Basix 0.4.0

Home     Installation     Demos     C++ docs     Python docs

e-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 "element-families.h"
9 #include "finite-element.h"
10 
11 namespace basix::element
12 {
21 FiniteElement create_rt(cell::type celltype, int degree,
22  element::lagrange_variant lvariant, bool discontinuous);
23 
24 } // namespace basix::element
basix::element::create_rt
FiniteElement create_rt(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition: e-raviart-thomas.cpp:21
basix::element::lagrange_variant
lagrange_variant
Variants of a Lagrange space that can be created.
Definition: element-families.h:11
basix::cell::type
type
Cell type.
Definition: cell.h:18
basix::element
Interfaces for creating finite elements.
Definition: e-brezzi-douglas-marini.h:11