dune-localfunctions 2.8.0
Loading...
Searching...
No Matches
raviartthomassimplex.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_RAVIARTTHOMAS_SIMPLEX_HH
4#define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS_SIMPLEX_HH
5
8
15namespace Dune
16{
33 template<unsigned int dimDomain, class D, class R,
34 class SF=R, class CF=SF>
36 : public GenericLocalFiniteElement<RaviartThomasBasisFactory<dimDomain, SF, CF>,
37 RaviartThomasCoefficientsFactory<dimDomain>,
38 RaviartThomasL2InterpolationFactory<dimDomain, SF> >
39 {
43 public:
44 using typename Base::Traits;
45
47 RaviartThomasSimplexLocalFiniteElement(const GeometryType &gt, unsigned int order)
48 : Base(gt, order)
49 {}
50 };
51} // namespace Dune
52
53#endif // #ifndef DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS_SIMPLEX_HH
Definition: bdfmcube.hh:16
Raviart-Thomas local finite elements of arbitrary order for simplices of arbitrary dimension.
Definition: raviartthomassimplex.hh:39
RaviartThomasSimplexLocalFiniteElement(const GeometryType &gt, unsigned int order)
Definition: raviartthomassimplex.hh:47
Definition: raviartthomassimplexinterpolation.hh:422
Definition: raviartthomassimplexinterpolation.hh:68
A LocalFiniteElement implementation based on three TopologyFactories providing the LocalBasis,...
Definition: localfunctions/utility/localfiniteelement.hh:23
LocalFiniteElementTraits< typename BasisF::Object, typename CoeffF::Object, typename InterpolF::Object > Traits
Definition: localfunctions/utility/localfiniteelement.hh:27