Dune Core Modules (unstable)

raviartthomas1cube2d.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 © 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_RAVIARTTHOMAS1_CUBE2D_LOCALFINITEELEMENT_HH
6 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS1_CUBE2D_LOCALFINITEELEMENT_HH
7 
8 #include <dune/geometry/type.hh>
9 
10 #include "../common/localfiniteelementtraits.hh"
11 #include "raviartthomas1cube2d/raviartthomas1cube2dlocalbasis.hh"
12 #include "raviartthomas1cube2d/raviartthomas1cube2dlocalinterpolation.hh"
13 #include "raviartthomas1cube2d/raviartthomas1cube2dlocalcoefficients.hh"
14 
15 namespace Dune
16 {
17 
26  template<class D, class R>
28  {
29 
30  public:
35 
38  {}
39 
46  basis(s),
47  interpolation(s)
48  {}
49 
50  const typename Traits::LocalBasisType& localBasis () const
51  {
52  return basis;
53  }
54 
55  const typename Traits::LocalCoefficientsType& localCoefficients () const
56  {
57  return coefficients;
58  }
59 
60  const typename Traits::LocalInterpolationType& localInterpolation () const
61  {
62  return interpolation;
63  }
64 
66  unsigned int size () const
67  {
68  return basis.size();
69  }
70 
71  static constexpr GeometryType type ()
72  {
74  }
75 
76  private:
77  RT1Cube2DLocalBasis<D,R> basis;
78  RT1Cube2DLocalCoefficients coefficients;
79  RT1Cube2DLocalInterpolation<RT1Cube2DLocalBasis<D,R> > interpolation;
80  };
81 }
82 #endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS1_CUBE2D_LOCALFINITEELEMENT_HH
Unique label for each type of entities that can occur in DUNE grids.
Definition: type.hh:114
First order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas1cube2dlocalbasis.hh:28
Layout map for Raviart-Thomas-1 elements on quadrilaterals.
Definition: raviartthomas1cube2dlocalcoefficients.hh:24
First order Raviart-Thomas shape functions on quadrilaterals.
Definition: raviartthomas1cube2d.hh:28
unsigned int size() const
Number of shape functions in this finite element.
Definition: raviartthomas1cube2d.hh:66
RT1Cube2DLocalFiniteElement(int s)
Make set number s, where 0 <= s < 16.
Definition: raviartthomas1cube2d.hh:45
RT1Cube2DLocalFiniteElement()
Standard constructor.
Definition: raviartthomas1cube2d.hh:37
First order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas1cube2dlocalinterpolation.hh:26
constexpr GeometryType quadrilateral
GeometryType representing a quadrilateral (a square).
Definition: type.hh:510
Dune namespace.
Definition: alignedallocator.hh:13
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
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 26, 22:29, 2024)