From 78e24147766696e37244e5a3c7a32163b60e1680 Mon Sep 17 00:00:00 2001
From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de>
Date: Thu, 25 Feb 2016 19:17:44 +0100
Subject: [PATCH] [ImplicitModel] Remove fvGeometry from function calls

---
 dumux/implicit/localjacobian.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dumux/implicit/localjacobian.hh b/dumux/implicit/localjacobian.hh
index 33ec7ee9dc..2c36bcbec2 100644
--- a/dumux/implicit/localjacobian.hh
+++ b/dumux/implicit/localjacobian.hh
@@ -139,7 +139,7 @@ public:
         bcTypes_.update(problem_(), element_(), fvElemGeom_());
 
         // calculate the local residual
-        localResidual().eval(element_(), fvElemGeom_(), bcTypes_);
+        localResidual().eval(element_(), bcTypes_);
         residual_ = localResidual().residual();
 
         model_().updatePVWeights(fvElemGeom_());
@@ -406,7 +406,7 @@ protected:
             model_().curVolVars(scv).update(priVars, problem_(), element_(), scv);
 
             // calculate the residual with the deflected primary variables
-            localResidual().eval(element_(), fvElemGeom_(), bcTypes_);
+            localResidual().eval(element_(), bcTypes_);
 
             // store the residual and the storage term
             partialDeriv = localResidual().residual();
@@ -432,7 +432,7 @@ protected:
             model_().curVolVars(scv).update(priVars, problem_(), element_(), scv);
 
             // calculate the residual with the deflected primary variables
-            localResidual().eval(element_(), fvElemGeom_(), bcTypes_);
+            localResidual().eval(element_(), bcTypes_);
 
             // subtract the residual from the derivative storage
             partialDeriv -= localResidual().residual();
-- 
GitLab