25#ifndef DUMUX_TISSUE_SPATIAL_PARAMS_HH
26#define DUMUX_TISSUE_SPATIAL_PARAMS_HH
36template<
class Gr
idGeometry,
class Scalar>
38:
public FVSpatialParamsOneP<GridGeometry, Scalar, TissueSpatialParams<GridGeometry, Scalar>>
42 using GridView =
typename GridGeometry::GridView;
43 using Element =
typename GridView::template Codim<0>::Entity;
44 using SubControlVolume =
typename GridGeometry::SubControlVolume;
52 permeability_ = getParam<Scalar>(
"SpatialParams.PermeabilityTissue");
63 template<
class ElementSolution>
65 const SubControlVolume& scv,
66 const ElementSolution& elemSol)
const
78 template<
class ElementSolution>
80 const SubControlVolume& scv,
81 const ElementSolution& elemSol)
const
The base class for spatial parameters of one-phase problems using a fully implicit discretization met...
make the local view function available whenever we use the grid geometry
Definition: adapt.hh:29
The base class for spatial parameters of one-phase problems using a fully implicit discretization met...
Definition: fv1p.hh:77
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: fv1p.hh:334
Definition of the spatial parameters for the tissue problem.
Definition: spatialparams_tissue.hh:39
PermeabilityType permeability(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Defines the intrinsic permeability .
Definition: spatialparams_tissue.hh:64
Scalar PermeabilityType
Definition: spatialparams_tissue.hh:47
TissueSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry)
Definition: spatialparams_tissue.hh:49
Scalar porosity(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Defines the porosity .
Definition: spatialparams_tissue.hh:79