From 76ee6f81e1913c34916e7b08572bbbbd9d6366e3 Mon Sep 17 00:00:00 2001
From: Melanie Lipp <melanie.lipp@iws.uni-stuttgart.de>
Date: Sat, 25 Aug 2018 14:51:22 +0200
Subject: [PATCH] [staggered][subdomainlocalassembler] Consider storage term
 and boundary in assembling face residual.

---
 dumux/multidomain/subdomainstaggeredlocalassembler.hh | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dumux/multidomain/subdomainstaggeredlocalassembler.hh b/dumux/multidomain/subdomainstaggeredlocalassembler.hh
index f86611b827..0baf5dccfa 100644
--- a/dumux/multidomain/subdomainstaggeredlocalassembler.hh
+++ b/dumux/multidomain/subdomainstaggeredlocalassembler.hh
@@ -322,10 +322,7 @@ private:
     void assembleResidualImpl_(Dune::index_constant<1>, SubSol& res)
     {
         for(auto&& scvf : scvfs(this->fvGeometry()))
-        {
             res[scvf.dofIndex()] +=  this->asImp_().assembleFaceResidualImpl(scvf);
-
-        }
     }
 
     //! Assembles the residuals and derivatives for the cell center dofs.
@@ -477,7 +474,7 @@ public:
 
     FaceResidualValue assembleFaceResidualImpl(const SubControlVolumeFace& scvf)
     {
-        return this->evalLocalFluxAndSourceResidualForFace(scvf);
+        return this->evalLocalResidualForFace(scvf);
     }
 
     /*!
-- 
GitLab