dune-localfunctions 2.8.0
lagrange.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#ifndef DUNE_LOCALFUNCTIONS_LAGRANGE_HH
4#define DUNE_LOCALFUNCTIONS_LAGRANGE_HH
5
10// Headers for Lagrange elements with run-time order
13
17
18// Headers for Lagrange elements with compile-time order
30
34
39
40
41namespace Dune
42{
72 template< template <class,unsigned int> class LP,
73 unsigned int dimDomain, class D, class R,
74 class SF=R, class CF=SF >
76 : public GenericLocalFiniteElement< LagrangeBasisFactory< LP, dimDomain, SF, CF >,
77 LagrangeCoefficientsFactory<LP, dimDomain, SF >,
78 LagrangeInterpolationFactory< LP, dimDomain, SF > >
79 {
83 public:
84 typedef typename Base::Traits Traits;
85
88 LagrangeLocalFiniteElement ( const GeometryType &gt, unsigned int order )
89 : Base( gt, order )
90 {}
91 };
92}
93
94#endif // #ifndef DUNE_LOCALFUNCTIONS_LAGRANGE_HH
Definition: bdfmcube.hh:16
traits helper struct
Definition: localfiniteelementtraits.hh:11
Lagrange local finite elements for a given set of interpolation points.
Definition: lagrange.hh:79
LagrangeLocalFiniteElement(const GeometryType &gt, unsigned int order)
Definition: lagrange.hh:88
Base::Traits Traits
Definition: lagrange.hh:84
Definition: lagrange/interpolation.hh:98
Definition: lagrangecoefficients.hh:21
A LocalFiniteElement implementation based on three TopologyFactories providing the LocalBasis,...
Definition: localfunctions/utility/localfiniteelement.hh:23