diff --git a/dumux/freeflow/staggered/localresidual.hh b/dumux/freeflow/staggered/localresidual.hh
index 61caa336cbad9d1224a4142b52618a3cc001ab73..e87b58925812ca963240bf9eb31b85e40752e8e9 100644
--- a/dumux/freeflow/staggered/localresidual.hh
+++ b/dumux/freeflow/staggered/localresidual.hh
@@ -276,7 +276,7 @@ protected:
                         if(bcTypes.isNeumann(eqIdx))
                         {
                             const auto extrusionFactor = 1.0; //TODO: get correct extrusion factor
-                            boundaryFlux[eqIdx] = problem.neumannAtPos(scvf.center())[cellCenterIdx][eqIdx]
+                            boundaryFlux[eqIdx] = problem.neumann(element, scvf)[cellCenterIdx][eqIdx]
                                                    * extrusionFactor * scvf.area();
                         }
                 }
diff --git a/dumux/freeflow/staggered/problem.hh b/dumux/freeflow/staggered/problem.hh
index 081bebb8ada2e91836aab56d46ce6b19690d4208..f954237503fe6234fe1e8258acf111392be0b7d9 100644
--- a/dumux/freeflow/staggered/problem.hh
+++ b/dumux/freeflow/staggered/problem.hh
@@ -43,21 +43,18 @@ class NavierStokesProblem : public StaggeredFVProblem<TypeTag>
     using Implementation = typename GET_PROP_TYPE(TypeTag, Problem);
 
     using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
-    using TimeManager = typename GET_PROP_TYPE(TypeTag, TimeManager);
     using Grid = typename GridView::Grid;
     using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar);
     using Indices = typename GET_PROP_TYPE(TypeTag, Indices);
 
     using Element = typename GridView::template Codim<0>::Entity;
-    using Intersection = typename GridView::Intersection;
-
-    using FVElementGeometry = typename GET_PROP_TYPE(TypeTag, FVElementGeometry);
     using FVGridGeometry = typename GET_PROP_TYPE(TypeTag, FVGridGeometry);
 
     using FacePrimaryVariables = typename GET_PROP_TYPE(TypeTag, FacePrimaryVariables);
     using PrimaryVariables = typename GET_PROP_TYPE(TypeTag, PrimaryVariables);
     using SubControlVolumeFace = typename GET_PROP_TYPE(TypeTag, SubControlVolumeFace);
     using SubControlVolume = typename GET_PROP_TYPE(TypeTag, SubControlVolume);
+    using BoundaryValues = typename GET_PROP_TYPE(TypeTag, BoundaryValues);
 
     enum {
         dim = Grid::dimension,
@@ -69,7 +66,7 @@ class NavierStokesProblem : public StaggeredFVProblem<TypeTag>
         velocityYIdx = Indices::velocityYIdx
     };
 
-    typedef Dune::FieldVector<Scalar, dimWorld> GlobalPosition;
+    using GlobalPosition = Dune::FieldVector<Scalar, dimWorld>;
 
     using DofTypeIndices = typename GET_PROP(TypeTag, DofTypeIndices);
     typename DofTypeIndices::CellCenterIdx cellCenterIdx;
@@ -95,11 +92,32 @@ public:
      *
      * \param scvf The sub control volume face
      */
-    auto dirichlet(const Element &element, const SubControlVolumeFace &scvf) const
+    BoundaryValues dirichlet(const Element &element, const SubControlVolumeFace &scvf) const
     {
         return asImp_().dirichletAtPos(scvf.center());
     }
 
+    /*!
+     * \brief Returns neumann values at a given scv face.
+       This method can be overloaded in the actual problem, e.g. for coupling strategies
+     *
+     * \param scvf The sub control volume face
+     */
+    BoundaryValues neumann(const Element &element, const SubControlVolumeFace &scvf) const
+    {
+        return asImp_().neumannAtPos(scvf.center());
+    }
+
+    /*!
+     * \brief Returns neumann values at a position.
+     *
+     * \param scvf The sub control volume face
+     */
+    BoundaryValues neumannAtPos(const GlobalPosition& globalPos) const
+    {
+        return BoundaryValues(0.0);
+    }
+
     /*!
      * \brief Returns the temperature \f$\mathrm{[K]}\f$ at a given global position.
      *