version 3.8
multidomain/facet/cellcentered/tpfa/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_TPFA_PROPERTIES_HH
18#define DUMUX_FACETCOUPLING_CC_TPFA_PROPERTIES_HH
19
27
29
30namespace Dumux {
31
32namespace Properties {
33
36// Create new type tags
37namespace TTag {
38struct CCTpfaFacetCouplingModel { using InheritsFrom = std::tuple<CCTpfaModel>; };
39} // end namespace TTag
40
42template<class TypeTag>
43struct AdvectionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
44{
47};
48
50template<class TypeTag>
51struct MolecularDiffusionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
52{
54};
55
57template<class TypeTag>
58struct HeatConductionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
59{
61};
62
64template<class TypeTag>
65struct BaseLocalResidual<TypeTag, TTag::CCTpfaFacetCouplingModel> { using type = CCFacetCouplingLocalResidual<TypeTag>; };
66
68template<class TypeTag>
69struct FluxVariables<TypeTag, TTag::CCTpfaFacetCouplingModel>
70{
73};
74
75} // namespace Properties
76} // namespace Dumux
77
78#endif
Properties for all models using cell-centered finite volume scheme with TPFA.
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 implementation.
Definition: multidomain/facet/cellcentered/tpfa/darcyslaw.hh:33
Forward declaration of the implementation.
Definition: multidomain/facet/cellcentered/tpfa/fickslaw.hh:38
Forward declaration of the implementation.
Definition: multidomain/facet/cellcentered/tpfa/fourierslaw.hh:36
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.
Definition: multidomain/facet/cellcentered/tpfa/properties.hh:38
std::tuple< CCTpfaModel > InheritsFrom
Definition: multidomain/facet/cellcentered/tpfa/properties.hh:38