From c84dfc4651f26117247351e6aed0660ce155e1a1 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Wed, 22 Mar 2017 15:31:09 +0100 Subject: [PATCH] Merge branch 'fix/test_ccadaptive2p' into 'master' Fix of ccadaptive2p assertion error See merge request !425 --- dumux/porousmediumflow/2p/implicit/adaptionhelper.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dumux/porousmediumflow/2p/implicit/adaptionhelper.hh b/dumux/porousmediumflow/2p/implicit/adaptionhelper.hh index c69cba7691..3c21b24524 100644 --- a/dumux/porousmediumflow/2p/implicit/adaptionhelper.hh +++ b/dumux/porousmediumflow/2p/implicit/adaptionhelper.hh @@ -288,9 +288,9 @@ public: if (element.hasFather()) { auto eFather = element.father(); - while(eFather.isNew() && eFather.level() > 0) eFather = eFather.father(); - FVElementGeometry fvGeometryFather; - fvGeometryFather.update(problem.gridView(), eFather); + while(eFather.isNew() && eFather.level() > 0) + eFather = eFather.father(); + Scalar massFather = 0.0; if(!isBox) -- GitLab