Loading [MathJax]/extensions/tex2jax.js
Note: this is documentation for an old release. View the latest documentation at
docs.fenicsproject.org/basix/v0.9.0/cpp/e-raviart-thomas_8h_source.html
FEniCS 2023
Download
Documentation
Community
Citing
Donate
Basix 0.7.0
Home
Installation
Demos
C++ docs
Python docs
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
Functions
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
Typedefs
Enumerations
Classes
Class List
Class Index
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
o
p
s
t
u
v
w
x
~
Functions
a
b
c
d
e
f
g
h
i
l
m
o
p
s
t
u
v
w
x
~
Files
File List
•
All
Classes
Namespaces
Functions
Typedefs
Enumerations
Enumerator
Pages
cpp
basix
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
#include <concepts>
11
12
namespace
basix::element
13
{
22
template
<std::
float
ing_po
int
T>
23
FiniteElement<T>
create_rt
(
cell::type
celltype,
int
degree,
24
element::lagrange_variant
lvariant,
25
bool
discontinuous);
26
27
}
// namespace basix::element
basix::cell::type
type
Cell type.
Definition:
cell.h:21
basix::element
Interfaces for creating finite elements.
Definition:
e-brezzi-douglas-marini.h:13
basix::element::lagrange_variant
lagrange_variant
Variants of a Lagrange space that can be created.
Definition:
element-families.h:12
basix::element::create_rt
FiniteElement< T > create_rt(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition:
e-raviart-thomas.cpp:21