From 93090be3c7a87a6394d5ee7f56db5c9865c0543e Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Thu, 10 Aug 2017 15:11:12 +0200 Subject: [PATCH] [box] Fix interface for global flux var caching --- dumux/discretization/box/globalfluxvariablescache.hh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dumux/discretization/box/globalfluxvariablescache.hh b/dumux/discretization/box/globalfluxvariablescache.hh index 51743e9088..0c6d134d46 100644 --- a/dumux/discretization/box/globalfluxvariablescache.hh +++ b/dumux/discretization/box/globalfluxvariablescache.hh @@ -68,10 +68,13 @@ public: auto fvGeometry = localView(problem.model().globalFvGeometry()); fvGeometry.bind(element); + auto elemVolVars = localView(problem.model().curGlobalVolVars()); + elemVolVars.bind(element, fvGeometry, problem.model().curSol()); + fluxVarsCache_[eIdx].resize(fvGeometry.numScvf()); for (auto&& scvf : scvfs(fvGeometry)) { - this->get(eIdx, scvf.index()).update(problem, element, fvGeometry, scvf); + this->get(eIdx, scvf.index()).update(problem, element, fvGeometry, elemVolVars, scvf); } } } -- GitLab