13#ifndef DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_ONEP_CONSTANT_HH 
   14#define DUMUX_POROUS_MEDIUM_FLOW_FV_SPATIAL_PARAMS_ONEP_CONSTANT_HH 
   26template<
class Gr
idGeometry, 
class Scalar>
 
   32    using GlobalPosition = 
typename GridGeometry::GridView::template Codim<0>::Geometry::GlobalCoordinate;
 
   39    , porosity_(
getParam<Scalar>(
"SpatialParams.Porosity"))
 
   40    , permeability_(
getParam<Scalar>(
"SpatialParams.Permeability"))
 
   42        "SpatialParams.Temperature",
 
 
   51    { 
return permeability_; }
 
 
   63    { 
return temperature_; }
 
 
   66    const Scalar porosity_;
 
   67    const Scalar permeability_;
 
   68    const Scalar temperature_;
 
 
Scalar porosityAtPos(const GlobalPosition &globalPos) const
The porosity .
Definition fvspatialparams1pconstant.hh:56
FVPorousMediumFlowSpatialParamsOnePConstant(std::shared_ptr< const GridGeometry > gridGeometry)
Definition fvspatialparams1pconstant.hh:37
PermeabilityType permeabilityAtPos(const GlobalPosition &globalPos) const
The (intrinsic) permeability .
Definition fvspatialparams1pconstant.hh:50
Scalar PermeabilityType
Definition fvspatialparams1pconstant.hh:35
Scalar temperatureAtPos(const GlobalPosition &globalPos) const
The temperature .
Definition fvspatialparams1pconstant.hh:62
The base class for spatial parameters of single-phase problems.
Definition fvspatialparams1p.hh:26
const GridGeometry & gridGeometry() const
Definition common/fvspatialparams.hh:130
The base class for spatial parameters in single-phase porous-medium-flow problems.
T getParam(Args &&... args)
A free function to get a parameter from the parameter tree singleton.
Definition parameters.hh:139
The infrastructure to retrieve run-time parameters from Dune::ParameterTrees.