From ecbc33063f67e192aea1e5d36c47d8ece6b3c258 Mon Sep 17 00:00:00 2001 From: Kilian <kilian.weishaupt@iws.uni-stuttgart.de> Date: Thu, 4 Jun 2020 20:04:55 +0200 Subject: [PATCH] [test][porousmediumflow][3pwateroil] Use BoundaryTypes directly --- test/porousmediumflow/3pwateroil/implicit/problem.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/porousmediumflow/3pwateroil/implicit/problem.hh b/test/porousmediumflow/3pwateroil/implicit/problem.hh index cce598522e..d937a5b634 100644 --- a/test/porousmediumflow/3pwateroil/implicit/problem.hh +++ b/test/porousmediumflow/3pwateroil/implicit/problem.hh @@ -29,6 +29,8 @@ #include <dumux/porousmediumflow/problem.hh> +#include <dumux/common/boundarytypes.hh> + #include <dumux/discretization/box.hh> #include <dumux/porousmediumflow/3pwateroil/model.hh> @@ -128,7 +130,7 @@ class SagdProblem : public PorousMediumFlowProblem<TypeTag> using GridVariables = GetPropType<TypeTag, Properties::GridVariables>; using ElementVolumeVariables = typename GridVariables::GridVolumeVariables::LocalView; using ElementFluxVariablesCache = typename GridVariables::GridFluxVariablesCache::LocalView; - using BoundaryTypes = GetPropType<TypeTag, Properties::BoundaryTypes>; + using BoundaryTypes = Dumux::BoundaryTypes<GetPropType<TypeTag, Properties::ModelTraits>::numEq()>; using Element = typename GridView::template Codim<0>::Entity; using FVElementGeometry = typename GetPropType<TypeTag, Properties::GridGeometry>::LocalView; using SubControlVolumeFace = typename FVElementGeometry::SubControlVolumeFace; -- GitLab