Basix 0.9.0.0

Home     Installation     Demos     C++ docs     Python docs

e-nedelec.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::floating_point T>
23 FiniteElement<T> create_nedelec(cell::type celltype, int degree,
24  lagrange_variant lvariant, bool discontinuous);
25 
34 template <std::floating_point T>
35 FiniteElement<T> create_nedelec2(cell::type celltype, int degree,
36  lagrange_variant lvariant, bool discontinuous);
37 
38 } // namespace basix::element
type
Cell type.
Definition: cell.h:21
Interfaces for creating finite elements.
Definition: e-brezzi-douglas-marini.h:13
lagrange_variant
Variants of a Lagrange space that can be created.
Definition: element-families.h:12
FiniteElement< T > create_nedelec2(cell::type celltype, int degree, lagrange_variant lvariant, bool discontinuous)
Definition: e-nedelec.cpp:300
FiniteElement< T > create_nedelec(cell::type celltype, int degree, lagrange_variant lvariant, bool discontinuous)
Definition: e-nedelec.cpp:171