version 3.10.0
Loading...
Searching...
No Matches
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-FileCopyrightText: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
16
17#ifndef DUMUX_FACETCOUPLING_CC_MPFA_PROPERTIES_HH
18#define DUMUX_FACETCOUPLING_CC_MPFA_PROPERTIES_HH
19
20#include <concepts>
21
28
30
31namespace Dumux {
32
33namespace Properties {
34
37// Create new type tags
38namespace TTag {
39struct CCMpfaFacetCouplingModel { using InheritsFrom = std::tuple<CCMpfaModel>; };
40} // end namespace TTag
41
43template<class TypeTag>
44struct PrimaryInteractionVolume<TypeTag, TTag::CCMpfaFacetCouplingModel>
45{
46private:
49
50 // use the default traits
52public:
54};
55
57template<class TypeTag>
58struct SecondaryInteractionVolume<TypeTag, TTag::CCMpfaFacetCouplingModel>
59{
60private:
63
64 // use the default traits
66public:
68};
69
71template<class TypeTag>
72struct FluxVariables<TypeTag, TTag::CCMpfaFacetCouplingModel>
73{
76};
77
78} // namespace Properties
79
80namespace Detail {
81
82template<class T>
84
85template<CCMpfaFacetCouplingModel TypeTag>
87{
89};
90
91} // end namespace Detail
92
93} // namespace Dumux
94
95#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:35
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.
Definition multidomain/facet/cellcentered/mpfa/properties.hh:83
Definition ccmpfa.hh:177
The default local operator than can be specialized for each discretization scheme.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition propertysystem.hh:296
constexpr bool inheritsFrom()
Return true if the given type tag inherits from the given parent type tag.
Definition propertysystem.hh:262
Calculates the element-wise residual for cell-centered discretization schemes in models where couplin...
Forward declaration of the facet coupling MPFA-O interaction volume.
Modified upwind scheme for models using cell-centered schemes with coupling across element facets.
Distance implementation details.
Definition cvfelocalresidual.hh:25
Type tag for numeric models.
Definition grid.hh:24
The energy balance equation for a porous solid.
Definition common/properties.hh:26
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
CVFELocalResidual< TypeTag > type
Definition box.hh:147
Definition defaultlocaloperator.hh:19
PorousMediumFluxVariables< TypeTag, CCFacetCouplingUpwindScheme< GetPropType< TypeTag, Properties::GridGeometry > > > type
Definition multidomain/facet/cellcentered/mpfa/properties.hh:74
CCMpfaOFacetCouplingInteractionVolume< Traits > type
Definition multidomain/facet/cellcentered/mpfa/properties.hh:53
CCMpfaOFacetCouplingInteractionVolume< Traits > type
Definition multidomain/facet/cellcentered/mpfa/properties.hh:67
Definition multidomain/facet/cellcentered/mpfa/properties.hh:39
std::tuple< CCMpfaModel > InheritsFrom
Definition multidomain/facet/cellcentered/mpfa/properties.hh:39