version 3.10.0
Loading...
Searching...
No Matches
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-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_TPFA_PROPERTIES_HH
18#define DUMUX_FACETCOUPLING_CC_TPFA_PROPERTIES_HH
19
20#include <concepts>
21#include <type_traits>
22
31
33
34namespace Dumux {
35
36namespace Properties {
37
40// Create new type tags
41namespace TTag {
42struct CCTpfaFacetCouplingModel { using InheritsFrom = std::tuple<CCTpfaModel>; };
43} // end namespace TTag
44
46template<class TypeTag>
52
54template<class TypeTag>
55struct MolecularDiffusionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
56{
58};
59
61template<class TypeTag>
62struct HeatConductionType<TypeTag, TTag::CCTpfaFacetCouplingModel>
63{
65};
66
68template<class TypeTag>
69struct FluxVariables<TypeTag, TTag::CCTpfaFacetCouplingModel>
70{
73};
74
75} // namespace Properties
76
77namespace Detail {
78
79template<class T>
81
82template<CCTpfaFacetCouplingModel TypeTag>
84{
86};
87
88} // end namespace Detail
89
90} // namespace Dumux
91
92#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: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
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/tpfa/properties.hh:80
Definition cctpfa.hh:112
The default local operator than can be specialized for each discretization scheme.
CCTpfaFacetCouplingFicksLawImpl< TypeTag, referenceSystem,(int(GetPropType< TypeTag, Properties::GridGeometry >::GridView::dimension)< int(GetPropType< TypeTag, Properties::GridGeometry >::GridView::dimensionworld)) > CCTpfaFacetCouplingFicksLaw
Fick's law for cell-centered finite volume schemes with two-point flux approximation in the context o...
Definition multidomain/facet/cellcentered/tpfa/fickslaw.hh:47
CCTpfaFacetCouplingFouriersLawImpl< TypeTag,(int(GetPropType< TypeTag, Properties::GridGeometry >::GridView::dimension)< int(GetPropType< TypeTag, Properties::GridGeometry >::GridView::dimensionworld)) > CCTpfaFacetCouplingFouriersLaw
Fouriers's law for cell-centered finite volume schemes with two-point flux approximation in the conte...
Definition multidomain/facet/cellcentered/tpfa/fourierslaw.hh:45
CCTpfaFacetCouplingDarcysLawImpl< ScalarType, GridGeometry,(int(GridGeometry::GridView::dimension)< int(GridGeometry::GridView::dimensionworld)) > CCTpfaFacetCouplingDarcysLaw
Darcy's law for cell-centered finite volume schemes with two-point flux approximation in the context ...
Definition multidomain/facet/cellcentered/tpfa/darcyslaw.hh:51
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...
Darcy's law for cell-centered finite volume schemes with two-point flux approximation in the context ...
Fick's law for cell-centered finite volume schemes with two-point flux approximation in the context o...
Fouriers's law for cell-centered finite volume schemes with two-point flux approximation in the conte...
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.
CVFELocalResidual< TypeTag > type
Definition box.hh:147
Definition defaultlocaloperator.hh:19
CCTpfaFacetCouplingDarcysLaw< GetPropType< TypeTag, Properties::Scalar >, GetPropType< TypeTag, Properties::GridGeometry > > type
Definition multidomain/facet/cellcentered/tpfa/properties.hh:49
PorousMediumFluxVariables< TypeTag, CCFacetCouplingUpwindScheme< GetPropType< TypeTag, Properties::GridGeometry > > > type
Definition multidomain/facet/cellcentered/tpfa/properties.hh:71
CCTpfaFacetCouplingFouriersLaw< TypeTag > type
Definition multidomain/facet/cellcentered/tpfa/properties.hh:64
CCTpfaFacetCouplingFicksLaw< TypeTag > type
Definition multidomain/facet/cellcentered/tpfa/properties.hh:57
Definition multidomain/facet/cellcentered/tpfa/properties.hh:42
std::tuple< CCTpfaModel > InheritsFrom
Definition multidomain/facet/cellcentered/tpfa/properties.hh:42