dune-localfunctions  2.11
dualq1localcoefficients.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_DUAL_Q1_LOCALCOEFFICIENTS_HH
6 #define DUNE_DUAL_Q1_LOCALCOEFFICIENTS_HH
7 
8 #include <cstddef>
9 #include <iostream>
10 #include <vector>
11 
13 
14 namespace Dune
15 {
16 
24  template <int dim>
26  {
27  public:
29  DualQ1LocalCoefficients () : li(1<<dim)
30  {
31  for (std::size_t i=0; i<(1<<dim); i++)
32  li[i] = LocalKey(i,dim,0);
33  }
34 
36  std::size_t size () const
37  {
38  return 1<<dim;
39  }
40 
42  const LocalKey& localKey (std::size_t i) const
43  {
44  return li[i];
45  }
46 
47  private:
48  std::vector<LocalKey> li;
49  };
50 
51 }
52 
53 #endif
Describe position of one degree of freedom.
Definition: localkey.hh:23
Definition: bdfmcube.hh:17
const LocalKey & localKey(std::size_t i) const
get i&#39;th index
Definition: dualq1localcoefficients.hh:42
std::size_t size() const
number of coefficients
Definition: dualq1localcoefficients.hh:36
Layout map for dual Q1 elements.
Definition: dualq1localcoefficients.hh:25
DualQ1LocalCoefficients()
Standard constructor.
Definition: dualq1localcoefficients.hh:29