dune-localfunctions 2.9.1
Loading...
Searching...
No Matches
common.hh
Go to the documentation of this file.
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3// SPDX-FileCopyrightInfo: Copyright (C) DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5
6#ifndef DUNE_LOCALFUNCTIONS_WHITNEY_EDGES0_5_COMMON_HH
7#define DUNE_LOCALFUNCTIONS_WHITNEY_EDGES0_5_COMMON_HH
8
9#include <cstddef>
10
11#include <dune/geometry/dimension.hh>
12#include <dune/geometry/referenceelements.hh>
13#include <dune/geometry/type.hh>
14
15namespace Dune {
16
18 template<std::size_t dim, class DF = double>
21 using RefElem =
22 decltype(referenceElement(DF{}, GeometryTypes::simplex(dim),
23 Dim<dim>{}));
24
26 RefElem refelem = referenceElement(DF{}, GeometryTypes::simplex(dim),
27 Dim<dim>{});
28
30
34 std::size_t s = refelem.size(dim-1);
35 };
36
37} // namespace Dune
38
39#endif // DUNE_LOCALFUNCTIONS_WHITNEY_EDGES0_5_COMMON_HH
Definition bdfmcube.hh:18
Common base class for edge elements.
Definition common.hh:19
decltype(referenceElement(DF{}, GeometryTypes::simplex(dim), Dim< dim >{})) RefElem
The type of the referenceElement.
Definition common.hh:21
RefElem refelem
The reference element for this edge element.
Definition common.hh:26
std::size_t s
The number of base functions.
Definition common.hh:34