Basix 0.8.0

Home     Installation     Demos     C++ docs     Python docs

Loading...
Searching...
No Matches
polyset.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 "mdspan.hpp"
9#include <array>
10#include <concepts>
11#include <utility>
12#include <vector>
13
132{
133
135enum class type
136{
137 standard = 0,
138 macroedge = 1,
139};
140
179template <std::floating_point T>
180std::pair<std::vector<T>, std::array<std::size_t, 3>>
181tabulate(cell::type celltype, polyset::type ptype, int d, int n,
182 MDSPAN_IMPL_STANDARD_NAMESPACE::mdspan<
183 const T, MDSPAN_IMPL_STANDARD_NAMESPACE::dextents<std::size_t, 2>>
184 x);
185
227template <std::floating_point T>
228void tabulate(
229 MDSPAN_IMPL_STANDARD_NAMESPACE::mdspan<
230 T, MDSPAN_IMPL_STANDARD_NAMESPACE::dextents<std::size_t, 3>>
231 P,
232 cell::type celltype, polyset::type ptype, int d, int n,
233 MDSPAN_IMPL_STANDARD_NAMESPACE::mdspan<
234 const T, MDSPAN_IMPL_STANDARD_NAMESPACE::dextents<std::size_t, 2>>
235 x);
236
243int dim(cell::type cell, polyset::type ptype, int d);
244
250int nderivs(cell::type cell, int d);
251
259 polyset::type type2);
260
268 cell::type restriction_cell);
269
270} // namespace basix::polyset
type
Cell type.
Definition: cell.h:21
Polynomial expansion sets.
Definition: polyset.h:132
type
Cell type.
Definition: polyset.h:136
int dim(cell::type cell, polyset::type ptype, int d)
Dimension of a polynomial space.
Definition: polyset.cpp:3249
std::pair< std::vector< T >, std::array< std::size_t, 3 > > tabulate(cell::type celltype, polyset::type ptype, int d, int n, MDSPAN_IMPL_STANDARD_NAMESPACE::mdspan< const T, MDSPAN_IMPL_STANDARD_NAMESPACE::dextents< std::size_t, 2 > > x)
Tabulate the orthonormal polynomial basis, and derivatives, at points on the reference cell.
Definition: polyset.cpp:3218
int nderivs(cell::type cell, int d)
Number of derivatives that the orthonormal basis will have on the given cell.
Definition: polyset.cpp:3298
polyset::type superset(cell::type cell, polyset::type type1, polyset::type type2)
Get the polyset types that is a superset of two types on the given cell.
Definition: polyset.cpp:3323
polyset::type restriction(polyset::type ptype, cell::type cell, cell::type restriction_cell)
Get the polyset type that represents the restrictions of a type on a subentity.
Definition: polyset.cpp:3335