version 3.8
geomechanics/fvproblem.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// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_GEOMECHANICS_FV_PROBLEM_HH
13#define DUMUX_GEOMECHANICS_FV_PROBLEM_HH
14
17
18namespace Dumux {
19
26template<class TypeTag>
28{
30
33 using FVElementGeometry = typename GridGeometry::LocalView;
34 using SubControlVolume = typename GridGeometry::SubControlVolume;
36 using Element = typename GridView::template Codim<0>::Entity;
37 using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
38
40
41public:
43 using ParentType::ParentType;
44};
45
46} // end namespace Dumux
47
48#endif
Base class for all finite-volume problems.
Definition: common/fvproblem.hh:43
Base class for all geomechanical problems.
Definition: geomechanics/fvproblem.hh:28
Base class for all fully implicit porous media problems.
Definition: porousmediumflow/problem.hh:28
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
A helper function for class member function introspection.
Definition: adapt.hh:17
Base class for all porous media problems.