version 3.10.0
Loading...
Searching...
No Matches
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-FileCopyrightText: 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
15#warning "This header is deprecated and will be removed after 3.10. Inherit directly from FVProblemWithSpatialParams instead."
16
19
20namespace Dumux {
21
28template<class TypeTag>
30{
31 using ParentType = PorousMediumFlowProblem<TypeTag>;
32
35 using FVElementGeometry = typename GridGeometry::LocalView;
36 using SubControlVolume = typename GridGeometry::SubControlVolume;
38 using Element = typename GridView::template Codim<0>::Entity;
39 using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
40
42
43public:
45 using ParentType::ParentType;
46};
47
48} // end namespace Dumux
49
50#endif
Base class for all geomechanical problems.
Definition geomechanics/fvproblem.hh:30
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.