diff --git a/dumux/common/pointsource.hh b/dumux/common/pointsource.hh
index 93800b83698a1cacb775a33fb6522975a45646d9..db0225802c00f679e7e4903dff1516a7da95f1d0 100644
--- a/dumux/common/pointsource.hh
+++ b/dumux/common/pointsource.hh
@@ -64,6 +64,7 @@ class PointSource
     typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
     typedef typename GET_PROP_TYPE(TypeTag, PrimaryVariables) PrimaryVariables;
     typedef typename GET_PROP_TYPE(TypeTag, Problem) Problem;
+    typedef typename GET_PROP_TYPE(TypeTag, ElementVolumeVariables) ElementVolumeVariables;
     typedef typename GET_PROP_TYPE(TypeTag, FVElementGeometry) FVElementGeometry;
     typedef typename GET_PROP_TYPE(TypeTag, SubControlVolume) SubControlVolume;
     typedef typename GridView::template Codim<0>::Entity Element;
@@ -142,7 +143,9 @@ public:
     // to be overloaded by derived classes
     void update(const Problem &problem,
                 const Element &element,
-                const SubControlVolume& scv)
+                const FVElementGeometry &fvGeometry,
+                const ElementVolumeVariables &elemVolVars,
+                const SubControlVolume &scv)
     {}
 
     //! set the number of embeddings for this point source
@@ -252,6 +255,8 @@ public:
     // to be overloaded by derived classes
     void update(const Problem &problem,
                 const Element &element,
+                const FVElementGeometry &fvGeometry,
+                const ElementVolumeVariables &elemVolVars,
                 const SubControlVolume &scv)
     { this->values_ = valueFunction_(problem.timeManager(), this->position()); }
 
diff --git a/dumux/implicit/problem.hh b/dumux/implicit/problem.hh
index 888ef162b41a8594e15e5f5b31848c46882c2136..9bdc2590519b1c83fce42a971e5153db87cfc961 100644
--- a/dumux/implicit/problem.hh
+++ b/dumux/implicit/problem.hh
@@ -391,12 +391,14 @@ public:
      * Positive values mean that the conserved quantity is created, negative ones mean that it vanishes.
      * E.g. for the mass balance that would be a mass rate in \f$ [ kg / s ] \f$.
      */
-    void pointSource(PointSource& pointSource,
+    void pointSource(PointSource& source,
                      const Element &element,
+                     const FVElementGeometry& fvGeometry,
+                     const ElementVolumeVariables& elemVolVars,
                      const SubControlVolume &scv) const
     {
         // forward to space dependent interface method
-        asImp_().pointSourceAtPos(pointSource, pointSource.position());
+        asImp_().pointSourceAtPos(source, source.position());
     }
 
     /*!
@@ -989,9 +991,9 @@ public:
                 // The second one might be more convenient for e.g. a solution dependent point source.
 
                 // we do an update e.g. used for TimeDependentPointSource
-                pointSource.update(asImp_(), element, scv);
+                pointSource.update(asImp_(), element, fvGeometry, elemVolVars, scv);
                 // call convienience problem interface function
-                asImp_().pointSource(pointSource, element, scv);
+                asImp_().pointSource(pointSource, element, fvGeometry, elemVolVars, scv);
                 // at last take care about multiplying with the correct volume
                 pointSource /= volume;
                 // add the point source values to the local residual