dune-localfunctions  2.9.0
raviartthomas2cube2d.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 (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_LOCALFUNCTIONS_RAVIARTTHOMAS2_CUBE2D_LOCALFINITEELEMENT_HH
6 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS2_CUBE2D_LOCALFINITEELEMENT_HH
7 
8 #include <dune/geometry/type.hh>
9 
10 #include "../common/localfiniteelementtraits.hh"
14 
15 namespace Dune
16 {
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 
55  {
56  return coefficients;
57  }
58 
60  {
61  return interpolation;
62  }
63 
65  unsigned int size () const
66  {
67  return basis.size();
68  }
69 
70  static constexpr GeometryType type ()
71  {
72  return GeometryTypes::quadrilateral;
73  }
74 
75  private:
77  RT2Cube2DLocalCoefficients coefficients;
79  };
80 }
81 #endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS2_CUBE2D_LOCALFINITEELEMENT_HH
Definition: bdfmcube.hh:18
traits helper struct
Definition: localfiniteelementtraits.hh:13
LB LocalBasisType
Definition: localfiniteelementtraits.hh:16
LC LocalCoefficientsType
Definition: localfiniteelementtraits.hh:20
LI LocalInterpolationType
Definition: localfiniteelementtraits.hh:24
Second order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas2cube2dlocalbasis.hh:28
Layout map for Raviart-Thomas-2 elements on quadrilaterals.
Definition: raviartthomas2cube2dlocalcoefficients.hh:23
Second order Raviart-Thomas shape functions on the reference triangle.
Definition: raviartthomas2cube2dlocalinterpolation.hh:26
Second order Raviart-Thomas shape functions on cubes.
Definition: raviartthomas2cube2d.hh:27
const Traits::LocalBasisType & localBasis() const
Definition: raviartthomas2cube2d.hh:49
LocalFiniteElementTraits< RT2Cube2DLocalBasis< D, R >, RT2Cube2DLocalCoefficients, RT2Cube2DLocalInterpolation< RT2Cube2DLocalBasis< D, R > > > Traits
Definition: raviartthomas2cube2d.hh:33
const Traits::LocalCoefficientsType & localCoefficients() const
Definition: raviartthomas2cube2d.hh:54
unsigned int size() const
Number of shape functions in this finite element.
Definition: raviartthomas2cube2d.hh:65
static constexpr GeometryType type()
Definition: raviartthomas2cube2d.hh:70
RT2Cube2DLocalFiniteElement(int s)
Make set number s, where 0 <= s < 16.
Definition: raviartthomas2cube2d.hh:44
const Traits::LocalInterpolationType & localInterpolation() const
Definition: raviartthomas2cube2d.hh:59
RT2Cube2DLocalFiniteElement()
Standard constructor.
Definition: raviartthomas2cube2d.hh:36