Dune Core Modules (2.6.0)

raviartthomas3cube2d.hh
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_RAVIARTTHOMAS3_CUBE2D_LOCALFINITEELEMENT_HH
4 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS3_CUBE2D_LOCALFINITEELEMENT_HH
5 
6 #include <dune/geometry/type.hh>
7 
8 #include "../common/localfiniteelementtraits.hh"
9 #include "raviartthomas3cube2d/raviartthomas3cube2dlocalbasis.hh"
10 #include "raviartthomas3cube2d/raviartthomas3cube2dlocalcoefficients.hh"
11 #include "raviartthomas3cube2d/raviartthomas3cube2dlocalinterpolation.hh"
12 
13 namespace Dune
14 {
25  template<class D, class R>
27  {
28 
29  public:
34 
37  {}
38 
45  basis(s),
46  interpolation(s)
47  {}
48 
49  const typename Traits::LocalBasisType& localBasis () const
50  {
51  return basis;
52  }
53 
54  const typename Traits::LocalCoefficientsType& localCoefficients () const
55  {
56  return coefficients;
57  }
58 
59  const typename Traits::LocalInterpolationType& localInterpolation () const
60  {
61  return interpolation;
62  }
63 
65  unsigned int size () const
66  {
67  return basis.size();
68  }
69 
70  static constexpr GeometryType type ()
71  {
73  }
74 
75  private:
76  RT3Cube2DLocalBasis<D,R> basis;
77  RT3Cube2DLocalCoefficients coefficients;
78  RT3Cube2DLocalInterpolation<RT3Cube2DLocalBasis<D,R> > interpolation;
79  };
80 }
81 #endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS3_CUBE2D_LOCALFINITEELEMENT_HH
Unique label for each type of entities that can occur in DUNE grids.
Definition: type.hh:277
Second order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas3cube2dlocalbasis.hh:27
Layout map for Raviart-Thomas-3 elements on quadrilaterals.
Definition: raviartthomas3cube2dlocalcoefficients.hh:21
Second order Raviart-Thomas shape functions on cubes.
Definition: raviartthomas3cube2d.hh:27
RT3Cube2DLocalFiniteElement(int s)
Make set number s, where 0 <= s < 16.
Definition: raviartthomas3cube2d.hh:44
RT3Cube2DLocalFiniteElement()
Standard constructor.
Definition: raviartthomas3cube2d.hh:36
unsigned int size() const
Number of shape functions in this finite element.
Definition: raviartthomas3cube2d.hh:65
Second order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas3cube2dlocalinterpolation.hh:23
constexpr GeometryType quadrilateral
GeometryType representing a quadrilateral (a square).
Definition: type.hh:745
Dune namespace.
Definition: alignedallocator.hh:10
traits helper struct
Definition: localfiniteelementtraits.hh:11
LB LocalBasisType
Definition: localfiniteelementtraits.hh:14
LC LocalCoefficientsType
Definition: localfiniteelementtraits.hh:18
LI LocalInterpolationType
Definition: localfiniteelementtraits.hh:22
A unique label for each type of element that can occur in a grid.
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (Apr 29, 22:29, 2024)