Dune Core Modules (unstable)

raviartthomas03dlocalcoefficients.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_RAVIARTTHOMAS_RAVIARTTHOMAS03D_RAVIARTTHOMAS03DLOCALCOEFFICIENTS_HH
6 #define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS_RAVIARTTHOMAS03D_RAVIARTTHOMAS03DLOCALCOEFFICIENTS_HH
7 
8 #include <cstddef>
9 #include <iostream>
10 #include <vector>
11 
12 #include <dune/localfunctions/common/localkey.hh>
13 
14 namespace Dune
15 {
16 
25  {
26  public:
29  {
30  for (std::size_t i=0; i<4; i++)
31  li[i] = LocalKey(i,1,0);
32  }
33 
35  std::size_t size () const
36  {
37  return 4;
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 }
51 
52 #endif
Describe position of one degree of freedom.
Definition: localkey.hh:24
Definition: raviartthomas03dlocalcoefficients.hh:25
RT03DLocalCoefficients()
Standard constructor.
Definition: raviartthomas03dlocalcoefficients.hh:28
const LocalKey & localKey(std::size_t i) const
get i'th index
Definition: raviartthomas03dlocalcoefficients.hh:41
std::size_t size() const
number of coefficients
Definition: raviartthomas03dlocalcoefficients.hh:35
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)