dune-localfunctions  2.9.0
raviartthomas03dlocalcoefficients.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_RAVIARTTHOMAS_RAVIARTTHOMAS03D_RAVIARTTHOMAS03DLOCALCOEFFICIENTS_HH
6 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS_RAVIARTTHOMAS03D_RAVIARTTHOMAS03DLOCALCOEFFICIENTS_HH
7 
8 #include <cstddef>
9 #include <iostream>
10 #include <vector>
11 
13 
14 namespace Dune
15 {
16 
24  {
25  public:
28  {
29  for (std::size_t i=0; i<4; i++)
30  li[i] = LocalKey(i,1,0);
31  }
32 
34  std::size_t size () const
35  {
36  return 4;
37  }
38 
40  const LocalKey& localKey (std::size_t i) const
41  {
42  return li[i];
43  }
44 
45  private:
46  std::vector<LocalKey> li;
47  };
48 
49 }
50 
51 #endif
Definition: bdfmcube.hh:18
Describe position of one degree of freedom.
Definition: localkey.hh:23
Layout map for RT0 elements.
Definition: raviartthomas03dlocalcoefficients.hh:24
RT03DLocalCoefficients()
Standard constructor.
Definition: raviartthomas03dlocalcoefficients.hh:27
const LocalKey & localKey(std::size_t i) const
get i'th index
Definition: raviartthomas03dlocalcoefficients.hh:40
std::size_t size() const
number of coefficients
Definition: raviartthomas03dlocalcoefficients.hh:34