Dune Core Modules (2.6.0)

raviartthomas1cube3dlocalcoefficients.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_RAVIARTTHOMAS1_CUBE3D_LOCALCOEFFICIENTS_HH
4 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS1_CUBE3D_LOCALCOEFFICIENTS_HH
5 
6 #include <cstddef>
7 #include <vector>
8 
9 #include "../../common/localkey.hh"
10 
11 namespace Dune
12 {
13 
22  {
23 
24  public:
27  {
28  for (std::size_t i = 0; i < 6; i++)
29  {
30  li[i] = LocalKey(i,1,0);
31  li[i + 6] = LocalKey(i,1,1);
32  li[i + 12] = LocalKey(i,1,2);
33  li[i + 18] = LocalKey(i,1,3);
34  }
35 
36  for (std::size_t i = 0; i < 12; i++)
37  {
38  li[i + 24] = LocalKey(0,0,i);
39  }
40  }
41 
43  std::size_t size () const
44  {
45  return 36;
46  }
47 
49  const LocalKey& localKey (std::size_t i) const
50  {
51  return li[i];
52  }
53 
54  private:
55  std::vector<LocalKey> li;
56  };
57 }
58 #endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS1_CUBE3D_LOCALCOEFFICIENTS_HH
Describe position of one degree of freedom.
Definition: localkey.hh:21
Layout map for Raviart-Thomas-1 elements on quadrilaterals.
Definition: raviartthomas1cube3dlocalcoefficients.hh:22
std::size_t size() const
number of coefficients
Definition: raviartthomas1cube3dlocalcoefficients.hh:43
const LocalKey & localKey(std::size_t i) const
get i'th index
Definition: raviartthomas1cube3dlocalcoefficients.hh:49
RT1Cube3DLocalCoefficients()
Standard constructor.
Definition: raviartthomas1cube3dlocalcoefficients.hh:26
Dune namespace.
Definition: alignedallocator.hh:10
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (May 2, 22:35, 2024)