Class for the stencil local flux variables cache for the staggered model. Specialization for the case of not storing the fluxvars cache globally.  
|  | 
|  | StaggeredElementFluxVariablesCache (const GridFluxVariablesCache &global) | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| StaggeredElementFluxVariablesCache | bindElement (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars) && | 
|  | bind the local view (r-value overload) This overload is called when an instance of this class is a temporary in the usage context This allows a usage like this: const auto view = localView(...).bind(element);
 | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| void | bindElement (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars) & | 
|  | Specialization for the global caching being enabled - do nothing here. 
 | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| StaggeredElementFluxVariablesCache | bind (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars) && | 
|  | bind the local view (r-value overload) This overload is called when an instance of this class is a temporary in the usage context This allows a usage like this: const auto view = localView(...).bind(element);
 | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| void | bind (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars) & | 
|  | Specialization for the global caching being enabled - do nothing here. 
 | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| StaggeredElementFluxVariablesCache | bindScvf (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const typename FVElementGeometry::SubControlVolumeFace &scvf) && | 
|  | bind the local view (r-value overload) This overload is called when an instance of this class is a temporary in the usage context This allows a usage like this: const auto view = localView(...).bind(element);
 | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| void | bindScvf (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const typename FVElementGeometry::SubControlVolumeFace &scvf) & | 
|  | Specialization for the global caching being enabled - do nothing here. 
 | 
|  | 
| template<class FVElementGeometry, class ElementVolumeVariables> | 
| void | update (const typename FVElementGeometry::GridGeometry::GridView::template Codim< 0 >::Entity &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars) | 
|  | Update the transmissibilities if the volume variables have changed. 
 | 
|  | 
| template<class SubControlVolumeFace> | 
| const FluxVariablesCache & | operator[] (const SubControlVolumeFace &scvf) const | 
|  | access operators in the case of no caching 
 | 
|  | 
| template<class SubControlVolumeFace> | 
| FluxVariablesCache & | operator[] (const SubControlVolumeFace &scvf) | 
|  | 
| const GridFluxVariablesCache & | gridFluxVarsCache () const | 
|  | The global object we are a restriction of. 
 | 
|  |