Dune Core Modules (2.9.0)

orthonormal.hh
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#ifndef DUNE_ORTHONORMALFINITEELEMENT_HH
6#define DUNE_ORTHONORMALFINITEELEMENT_HH
7
8#include <dune/localfunctions/utility/localfiniteelement.hh>
9#include <dune/localfunctions/utility/dglocalcoefficients.hh>
10#include <dune/localfunctions/utility/l2interpolation.hh>
11#include <dune/localfunctions/orthonormal/orthonormalbasis.hh>
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
Unique label for each type of entities that can occur in DUNE grids.
Definition: type.hh:125
A class providing orthonormal basis functions.
Definition: orthonormal.hh:38
OrthonormalLocalFiniteElement(const GeometryType &gt, unsigned int order)
Definition: orthonormal.hh:47
bool gt(const T &first, const T &second, typename EpsilonType< T >::Type epsilon)
test if first greater than second
Definition: float_cmp.cc:158
Dune namespace.
Definition: alignedallocator.hh:13
A factory class for the dg local coefficients.
Definition: dglocalcoefficients.hh:59
A LocalFiniteElement implementation based on three TopologyFactories providing the LocalBasis,...
Definition: localfiniteelement.hh:25
traits helper struct
Definition: localfiniteelementtraits.hh:13
A factory class for the local l2 interpolations taking a basis factory.
Definition: l2interpolation.hh:199
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 15, 22:36, 2024)