dune-localfunctions  2.4
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 
15 namespace Dune
16 {
31  template<unsigned int dimDomain, class D, class R,
32  class SF=R, class CF=SF>
34  : public GenericLocalFiniteElement<RaviartThomasBasisFactory<dimDomain, SF, CF>,
35  RaviartThomasCoefficientsFactory<dimDomain>,
36  RaviartThomasL2InterpolationFactory<dimDomain, SF> >
37  {
41  public:
42  using typename Base::Traits;
43 
45  RaviartThomasSimplexLocalFiniteElement(const GeometryType &gt, unsigned int order)
46  : Base(gt, order)
47  {}
48  };
49 } // namespace Dune
50 
51 #endif // #ifndef DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS_SIMPLEX_HH
Definition: raviartthomassimplexinterpolation.hh:27
Definition: raviartthomassimplexinterpolation.hh:29
Definition: brezzidouglasmarini1cube2dlocalbasis.hh:14
RaviartThomasSimplexLocalFiniteElement(const GeometryType &gt, unsigned int order)
Definition: raviartthomassimplex.hh:45
Raviart-Thomas local finite elements of arbitrary order for simplices of arbitrary dimension...
Definition: raviartthomassimplex.hh:33
A LocalFiniteElement implementation based on three TopologyFactories providing the LocalBasis...
Definition: localfiniteelement.hh:21
LocalFiniteElementTraits< typename RaviartThomasBasisFactory< dimDomain, SF, CF >::Object, typename RaviartThomasCoefficientsFactory< dimDomain >::Object, typename RaviartThomasL2InterpolationFactory< dimDomain, SF >::Object > Traits
Definition: localfiniteelement.hh:26