diff --git a/dumux/assembly/boxlocalassembler.hh b/dumux/assembly/boxlocalassembler.hh index 59857bd37f6025ebf5e2ad7acfd9977838ed6f54..343839ddc33d2c913fca05a19f380f3b29375c9a 100644 --- a/dumux/assembly/boxlocalassembler.hh +++ b/dumux/assembly/boxlocalassembler.hh @@ -207,7 +207,6 @@ public: const auto& fvGeometry = this->fvGeometry(); const auto& curSol = this->curSol(); auto&& curElemVolVars = this->curElemVolVars(); - auto&& elemFluxVarsCache = this->elemFluxVarsCache(); // get the vecor of the acutal element residuals const auto origResiduals = this->evalLocalResidual(); @@ -241,19 +240,9 @@ public: auto evalResiduals = [&](Scalar priVar) { - // auto partialDerivsTmp = partialDerivs; - // update the volume variables and the flux var cache + // update the volume variables and compute element residual elemSol[scv.indexInElement()][pvIdx] = priVar; curVolVars.update(elemSol, this->problem(), element, scv); - // if (enableGridFluxVarsCache) - // gridVariables.gridFluxVarsCache().updateElement(element, fvGeometry, curElemVolVars); - // else - // elemFluxVarsCache.update(element, fvGeometry, curElemVolVars); - //TODO: fluxvar caches! - // - - - return this->evalLocalResidual(); };