diff --git a/dumux/porousmediumflow/velocity.hh b/dumux/porousmediumflow/velocity.hh index 00884cbf125f71f05fd5bb8bb75a34bde6e5b114..bb2e5a6b30bda404897d3adbba84a98f436c0655 100644 --- a/dumux/porousmediumflow/velocity.hh +++ b/dumux/porousmediumflow/velocity.hh @@ -335,7 +335,7 @@ public: // We assume that the density at the face equals the one at the cell center and reconstruct a volume flux from the Neumann mass flux. const auto& insideVolVars = elemVolVars[scvf.insideScvIdx()]; const auto eqIdx = VolumeVariables::Indices::conti0EqIdx + phaseIdx; - scvfFluxes[fIdx] += neumannFlux[eqIdx] / insideVolVars.density(phaseIdx) * scvf.area() * insideVolVars.extrusionFactor(); + scvfFluxes[fIdx] += neumannFlux[eqIdx] / insideVolVars.density(phaseIdx) * scvf.area(); } else {