The base class for spatial parameters of porous-medium problems.  
|  | 
|  | FVPorousMediumSpatialParams (std::shared_ptr< const GridGeometry > gridGeometry) | 
|  | 
| template<class ElementSolution> | 
| Scalar | porosity (const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const | 
|  | Function for defining the porosity. That is possibly solution dependent. 
 | 
|  | 
| template<class SolidSystem, class ElementSolution, typename std::enable_if_t< SolidSystem::isInert() &&SolidSystem::numInertComponents==1 &&!decltype(isValid(Detail::hasInertVolumeFractionAtPos< GlobalPosition, SolidSystem >())(std::declval< Implementation >()))::value, int > = 0> | 
| Scalar | inertVolumeFraction (const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol, int compIdx) const | 
|  | Function for defining the solid volume fraction. That is possibly solution dependent. 
 | 
|  | 
| template<class SolidSystem, class ElementSolution, typename std::enable_if_t< SolidSystem::numInertComponents==0, int > = 0> | 
| Scalar | inertVolumeFraction (const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol, int compIdx) const | 
|  | 
| template<class SolidSystem, class ElementSolution, typename std::enable_if_t<(SolidSystem::numInertComponents > 1)||((SolidSystem::numInertComponents > 0) &&(!SolidSystem::isInert()||decltype(isValid(Detail::hasInertVolumeFractionAtPos< GlobalPosition, SolidSystem >())(std::declval< Implementation >()))::value)), int > = 0> | 
| Scalar | inertVolumeFraction (const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol, int compIdx) const | 
|  | 
| template<class ElementSolution> | 
| Scalar | extrusionFactor (const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const | 
|  | Return how much the domain is extruded at a given sub-control volume. 
 | 
|  | 
| Scalar | extrusionFactorAtPos (const GlobalPosition &globalPos) const | 
|  | Return how much the domain is extruded at a given position. 
 | 
|  | 
| template<class ElementSolution> | 
| Scalar | temperature (const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const | 
|  | Return the temperature in the given sub-control volume. 
 | 
|  | 
| Scalar | temperatureAtPos (const GlobalPosition &globalPos) const | 
|  | Return the temperature in the domain at the given position. 
 | 
|  | 
| const GravityVector & | gravity (const GlobalPosition &pos) const | 
|  | Returns the acceleration due to gravity \(\mathrm{[m/s^2]}\). 
 | 
|  | 
| const GridGeometry & | gridGeometry () const | 
|  | The finite volume grid geometry. 
 | 
|  | 
template<class GridGeometry, class Scalar, class Implementation> 
template<class ElementSolution> 
  
  | 
        
          | Scalar Dumux::FVSpatialParams< GridGeometry, Scalar, Implementation >::extrusionFactor | ( | const Element & | element, |  
          |  |  | const SubControlVolume & | scv, |  
          |  |  | const ElementSolution & | elemSol ) const |  | inlineinherited | 
 
This means the factor by which a lower-dimensional (1D or 2D) entity needs to be expanded to get a full dimensional cell. The default is 1.0 which means that 1D problems are actually thought as pipes with a cross section of 1 m^2 and 2D problems are assumed to extend 1 m to the back. 
 
 
template<class GridGeometry, class Scalar, class Implementation> 
  
  | 
        
          | const GravityVector & Dumux::FVSpatialParams< GridGeometry, Scalar, Implementation >::gravity | ( | const GlobalPosition & | pos | ) | const |  | inlineinherited | 
 
The default behaviour is a constant gravity vector; if the Problem.EnableGravity parameter is true, \(\boldsymbol{g} = ( 0,\dots,\ -9.81)^T \), else \(\boldsymbol{g} = ( 0,\dots, 0)^T \).
- Parameters
- 
  
    | pos | the spatial position at which to evaluate the gravity vector |