version 3.8
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// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
17#ifndef DUMUX_FACETCOUPLING_CC_MPFA_PROPERTIES_HH
18#define DUMUX_FACETCOUPLING_CC_MPFA_PROPERTIES_HH
19
22
26
28
29namespace Dumux {
30
31namespace Properties {
32
35// Create new type tags
36namespace TTag {
37struct CCMpfaFacetCouplingModel { using InheritsFrom = std::tuple<CCMpfaModel>; };
38} // end namespace TTag
39
41template<class TypeTag>
42struct BaseLocalResidual<TypeTag, TTag::CCMpfaFacetCouplingModel> { using type = CCFacetCouplingLocalResidual<TypeTag>; };
43
45template<class TypeTag>
46struct PrimaryInteractionVolume<TypeTag, TTag::CCMpfaFacetCouplingModel>
47{
48private:
51
52 // use the default traits
54public:
56};
57
59template<class TypeTag>
60struct SecondaryInteractionVolume<TypeTag, TTag::CCMpfaFacetCouplingModel>
61{
62private:
65
66 // use the default traits
68public:
70};
71
73template<class TypeTag>
74struct FluxVariables<TypeTag, TTag::CCMpfaFacetCouplingModel>
75{
78};
79
80} // namespace Properties
81} // namespace Dumux
82
83#endif
Properties for all models using cell-centered finite volume scheme with mpfa.
Calculates the element-wise residual for cell-centered discretization schemes in models where couplin...
Definition: multidomain/facet/cellcentered/localresidual.hh:33
The upwind scheme used for the advective fluxes. This is a modified scheme for models involving coupl...
Definition: multidomain/facet/cellcentered/upwindscheme.hh:30
Forward declaration of the facet coupling MPFA-O interaction volume.
Definition: multidomain/facet/cellcentered/mpfa/interactionvolume.hh:69
The porous medium flux variables class that computes advective / convective, molecular diffusive and ...
Definition: porousmediumflow/fluxvariables.hh:41
Defines all properties used in Dumux.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
Calculates the element-wise residual for cell-centered discretization schemes in models where couplin...
Modified upwind scheme for models using cell-centered schemes with coupling across element facets.
Definition: adapt.hh:17
Base class for the flux variables in porous medium models.
The default interaction volume traits class for the mpfa-o method in the context of facet coupling....
Definition: multidomain/facet/cellcentered/mpfa/interactionvolume.hh:41
Definition: multidomain/facet/cellcentered/mpfa/properties.hh:37
std::tuple< CCMpfaModel > InheritsFrom
Definition: multidomain/facet/cellcentered/mpfa/properties.hh:37