dune-localfunctions  2.11
p0localcoefficients.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 © 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_P0LOCALCOEFFICIENTS_HH
6 #define DUNE_P0LOCALCOEFFICIENTS_HH
7 
8 #include <cstddef>
9 #include <iostream>
10 #include <vector>
11 
13 
14 namespace Dune
15 {
16 
25  {
26  public:
28  P0LocalCoefficients () : index(0,0,0)
29  {}
30 
32  std::size_t size () const
33  {
34  return 1;
35  }
36 
38  const LocalKey& localKey ([[maybe_unused]] std::size_t i) const
39  {
40  return index;
41  }
42 
43  private:
44  LocalKey index;
45  };
46 
47 }
48 #endif
const LocalKey & localKey([[maybe_unused]] std::size_t i) const
get i&#39;th index
Definition: p0localcoefficients.hh:38
P0LocalCoefficients()
Standard constructor.
Definition: p0localcoefficients.hh:28
Describe position of one degree of freedom.
Definition: localkey.hh:23
Definition: bdfmcube.hh:17
std::size_t size() const
number of coefficients
Definition: p0localcoefficients.hh:32
Layout map for P0 elements.
Definition: p0localcoefficients.hh:24