3.1-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
porousmediumflow/1p/sequential/properties.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_1PPROPERTIES_HH
26#define DUMUX_1PPROPERTIES_HH
27
28//Dumux-includes
31
32namespace Dumux {
33
35// forward declarations
37template <class TypeTag>
38class CellData1P;
39
41// properties
43namespace Properties {
44
46// Type tags
48
50NEW_TYPE_TAG(SequentialOneP, INHERITS_FROM(SequentialModel));
51
53// Property tags
55NEW_PROP_TAG( Fluid ); // The fluid for one-phase models
56} // end namespace Properties
57} // end namespace Dumux
58
63
64namespace Dumux {
65namespace Properties {
67// Properties
69
71SET_INT_PROP(SequentialOneP, NumEq, 1);
72
74SET_INT_PROP(SequentialOneP, NumPhases, 1);
75
77SET_INT_PROP(SequentialOneP, NumComponents, 1);
78
81
84
87
90} // end namespace Properties
91} // end namespace Dumux
92#endif
#define NEW_TYPE_TAG(...)
Definition: propertysystemmacros.hh:130
Dumux sequential linear solver backends.
The base class for spatial parameters of problems using the fv method.
Base class holding the variables for sequential models.
#define NEW_PROP_TAG(PTagName)
Define a property tag.
Definition: propertysystemmacros.hh:159
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
Property tag Variables
The type of the container of global variables.
Definition: porousmediumflow/sequential/properties.hh:71
SET_INT_PROP(SequentialOneP, NumEq, 1)
Set number of equations to 1 for isothermal one-phase models.
Property tag CellData
Defines data object to be stored.
Definition: porousmediumflow/sequential/properties.hh:72
Property tag Fluid
Definition: porousmediumflow/1p/sequential/properties.hh:55
SET_TYPE_PROP(FVPressureOneP, Velocity, FVVelocity1P< TypeTag >)
Set velocity reconstruction implementation standard cell centered finite volume schemes as default.
Type tag FVPressureOneP INHERITS_FROM(PressureOneP))
The type tag for the one-phase problems using a standard finite volume model.
Property tag NumComponents
Number of components in the system.
Definition: porousmediumflow/sequential/properties.hh:70
Property tag Indices
Definition: porousmediumflow/sequential/properties.hh:59
Property tag NumEq
Number of equations in the system of PDEs.
Definition: porousmediumflow/sequential/properties.hh:68
Property tag NumPhases
Number of phases in the system.
Definition: porousmediumflow/sequential/properties.hh:69
The type of the spatial parameters object.
Definition: common/properties.hh:221
The base class for spatial parameters of problems using the fv method.
Definition: sequentialfv1p.hh:42
Class including data of one grid cell.
Definition: 1p/sequential/celldata.hh:48
The common indices for the 1-p models.
Definition: porousmediumflow/1p/sequential/indices.hh:38
Base class holding the variables and discretized data for sequential models.
Definition: variableclass.hh:49
Base file for properties related to sequential models.
Defines the indices required for the sequential one-phase model.
Class including data of one grid cell.