15#ifndef DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_HH
16#define DUMUX_DISCRETIZATION_FACECENTERED_STAGGERED_HH
43template<
class TypeTag>
44struct GridGeometry<TypeTag,
TTag::FaceCenteredStaggeredModel>
54template<
class TypeTag>
55struct GridVolumeVariables<TypeTag,
TTag::FaceCenteredStaggeredModel>
68template<
class TypeTag>
69struct GridFluxVariablesCache<TypeTag,
TTag::FaceCenteredStaggeredModel>
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>
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
Base class for the finite volume geometry vector for face-centered staggered models This builds up th...
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.
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:310
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.
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
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
FaceCenteredStaggeredElementBoundaryTypes< BoundaryTypes > type
Definition fcstaggered.hh:105
FaceCenteredStaggeredGridFluxVariablesCache< Problem, FluxVariablesCache, FluxVariablesCacheFiller, enableCache > type
Definition fcstaggered.hh:82
FaceCenteredStaggeredFVGridGeometry< GridView, enableCache > type
Definition fcstaggered.hh:50
FVGridVariables< GG, GVV, GFVC > type
Definition fcstaggered.hh:94
FaceCenteredStaggeredGridVolumeVariables< Traits, enableCache > type
Definition fcstaggered.hh:63
Definition fcstaggered.hh:39
std::tuple< FiniteVolumeModel > InheritsFrom
Definition fcstaggered.hh:39