Basix 0.5.1

Home     Installation     Demos     C++ docs     Python docs

e-nce-rtc.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 "finite-element.h"
9 
10 namespace basix::element
11 {
20 FiniteElement create_rtc(cell::type celltype, int degree,
22  bool discontinuous);
23 
32 FiniteElement create_nce(cell::type celltype, int degree,
34  bool discontinuous);
35 
36 } // namespace basix::element
basix::element::lagrange_variant
lagrange_variant
Variants of a Lagrange space that can be created.
Definition: element-families.h:11
basix::element::create_rtc
FiniteElement create_rtc(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition: e-nce-rtc.cpp:18
basix::cell::type
type
Cell type.
Definition: cell.h:19
basix::element
Interfaces for creating finite elements.
Definition: e-brezzi-douglas-marini.h:11
basix::element::create_nce
FiniteElement create_nce(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition: e-nce-rtc.cpp:179