Note: this is documentation for an old release. View the latest documentation at
docs.fenicsproject.org/basix/v0.9.0/cpp/e-brezzi-douglas-marini_8h_source.html
FEniCS 2022
Download
Documentation
Community
Citing
Donate
Basix 0.4.1
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
s
t
v
Functions
a
c
d
e
f
g
i
l
m
n
o
p
s
t
v
Enumerations
Classes
Class List
Class Index
Class Members
All
a
b
c
d
e
f
g
h
i
l
m
n
o
p
t
u
v
w
x
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
t
u
v
w
x
~
Files
File List
•
All
Classes
Namespaces
Functions
Enumerations
Pages
cpp
basix
e-brezzi-douglas-marini.h
1
// Copyright (c) 2020 Chris Richardson & Matthew Scroggs
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_bdm
(
cell::type
celltype,
int
degree,
22
element::lagrange_variant
lvariant,
23
bool
discontinuous);
24
25
}
// namespace basix::element
basix::element::create_bdm
FiniteElement create_bdm(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition:
e-brezzi-douglas-marini.cpp:19
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
basix::FiniteElement
A finite element.
Definition:
finite-element.h:52