Dune Core Modules (unstable)

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