Dune Core Modules (unstable)

raviartthomas0pyramidlocalcoefficients.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_RAVIARTTHOMAS0_PYRAMID_LOCALCOEFFICIENTS_HH
6#define DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS0_PYRAMID_LOCALCOEFFICIENTS_HH
7
8#include <cstddef>
9#include <vector>
10
11#include "../../common/localkey.hh"
12
13namespace Dune
14{
15
24 {
25
26 public:
29 {
30 for(std::size_t i=0; i< 5; i++)
31 li[i] = LocalKey(i,1,0);
32 li[5] = LocalKey(0,0,0);
33 }
34
36 std::size_t size () const
37 {
38 return 6;
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#endif // DUNE_LOCALFUNCTIONS_RAVIARTTHOMAS0_PYRAMID_LOCALCOEFFICIENTS_HH
Describe position of one degree of freedom.
Definition: localkey.hh:24
Layout map for Raviart-Thomas-1 elements on pyramids.
Definition: raviartthomas0pyramidlocalcoefficients.hh:24
const LocalKey & localKey(std::size_t i) const
get i'th index
Definition: raviartthomas0pyramidlocalcoefficients.hh:42
RT0PyramidLocalCoefficients()
Standard constructor.
Definition: raviartthomas0pyramidlocalcoefficients.hh:28
std::size_t size() const
number of coefficients
Definition: raviartthomas0pyramidlocalcoefficients.hh:36
Dune namespace.
Definition: alignedallocator.hh:13
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Sep 3, 22:42, 2025)