diff --git a/dumux/porousmediumflow/implicit/velocityoutput.hh b/dumux/porousmediumflow/implicit/velocityoutput.hh
index 11b5bf06019747dc8c68ffc24624e648ff60db01..69d526dfa5f450c98a50a00e21ce3e9f3ec37b1c 100644
--- a/dumux/porousmediumflow/implicit/velocityoutput.hh
+++ b/dumux/porousmediumflow/implicit/velocityoutput.hh
@@ -161,9 +161,11 @@ public:
 
                 // get the volume flux divided by the area of the
                 // subcontrolvolume face in the reference element
-                // TODO: Divide by extrusion factor!!?
                 Scalar localArea = scvfReferenceArea_(geomType, scvf.index());
                 Scalar flux = fluxVars.advectiveFlux(phaseIdx, upwindTerm) / localArea;
+                flux /= problem_.extrusionFactor(element,
+                                                 fvGeometry.scv(scvf.insideScvIdx()),
+                                                 problem_.model().elementSolution(element, problem_.model().curSol()));
                 tmpVelocity *= flux;
 
                 const int eIdxGlobal = problem_.elementMapper().index(element);