diff --git a/dumux/freeflow/stokes/stokeslocalresidual.hh b/dumux/freeflow/stokes/stokeslocalresidual.hh index 158b1d5f4647ffafbdebc967cdd429dea786a03f..7ab76bea9d38b8b8990924f8ebe2a8581314ff12 100644 --- a/dumux/freeflow/stokes/stokeslocalresidual.hh +++ b/dumux/freeflow/stokes/stokeslocalresidual.hh @@ -299,11 +299,11 @@ protected: DimVector pressureGradAtSCVCenter(0.0); DimVector grad(0.0); - for (int scvIdx = 0; scvIdx < this->fvGeometry_().numVertices; scvIdx++) + for (int scvIdx2 = 0; scvIdx2 < this->fvGeometry_().numVertices; scvIdx2++) { - grad = this->fvGeometry_().subContVol[scvIdx].gradCenter[scvIdx]; + grad = this->fvGeometry_().subContVol[scvIdx].gradCenter[scvIdx2]; Valgrind::CheckDefined(grad); - grad *= elemVolVars[scvIdx].pressure(); + grad *= elemVolVars[scvIdx2].pressure(); pressureGradAtSCVCenter += grad; }