diff --git a/dumux/assembly/jacobianpattern.hh b/dumux/assembly/jacobianpattern.hh
index 87f28b888d0f375f06c28212eb71119ceade0ade..3829a66b73a91210da7c05062dc495ec91b0633b 100644
--- a/dumux/assembly/jacobianpattern.hh
+++ b/dumux/assembly/jacobianpattern.hh
@@ -125,7 +125,6 @@ auto getJacobianPattern(const GridGeometry& gridGeometry)
     const auto numDofs = gridGeometry.numDofs();
     Dune::MatrixIndexSet pattern(numDofs, numDofs);
 
-
     const auto& connectivityMap = gridGeometry.connectivityMap();
 
     // evaluate the acutal pattern
@@ -150,6 +149,7 @@ auto getJacobianPattern(const GridGeometry& gridGeometry)
             for (auto&& scvf : scvfs(fvGeometry))
             {
                 const auto faceGlobalI = scvf.dofIndex();
+                pattern.add(faceGlobalI, faceGlobalI);
                 for (auto&& faceGlobalJ : connectivityMap(faceIdx, faceIdx, scvf.index()))
                     pattern.add(faceGlobalI, faceGlobalJ);
             }
diff --git a/dumux/discretization/staggered/facesolution.hh b/dumux/discretization/staggered/facesolution.hh
index 71a486ec462afc104d742ca6631f47eb4254f26a..29d3bad86ca5629f76b8d810f9378597d0447fa3 100644
--- a/dumux/discretization/staggered/facesolution.hh
+++ b/dumux/discretization/staggered/facesolution.hh
@@ -50,9 +50,11 @@ public:
         const auto& connectivityMap = fvGridGeometry.connectivityMap();
         const auto& stencil = connectivityMap(FVGridGeometry::faceIdx(), FVGridGeometry::faceIdx(), scvf.index());
 
-        facePriVars_.reserve(stencil.size());
-        map_.reserve(stencil.size());
+        facePriVars_.reserve(stencil.size()+1);
+        map_.reserve(stencil.size()+1);
 
+        map_.push_back(scvf.dofIndex());
+        facePriVars_.push_back(sol[scvf.dofIndex()]);
         for(const auto dofJ : stencil)
         {
             map_.push_back(dofJ);
diff --git a/dumux/discretization/staggered/freeflow/connectivitymap.hh b/dumux/discretization/staggered/freeflow/connectivitymap.hh
index 536bef3c24a3630c959abec605cc1ee3370d9056..573af548418aa8435c554ce165e0e9b321e51ad2 100644
--- a/dumux/discretization/staggered/freeflow/connectivitymap.hh
+++ b/dumux/discretization/staggered/freeflow/connectivitymap.hh
@@ -181,7 +181,6 @@ private:
     {
         if(stencil.empty())
         {
-            stencil.push_back(scvf.axisData().selfDof);
             stencil.push_back(scvf.axisData().oppositeDof);
             addHigherOrderInAxisDofs_(scvf, stencil, std::integral_constant<bool, useHigherOrder>{});
         }
diff --git a/dumux/multidomain/subdomainstaggeredlocalassembler.hh b/dumux/multidomain/subdomainstaggeredlocalassembler.hh
index fd497df6a16aa4624a18a0a00f726c6118fb9590..103ff467e3c907e299c13c481c1d392889cd3837 100644
--- a/dumux/multidomain/subdomainstaggeredlocalassembler.hh
+++ b/dumux/multidomain/subdomainstaggeredlocalassembler.hh
@@ -668,7 +668,7 @@ public:
         //                                                                                              //
         //////////////////////////////////////////////////////////////////////////////////////////////////
 
-        // build derivatives with for cell center dofs w.r.t. cell center dofs
+        // build derivatives for face dofs w.r.t. face dofs
         const auto& connectivityMap = fvGridGeometry.connectivityMap();
 
         for (auto&& scvf : scvfs(fvGeometry))
@@ -679,8 +679,8 @@ public:
             using FaceSolution = GetPropType<TypeTag, Properties::StaggeredFaceSolution>;
             const auto origFaceSolution = FaceSolution(scvf, curSol, fvGridGeometry);
 
-            // build derivatives with for face dofs w.r.t. cell center dofs
-            for (const auto& globalJ : connectivityMap(faceId, faceId, scvf.index()))
+            // Lambda to evaluate the derivatives for faces
+            auto evaluateFaceDerivatives = [&](const std::size_t globalJ)
             {
                 // get the faceVars of the face with respect to which we are going to build the derivative
                 auto& faceVars = getFaceVarAccess(gridVariables.curGridFaceVars(), this->curElemFaceVars(), scvf);
@@ -719,9 +719,19 @@ public:
 
                     // restore the undeflected state of the coupling context
                     this->couplingManager().updateCouplingContext(domainI, *this, domainI, globalJ, origFaceSolution[globalJ], pvIdx);
-               }
-           }
-       }
+                }
+            };
+
+            // evaluate derivatives w.r.t. own dof
+            evaluateFaceDerivatives(scvf.dofIndex());
+
+            // get the list of face dofs that have an influence on the resdiual of the current face
+            const auto& connectivityMap = fvGridGeometry.connectivityMap();
+
+            // evaluate derivatives w.r.t. all other related face dofs
+            for (const auto& globalJ : connectivityMap(faceId, faceId, scvf.index()))
+               evaluateFaceDerivatives(globalJ);
+        }
 
         return origResiduals;
     }