3.1-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
feelementgeometry.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3/*****************************************************************************
4 * See the file COPYING for full copying permissions. *
5 * *
6 * This program is free software: you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation, either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 *****************************************************************************/
25#ifndef DUMUX_DISCRETIZATION_FE_ELEMENT_GEOMETRY_HH
26#define DUMUX_DISCRETIZATION_FE_ELEMENT_GEOMETRY_HH
27
28namespace Dumux {
29
37template<class GridGeometry>
39{
40 using GridView = typename GridGeometry::GridView;
41 using Element = typename GridView::template Codim<0>::Entity;
42
43 using FEBasis = typename GridGeometry::FEBasis;
44 using FEBasisLocalView = typename FEBasis::LocalView;
45
46public:
48 FEElementGeometry(const GridGeometry& gg)
49 : gridGeometry_(gg)
50 , feBasisLocalView_(gg.feBasis().localView())
51 {}
52
54 void bind(const Element& element)
55 {
56 feBasisLocalView_.bind(element);
57 }
58
60 void bindElement(const Element& element)
61 { bind(element); }
62
64 const FEBasisLocalView& feBasisLocalView() const
65 { return feBasisLocalView_; }
66
68 const GridGeometry& gridGeometry() const
69 { return gridGeometry_; }
70
71private:
72 const GridGeometry& gridGeometry_;
73 FEBasisLocalView feBasisLocalView_;
74};
75
76} // end namespace Dumux
77
78#endif
GridCache::LocalView localView(const GridCache &gridCache)
Free function to get the local view of a grid cache object.
Definition: localview.hh:38
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
Grid geometry local view, which is a wrapper around a finite element basis local view.
Definition: feelementgeometry.hh:39
const GridGeometry & gridGeometry() const
Return reference to the grid geometry.
Definition: feelementgeometry.hh:68
void bind(const Element &element)
Prepare element-local data.
Definition: feelementgeometry.hh:54
FEElementGeometry(const GridGeometry &gg)
constructor taking grid geometry
Definition: feelementgeometry.hh:48
const FEBasisLocalView & feBasisLocalView() const
Return the finite element basis local view.
Definition: feelementgeometry.hh:64
void bindElement(const Element &element)
Prepare element-local data.
Definition: feelementgeometry.hh:60