15#ifndef DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_HH
16#define DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_HH
43template<
class TypeTag>
44struct GridGeometry<TypeTag, TTag::FaceCenteredStaggeredModel>
47 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridGeometryCache>();
54template<
class TypeTag>
55struct GridVolumeVariables<TypeTag, TTag::FaceCenteredStaggeredModel>
58 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridVolumeVariablesCache>();
68template<
class TypeTag>
69struct GridFluxVariablesCache<TypeTag, TTag::FaceCenteredStaggeredModel>
72 static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridFluxVariablesCache>();
86template<
class TypeTag>
87struct GridVariables<TypeTag, TTag::FaceCenteredStaggeredModel>
98template<
class TypeTag>
99struct ElementBoundaryTypes<TypeTag, TTag::FaceCenteredStaggeredModel>
112template<
class Problem>
116 using GG = std::decay_t<decltype(std::declval<Problem>().gridGeometry())>;
117 using Element =
typename GG::GridView::template Codim<0>::Entity;
118 using SubControlVolumeFace =
typename GG::SubControlVolumeFace;
122 using BoundaryTypes = std::decay_t<decltype(std::declval<Problem>().boundaryTypes(std::declval<Element>(), std::declval<SubControlVolumeFace>()))>;
125template<
class TypeTag>
127 typename GetPropType<TypeTag, Properties::GridGeometry>::DiscretizationMethod,
128 DiscretizationMethods::FCStaggered
The grid variable class for finite volume schemes storing variables on scv and scvf (volume and flux ...
Definition: discretization/fvgridvariables.hh:30
This class stores an array of BoundaryTypes objects.
Definition: facecentered/staggered/elementboundarytypes.hh:25
Base class for the finite volume geometry vector for face-centered staggered models This builds up th...
Definition: discretization/facecentered/staggered/fvgridgeometry.hh:86
Flux variable caches on a gridview.
Definition: discretization/facecentered/staggered/gridfluxvariablescache.hh:48
Base class for the grid volume variables.
Definition: facecentered/staggered/gridvolumevariables.hh:45
Defines all properties used in Dumux.
Type traits for problem classes.
Definition: fcstaggered.hh:126
Global flux variable cache.
Boundary types gathered on an element.
The grid volume variables class for face-centered staggered models.
Calculates the element-wise residual for the box scheme.
Classes related to flux variables caching.
Declares properties required for finite-volume models models.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296
typename GetPropOr< TypeTag, Property, T >::type GetPropTypeOr
get the type alias defined in the property or the type T if the property is undefined
Definition: propertysystem.hh:303
The available discretization methods in Dumux.
Definition: cvfelocalresidual.hh:28
The energy balance equation for a porous solid.
Definition: common/properties.hh:26
std::decay_t< decltype(std::declval< Problem >().boundaryTypes(std::declval< Element >(), std::declval< SubControlVolumeFace >()))> BoundaryTypes
Definition: fcstaggered.hh:122
GG GridGeometry
Definition: fcstaggered.hh:120
Definition: common/typetraits/problem.hh:23
Definition: facecentered/staggered/gridvolumevariables.hh:29
The empty filler class corresponding to EmptyCache.
Definition: fluxvariablescaching.hh:20
An empty flux variables cache.
Definition: fluxvariablescaching.hh:35
typename Detail::template ProblemTraits< Problem, typename GridGeometry::DiscretizationMethod >::BoundaryTypes BoundaryTypes
Definition: common/typetraits/problem.hh:34
Definition: fcstaggered.hh:39
std::tuple< FiniteVolumeModel > InheritsFrom
Definition: fcstaggered.hh:39