3.1-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
multidomain/facet/cellcentered/mpfa/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 2 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 *****************************************************************************/
29#ifndef DUMUX_FACETCOUPLING_CC_MPFA_PROPERTIES_HH
30#define DUMUX_FACETCOUPLING_CC_MPFA_PROPERTIES_HH
31
34
38
40
41namespace Dumux {
42
43namespace Properties {
44
47// Create new type tags
48namespace TTag {
49struct CCMpfaFacetCouplingModel { using InheritsFrom = std::tuple<CCMpfaModel>; };
50} // end namespace TTag
51
53template<class TypeTag>
54struct BaseLocalResidual<TypeTag, TTag::CCMpfaFacetCouplingModel> { using type = CCFacetCouplingLocalResidual<TypeTag>; };
55
57template<class TypeTag>
58struct PrimaryInteractionVolume<TypeTag, TTag::CCMpfaFacetCouplingModel>
59{
60private:
63
64 // use the default traits
66public:
68};
69
71template<class TypeTag>
72struct SecondaryInteractionVolume<TypeTag, TTag::CCMpfaFacetCouplingModel>
73{
74private:
77
78 // use the default traits
80public:
82};
83
85template<class TypeTag>
86struct FluxVariables<TypeTag, TTag::CCMpfaFacetCouplingModel>
87{
90};
91
92} // namespace Properties
93} // namespace Dumux
94
95#endif
Properties for all models using cell-centered finite volume scheme with mpfa.
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition: propertysystem.hh:149
The type of the base class of the local residual (specific to a discretization scheme)
Definition: common/properties.hh:80
Container storing the different types of flux variables.
Definition: common/properties.hh:180
The primary interaction volume type.
Definition: common/properties.hh:196
The secondary interaction volume type used e.g. on the boundaries.
Definition: common/properties.hh:198
Calculates the element-wise residual for cell-centered discretization schemes in models where couplin...
Definition: multidomain/facet/cellcentered/localresidual.hh:44
Forward declaration of the facet coupling MPFA-O interaction volume.
Definition: multidomain/facet/cellcentered/mpfa/interactionvolume.hh:81
The default interaction volume traits class for the mpfa-o method in the context of facet coupling....
Definition: multidomain/facet/cellcentered/mpfa/interactionvolume.hh:53
Definition: multidomain/facet/cellcentered/mpfa/properties.hh:49
std::tuple< CCMpfaModel > InheritsFrom
Definition: multidomain/facet/cellcentered/mpfa/properties.hh:49
The upwind scheme used for the advective fluxes. This is a modified scheme for models involving coupl...
Definition: multidomain/facet/cellcentered/upwindscheme.hh:42
The porous medium flux variables class that computes advective / convective, molecular diffusive and ...
Definition: porousmediumflow/fluxvariables.hh:53
Declares all properties used in Dumux.
Modified upwind scheme for models using cell-centered schemes with coupling across element facets.
Base class for the flux variables in porous medium models.
Calculates the element-wise residual for cell-centered discretization schemes in models where couplin...