dune-localfunctions 2.12-git
Loading...
Searching...
No Matches
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// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
4// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
5#ifndef DUNE_LOCALFUNCTIONS_LAGRANGE_HH
6#define DUNE_LOCALFUNCTIONS_LAGRANGE_HH
7
12// Headers for Lagrange elements with run-time order
15
19
20// Headers for Lagrange elements with compile-time order
26
27namespace Dune
28{
58 template< template <class,unsigned int> class LP,
59 unsigned int dimDomain, class D, class R,
60 class SF=R, class CF=SF >
62 : public GenericLocalFiniteElement< LagrangeBasisFactory< LP, dimDomain, D, R, SF, CF >,
63 LagrangeCoefficientsFactory<LP, dimDomain, SF >,
64 LagrangeInterpolationFactory< LP, dimDomain, SF > >
65 {
69 public:
70 typedef typename Base::Traits Traits;
71
74 LagrangeLocalFiniteElement ( const GeometryType &gt, unsigned int order )
75 : Base( gt, order )
76 {}
77 };
78}
79
80#endif // #ifndef DUNE_LOCALFUNCTIONS_LAGRANGE_HH
traits helper struct
Definition localfiniteelementtraits.hh:13
Lagrange local finite elements for a given set of interpolation points.
Definition lagrange.hh:65
LagrangeLocalFiniteElement(const GeometryType &gt, unsigned int order)
Definition lagrange.hh:74
Base::Traits Traits
Definition lagrange.hh:70
Definition lagrange/interpolation.hh:89
Definition lagrangecoefficients.hh:23
A LocalFiniteElement implementation based on three TopologyFactories providing the LocalBasis,...
Definition localfunctions/utility/localfiniteelement.hh:25