24#ifndef DUMUX_DISCRETIZATION_STAGGERED_GRID_FLUXVARSCACHE_HH
25#define DUMUX_DISCRETIZATION_STAGGERED_GRID_FLUXVARSCACHE_HH
41template<
class P,
class FVC,
class FVCF,
int upwOrder>
48 template<
class Gr
idFluxVariablesCache,
bool cachingEnabled>
57template<
class Problem,
58 class FluxVariablesCache,
59 class FluxVariablesCacheFiller,
60 bool EnableGridFluxVariablesCache =
false,
61 int upwindSchemeOrder = 1,
70template<
class P,
class FVC,
class FVCF,
int upwindSchemeOrder,
class TheTraits>
73 using Problem =
typename TheTraits::Problem;
77 using FluxVariablesCacheFiller =
typename TheTraits::FluxVariablesCacheFiller;
84 using Scalar =
typename FluxVariablesCache::Scalar;
86 static constexpr bool useHigherOrder = upwindSchemeOrder > 1;
89 static constexpr bool cachingEnabled =
true;
94 [[deprecated(
"Will be removed after 3.2. Use StaggeredGridFluxVariablesCache(problem) instead.")]]
96 : problemPtr_(&problem)
97 , staggeredUpwindMethods_(paramGroup)
101 : problemPtr_(&problem)
102 , staggeredUpwindMethods_(problem.paramGroup())
106 template<
class Gr
idGeometry,
class Gr
idVolumeVariables,
class SolutionVector>
107 void update(
const GridGeometry& gridGeometry,
108 const GridVolumeVariables& gridVolVars,
109 const SolutionVector& sol,
110 bool forceUpdate =
false)
113 if (FluxVariablesCacheFiller::isSolDependent || forceUpdate)
117 FluxVariablesCacheFiller filler(problem());
119 fluxVarsCache_.resize(gridGeometry.numScvf());
120 for (
const auto& element : elements(gridGeometry.gridView()))
123 auto fvGeometry =
localView(gridGeometry);
124 fvGeometry.bind(element);
126 auto elemVolVars =
localView(gridVolVars);
127 elemVolVars.bind(element, fvGeometry, sol);
129 for (
auto&& scvf : scvfs(fvGeometry))
131 filler.fill(*
this, fluxVarsCache_[scvf.index()], element, fvGeometry, elemVolVars, scvf, forceUpdate);
140 return staggeredUpwindMethods_;
144 {
return *problemPtr_; }
148 {
return fluxVarsCache_[scvfIdx]; }
151 {
return fluxVarsCache_[scvfIdx]; }
154 const Problem* problemPtr_;
157 std::vector<FluxVariablesCache> fluxVarsCache_;
158 std::vector<std::size_t> globalScvfIndices_;
166template<
class P,
class FVC,
class FVCF,
int upwindSchemeOrder,
class TheTraits>
169 using Problem =
typename TheTraits::Problem;
173 using FluxVariablesCacheFiller =
typename TheTraits::FluxVariablesCacheFiller;
182 using Scalar =
typename FluxVariablesCache::Scalar;
185 static constexpr bool cachingEnabled =
false;
191 : problemPtr_(&problem)
192 , staggeredUpwindMethods_(problem.paramGroup())
196 template<
class Gr
idGeometry,
class Gr
idVolumeVariables,
class SolutionVector>
197 void update(
const GridGeometry& gridGeometry,
198 const GridVolumeVariables& gridVolVars,
199 const SolutionVector& sol,
200 bool forceUpdate =
false) {}
203 {
return *problemPtr_; }
208 return staggeredUpwindMethods_;
212 const Problem* problemPtr_;
Free function to get the local view of a grid cache object.
This file contains different higher order methods for approximating the velocity.
GridCache::LocalView localView(const GridCache &gridCache)
Free function to get the local view of a grid cache object.
Definition: localview.hh:38
Base class for the stencil local flux variables cache for the staggered model.
Definition: staggered/elementfluxvariablescache.hh:41
Traits class to be used for the StaggeredGridVFluxVariablesCache.
Definition: staggered/gridfluxvariablescache.hh:43
static constexpr int upwindSchemeOrder
Definition: staggered/gridfluxvariablescache.hh:50
P Problem
Definition: staggered/gridfluxvariablescache.hh:44
FVCF FluxVariablesCacheFiller
Definition: staggered/gridfluxvariablescache.hh:46
FVC FluxVariablesCache
Definition: staggered/gridfluxvariablescache.hh:45
Flux variables cache class for staggered models.
Definition: staggered/gridfluxvariablescache.hh:63
Flux variables cache class for staggered models. Specialization in case of storing the flux cache.
Definition: staggered/gridfluxvariablescache.hh:72
typename FluxVariablesCache::Scalar Scalar
Definition: staggered/gridfluxvariablescache.hh:84
void update(const GridGeometry &gridGeometry, const GridVolumeVariables &gridVolVars, const SolutionVector &sol, bool forceUpdate=false)
Definition: staggered/gridfluxvariablescache.hh:107
TheTraits Traits
the flux var cache traits
Definition: staggered/gridfluxvariablescache.hh:80
StaggeredGridFluxVariablesCache(const Problem &problem)
Definition: staggered/gridfluxvariablescache.hh:100
typename Traits::template LocalView< ThisType, cachingEnabled > LocalView
export the type of the local view
Definition: staggered/gridfluxvariablescache.hh:92
typename Traits::FluxVariablesCache FluxVariablesCache
export the flux variable cache type
Definition: staggered/gridfluxvariablescache.hh:83
const StaggeredUpwindMethods< Scalar, upwindSchemeOrder > & staggeredUpwindMethods() const
Return the StaggeredUpwindMethods.
Definition: staggered/gridfluxvariablescache.hh:138
const Problem & problem() const
Definition: staggered/gridfluxvariablescache.hh:143
StaggeredGridFluxVariablesCache(const Problem &problem, const std::string ¶mGroup)
Definition: staggered/gridfluxvariablescache.hh:95
Flux variables cache class for staggered models. Specialization in case of not storing the flux cache...
Definition: staggered/gridfluxvariablescache.hh:168
typename Traits::FluxVariablesCache FluxVariablesCache
export the flux variable cache type
Definition: staggered/gridfluxvariablescache.hh:179
StaggeredGridFluxVariablesCache(const Problem &problem)
Definition: staggered/gridfluxvariablescache.hh:190
TheTraits Traits
the flux var cache traits
Definition: staggered/gridfluxvariablescache.hh:176
const Problem & problem() const
Definition: staggered/gridfluxvariablescache.hh:202
typename FluxVariablesCache::Scalar Scalar
the scalar type
Definition: staggered/gridfluxvariablescache.hh:182
const StaggeredUpwindMethods< Scalar, upwindSchemeOrder > & staggeredUpwindMethods() const
Return the UpwindingMethods.
Definition: staggered/gridfluxvariablescache.hh:206
typename Traits::template LocalView< ThisType, cachingEnabled > LocalView
export the type of the local view
Definition: staggered/gridfluxvariablescache.hh:188
void update(const GridGeometry &gridGeometry, const GridVolumeVariables &gridVolVars, const SolutionVector &sol, bool forceUpdate=false)
Definition: staggered/gridfluxvariablescache.hh:197
This file contains different higher order methods for approximating the velocity.
Definition: staggeredupwindmethods.hh:62