25#ifndef DUMUX_FRACTURE_TEST_SPATIAL_PARAMS_HH
26#define DUMUX_FRACTURE_TEST_SPATIAL_PARAMS_HH
36template<
class Gr
idGeometry,
class Scalar>
38:
public FVSpatialParamsOneP<GridGeometry, Scalar, MatrixFractureSpatialParams<GridGeometry, Scalar>>
42 using GridView =
typename GridGeometry::GridView;
43 using Element =
typename GridView::template Codim<0>::Entity;
44 using SubControlVolume =
typename GridGeometry::SubControlVolume;
51 const std::string& paramGroup =
"")
54 permeability_ = getParamFromGroup<Scalar>(paramGroup,
"SpatialParams.Permeability");
55 porosity_ = getParamFromGroup<Scalar>(paramGroup,
"SpatialParams.Porosity", 1.0);
65 template<
class ElementSolution>
67 const SubControlVolume& scv,
68 const ElementSolution& elemSol)
const
80 template<
class ElementSolution>
82 const SubControlVolume& scv,
83 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 matrix and fracture problem.
Definition: multidomain/embedded/2d3d/1p_1p/spatialparams.hh:39
Scalar PermeabilityType
Definition: multidomain/embedded/2d3d/1p_1p/spatialparams.hh:48
PermeabilityType permeability(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Defines the intrinsic permeability .
Definition: multidomain/embedded/2d3d/1p_1p/spatialparams.hh:66
Scalar porosity(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol) const
Defines the porosity .
Definition: multidomain/embedded/2d3d/1p_1p/spatialparams.hh:81
MatrixFractureSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry, const std::string ¶mGroup="")
Definition: multidomain/embedded/2d3d/1p_1p/spatialparams.hh:50