Skip to content
Snippets Groups Projects
Commit a2ce2518 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[1p][fracturetest] use AtPos() methods in spatial params

parent 2d24a393
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!318Unified Spatialparams interface, improved vtk output module
......@@ -59,6 +59,9 @@ class FractureSpatialParams : public ImplicitSpatialParamsOneP<TypeTag>
using SubControlVolume = typename GET_PROP_TYPE(TypeTag, SubControlVolume);
using VolumeVariables = typename GET_PROP_TYPE(TypeTag, VolumeVariables);
static constexpr int dimWorld = GridView::dimensionworld;
using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>;
public:
/*!
......@@ -77,8 +80,7 @@ public:
* \param fvGeometry The finite volume geometry of the element
* \param scvIdx The local index of the sub-control volume
*/
Scalar intrinsicPermeability (const SubControlVolume &scv,
const VolumeVariables& volVars) const
Scalar permeabilityAtPos (const GlobalPosition& globalPos) const
{ return 1e-12; }
/*!
......@@ -88,7 +90,7 @@ public:
* \param fvGeometry The finite volume geometry of the element
* \param scvIdx The local index of the sub-control volume
*/
Scalar porosity(const SubControlVolume &scv) const
Scalar porosityAtPos(const GlobalPosition& globalPos) const
{ return 0.4; }
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment