dune-localfunctions 2.10
Loading...
Searching...
No Matches
orthonormal.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_ORTHONORMALFINITEELEMENT_HH
6#define DUNE_ORTHONORMALFINITEELEMENT_HH
7
12
13namespace Dune
14{
32 template< unsigned int dimDomain, class D, class R,
33 class SF=R, class CF=SF >
35 : public GenericLocalFiniteElement< OrthonormalBasisFactory< dimDomain, SF, CF >,
36 DGLocalCoefficientsFactory< OrthonormalBasisFactory< dimDomain, SF, CF > >,
37 LocalL2InterpolationFactory< OrthonormalBasisFactory< dimDomain, SF, CF >,true > >
38 {
42 public:
43 using typename Base::Traits;
44
47 OrthonormalLocalFiniteElement ( const GeometryType &gt, unsigned int order )
48 : Base(gt, order)
49 {}
50 };
51
52}
53
54#endif
Definition bdfmcube.hh:18
A class providing orthonormal basis functions.
Definition orthonormal.hh:38
OrthonormalLocalFiniteElement(const GeometryType &gt, unsigned int order)
Definition orthonormal.hh:47
A factory class for the dg local coefficients.
Definition dglocalcoefficients.hh:59
A factory class for the local l2 interpolations taking a basis factory.
Definition l2interpolation.hh:163
A LocalFiniteElement implementation based on three TopologyFactories providing the LocalBasis,...
Definition localfunctions/utility/localfiniteelement.hh:25
LocalFiniteElementTraits< typename BasisF::Object, typename CoeffF::Object, typename InterpolF::Object > Traits
Definition localfunctions/utility/localfiniteelement.hh:29