Dune Core Modules (unstable)

raviartthomas12d.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_RAVIARTTHOMAS12DLOCALFINITEELEMENT_HH
6 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS12DLOCALFINITEELEMENT_HH
7 
8 #include <dune/geometry/type.hh>
9 
10 #include "../common/localfiniteelementtraits.hh"
11 #include "raviartthomas12d/raviartthomas12dlocalbasis.hh"
12 #include "raviartthomas12d/raviartthomas12dlocalcoefficients.hh"
13 #include "raviartthomas12d/raviartthomas12dlocalinterpolation.hh"
14 
15 namespace Dune
16 {
17 
26  template<class D, class R>
27  class
29  {
30 
31  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  RT12DLocalBasis<D,R> basis;
77  RT12DLocalCoefficients coefficients;
78  RT12DLocalInterpolation<RT12DLocalBasis<D,R> > interpolation;
79  };
80 }
81 
82 #endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS12DLOCALFINITEELEMENT_HH
Unique label for each type of entities that can occur in DUNE grids.
Definition: type.hh:114
Layout map for Raviart-Thomas-1 elements on the reference triangle.
Definition: raviartthomas12dlocalcoefficients.hh:23
First order Raviart-Thomas shape functions on triangles.
Definition: raviartthomas12d.hh:29
unsigned int size() const
Number of shape functions in this finite element.
Definition: raviartthomas12d.hh:65
RT12DLocalFiniteElement(int s)
Make set number s, where 0 <= s < 8.
Definition: raviartthomas12d.hh:44
RT12DLocalFiniteElement()
Standard constructor.
Definition: raviartthomas12d.hh:36
First order Raviart-Thomas shape functions on the reference quadrilateral.
Definition: raviartthomas12dlocalinterpolation.hh:25
constexpr GeometryType triangle
GeometryType representing a triangle.
Definition: type.hh:504
Dune namespace.
Definition: alignedallocator.hh:13
traits helper struct
Definition: localfiniteelementtraits.hh:13
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 27, 22:29, 2024)