5#ifndef DUNE_PK1DLOCALFINITEELEMENT_HH
6#define DUNE_PK1DLOCALFINITEELEMENT_HH
12#include <dune/localfunctions/common/localfiniteelementtraits.hh>
13#include <dune/localfunctions/common/localtoglobaladaptors.hh>
14#include <dune/localfunctions/lagrange/lagrangesimplex.hh>
16#warning This header is deprecated
25 template<
class D,
class R,
unsigned int k>
27 [[deprecated(
"use LagrangeSimplexLocalFiniteElement instead")]]
39 template<
class Geometry,
class RF, std::
size_t k>
42 typedef Impl::LagrangeSimplexLocalBasis<DF,RF,1,k> LocalBasis;
43 typedef Impl::LagrangeSimplexLocalInterpolation<LocalBasis> LocalInterpolation;
53 typename Basis::Traits
55 typedef Impl::LagrangeSimplexLocalCoefficients<1,k> Coefficients;
60 static const LocalBasis localBasis;
61 static const LocalInterpolation localInterpolation;
65 typename Traits::Coefficients coefficients_;
82 template<
class VertexOrder>
84 const VertexOrder& vertexOrder) :
85 basis_(localBasis, geometry), interpolation_(localInterpolation),
86 coefficients_(vertexOrder.begin(0, 0))
89 const typename Traits::Basis& basis()
const {
return basis_; }
90 const typename Traits::Interpolation& interpolation()
const
91 {
return interpolation_; }
92 const typename Traits::Coefficients& coefficients()
const
93 {
return coefficients_; }
97 template<
class Geometry,
class RF, std::
size_t k>
101 template<
class Geometry,
class RF, std::
size_t k>
102 const typename Pk1DFiniteElement<Geometry, RF, k>::LocalBasis
103 Pk1DFiniteElement<Geometry, RF, k>::localBasis = LocalBasis();
105 template<
class Geometry,
class RF, std::
size_t k>
106 const typename Pk1DFiniteElement<Geometry, RF, k>::LocalInterpolation
107 Pk1DFiniteElement<Geometry, RF, k>::localInterpolation =
108 LocalInterpolation();
121 template<
class Geometry,
class RF, std::
size_t k>
140 template<
class VertexOrder>
142 const VertexOrder& vertexOrder)
Unique label for each type of entities that can occur in DUNE grids.
Definition: type.hh:126
Wrapper class for geometries.
Definition: geometry.hh:71
GridImp::ctype ctype
define type used for coordinates in grid module
Definition: geometry.hh:100
Convert a local interpolation into a global interpolation.
Definition: localtoglobaladaptors.hh:149
Langrange finite element of arbitrary order on triangles.
Definition: pk1d.hh:40
Pk1DFiniteElement(const Geometry &geometry, const VertexOrder &vertexOrder)
construct a Pk1DFiniteElement
Definition: pk1d.hh:83
Convert a simple scalar local basis into a global basis.
Definition: localtoglobaladaptors.hh:65
GeometryType
Type representing VTK's entity geometry types.
Definition: common.hh:132
bool gt(const T &first, const T &second, typename EpsilonType< T >::Type epsilon)
test if first greater than second
Definition: float_cmp.cc:158
constexpr GeometryType simplex(unsigned int dim)
Returns a GeometryType representing a simplex of dimension dim.
Definition: type.hh:464
Dune namespace.
Definition: alignedallocator.hh:13
Dummy struct used for documentation purposes.
Definition: documentation.hh:42
Factory for Pk1DFiniteElement objects.
Definition: pk1d.hh:122
const FiniteElement make(const Geometry &geometry, const VertexOrder &vertexOrder)
construct Pk1DFiniteElementFactory
Definition: pk1d.hh:141
A unique label for each type of element that can occur in a grid.