3.2-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
mimetic/pressurepropertiesadaptive.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 *****************************************************************************/
24#ifndef DUMUX_MIMETICPROPERTIES2PADAPTIVE_SEQUENTIAL_HH
25#define DUMUX_MIMETICPROPERTIES2PADAPTIVE_SEQUENTIAL_HH
26
27//Dumux-includes
30namespace Dumux {
31
33// Forward declarations
35
37// Properties
39namespace Properties {
41// Type tags
43
45// Create new type tags
46namespace TTag {
47struct MimeticPressureTwoPAdaptive { using InheritsFrom = std::tuple<Mimetic, PressureTwoP>; };
48} // end namespace TTag
49
51// Property tags
53} // end namespace Properties
54} // end namespace Dumux
55
58
59namespace Dumux {
60namespace Properties {
61template<class TypeTag>
62struct PressureModel<TypeTag, TTag::MimeticPressureTwoPAdaptive> { using type = MimeticPressure2PAdaptive<TypeTag>; };
63template<class TypeTag>
64struct LocalStiffness<TypeTag, TTag::MimeticPressureTwoPAdaptive> { using type = MimeticTwoPLocalStiffnessAdaptive<TypeTag>; };
65} // end namespace Properties
66} // end namespace Dumux
67
68#endif
Local stiffness matrix for the diffusion equation discretized by mimetic FD.
Definition: adapt.hh:29
compute local stiffness matrix for conforming finite elements for the full 2-phase pressure equation
Definition: mimeticadaptive.hh:55
Mimetic method for the pressure equation.
Definition: mimetic/pressureadaptive.hh:64
Definition: mimetic/pressurepropertiesadaptive.hh:47
std::tuple< Mimetic, PressureTwoP > InheritsFrom
Definition: mimetic/pressurepropertiesadaptive.hh:47
Definition: porousmediumflow/sequential/mimetic/properties.hh:62
The type of the discretization of a pressure model.
Definition: porousmediumflow/sequential/properties.hh:75
Specifies the properties for immiscible 2p diffusion/pressure models.
Defines the basic properties required for a mimetic method.
Model for the pressure equation discretized by mimetic FD.