3.6-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
28#include <utility>
29
30namespace Dumux {
31
39template<class GridGeometry>
41{
42 using GridView = typename GridGeometry::GridView;
43
44 using FEBasis = typename GridGeometry::FEBasis;
45 using FEBasisLocalView = typename FEBasis::LocalView;
46
47public:
49 using Element = typename GridView::template Codim<0>::Entity;
50
52 FEElementGeometry(const GridGeometry& gg)
53 : gridGeometry_(gg)
54 , feBasisLocalView_(gg.feBasis().localView())
55 {}
56
63 {
64 this->bind(element);
65 return std::move(*this);
66 }
67
69 void bind(const Element& element) &
70 { feBasisLocalView_.bind(element); }
71
78 {
79 this->bindElement(element);
80 return std::move(*this);
81 }
82
85 { bind(element); }
86
88 bool isBound() const
89 { return feBasisLocalView_.isBound(); }
90
92 const Element& element() const
93 { return feBasisLocalView_.element(); }
94
96 const FEBasisLocalView& feBasisLocalView() const
97 { return feBasisLocalView_; }
98
100 const GridGeometry& gridGeometry() const
101 { return gridGeometry_; }
102
103private:
104 const GridGeometry& gridGeometry_;
105 FEBasisLocalView feBasisLocalView_;
106};
107
108} // end namespace Dumux
109
110#endif
GridCache::LocalView localView(const GridCache &gridCache)
Free function to get the local view of a grid cache object.
Definition: localview.hh:38
Adaption of the non-isothermal two-phase two-component flow model to problems with CO2.
Definition: adapt.hh:29
Grid geometry local view, which is a wrapper around a finite element basis local view.
Definition: feelementgeometry.hh:41
const Element & element() const
The bound element.
Definition: feelementgeometry.hh:92
bool isBound() const
Returns true if bind/bindElement has already been called.
Definition: feelementgeometry.hh:88
FEElementGeometry bindElement(const Element &element) &&
bind the local view (r-value overload) This overload is called when an instance of this class is a te...
Definition: feelementgeometry.hh:77
const GridGeometry & gridGeometry() const
Return reference to the grid geometry.
Definition: feelementgeometry.hh:100
typename GridView::template Codim< 0 >::Entity Element
export type of the element
Definition: feelementgeometry.hh:49
FEElementGeometry bind(const Element &element) &&
bind the local view (r-value overload) This overload is called when an instance of this class is a te...
Definition: feelementgeometry.hh:62
void bind(const Element &element) &
Prepare element-local data.
Definition: feelementgeometry.hh:69
FEElementGeometry(const GridGeometry &gg)
constructor taking grid geometry
Definition: feelementgeometry.hh:52
void bindElement(const Element &element) &
Prepare element-local data.
Definition: feelementgeometry.hh:84
const FEBasisLocalView & feBasisLocalView() const
Return the finite element basis local view.
Definition: feelementgeometry.hh:96