dune-localfunctions  2.9.0
raviartthomas0prismlocalcoefficients.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_RAVIARTTHOMAS0_PRISM_LOCALCOEFFICIENTS_HH
6 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS0_PRISM_LOCALCOEFFICIENTS_HH
7 
8 #include <cstddef>
9 #include <vector>
10 
11 #include "../../common/localkey.hh"
12 
13 namespace Dune
14 {
15 
24  {
25 
26  public:
29  {
30  for(int i=0; i< size(); i++)
31  li[i] = LocalKey(i,1,0);
32  }
33 
35  std::size_t size () const
36  {
37  return 5;
38  }
39 
41  const LocalKey& localKey (std::size_t i) const
42  {
43  return li[i];
44  }
45 
46  private:
47  std::vector<LocalKey> li;
48  };
49 }
50 #endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS0_PRISM_LOCALCOEFFICIENTS_HH
Definition: bdfmcube.hh:18
Describe position of one degree of freedom.
Definition: localkey.hh:23
Layout map for Raviart-Thomas-1 elements on prisms.
Definition: raviartthomas0prismlocalcoefficients.hh:24
const LocalKey & localKey(std::size_t i) const
get i'th index
Definition: raviartthomas0prismlocalcoefficients.hh:41
std::size_t size() const
number of coefficients
Definition: raviartthomas0prismlocalcoefficients.hh:35
RT0PrismLocalCoefficients()
Standard constructor.
Definition: raviartthomas0prismlocalcoefficients.hh:28