12#ifndef DUMUX_COMMON_FV_PROBLEM_WITH_SPATIAL_PARAMS_HH
13#define DUMUX_COMMON_FV_PROBLEM_WITH_SPATIAL_PARAMS_HH
26template<
class TypeTag>
63 {
return *spatialParams_; }
67 {
return *spatialParams_; }
71 std::shared_ptr<SpatialParams> spatialParams_;
Base class for all finite-volume problems.
Definition: common/fvproblem.hh:43
const std::string & paramGroup() const
The parameter group in which to retrieve runtime parameters.
Definition: common/fvproblem.hh:528
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: common/fvproblem.hh:524
Base class for all finite-volume problems using spatial parameters.
Definition: fvproblemwithspatialparams.hh:29
GetPropType< TypeTag, Properties::SpatialParams > SpatialParams
Definition: fvproblemwithspatialparams.hh:34
FVProblemWithSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry, const std::string ¶mGroup="")
Constructor.
Definition: fvproblemwithspatialparams.hh:42
const SpatialParams & spatialParams() const
Return a reference to the underlying spatial parameters.
Definition: fvproblemwithspatialparams.hh:62
SpatialParams & spatialParams()
Return a reference to the underlying spatial parameters.
Definition: fvproblemwithspatialparams.hh:66
FVProblemWithSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry, std::shared_ptr< SpatialParams > spatialParams, const std::string ¶mGroup="")
Constructor.
Definition: fvproblemwithspatialparams.hh:54
Base class for all finite volume problems.
Defines all properties used in Dumux.
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:296