template<class TypeTag, class DM>
class Dumux::PorousMediumFluxVariablesCacheImplementation< TypeTag, DiscretizationMethods::CVFE< DM > >
We only store discretization-related quantities for control-volume finite element methods. Thus, we need no physics-dependent specialization and simply inherit from the physics-independent implementation. 
|  | 
| void | update (const Problem &problem, const Element &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const SubControlVolumeFace &scvf) | 
|  | update the cache for an scvf 
 | 
|  | 
| void | update (const Problem &problem, const Element &element, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars, const GlobalPosition &globalPos) | 
|  | update the cache for a given global position 
 | 
|  | 
| const GlobalPosition & | ipGlobal () const | 
|  | returns the global position for which this cache has been updated 
 | 
|  | 
| const std::vector< ShapeJacobian > & | shapeJacobian () const | 
|  | returns the shape function gradients in local coordinates at the integration point 
 | 
|  | 
| const std::vector< ShapeValue > & | shapeValues () const | 
|  | returns the shape function values at the integration point 
 | 
|  | 
| const JacobianInverseTransposed & | jacInvT () const | 
|  | returns inverse transposed jacobian at the integration point 
 | 
|  | 
| const GlobalPosition & | gradN (unsigned int scvIdxInElement) const | 
|  | returns the shape function gradients in global coordinates at the integration point 
 | 
|  |