Basix 0.8.0

Home     Installation     Demos     C++ docs     Python docs

Loading...
Searching...
No Matches
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#include <concepts>
10
11namespace basix::element
12{
21template <std::floating_point T>
22FiniteElement<T> create_rtc(cell::type celltype, int degree,
24 bool discontinuous);
25
34template <std::floating_point T>
35FiniteElement<T> create_nce(cell::type celltype, int degree,
37 bool discontinuous);
38
39} // 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_nce(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition: e-nce-rtc.cpp:162
FiniteElement< T > create_rtc(cell::type celltype, int degree, element::lagrange_variant lvariant, bool discontinuous)
Definition: e-nce-rtc.cpp:20