Remove unneeded timeIdx argument.

This commit is contained in:
Atgeirr Flø Rasmussen
2022-09-29 14:13:23 +02:00
parent 66e5da9709
commit 521b057035
2 changed files with 4 additions and 7 deletions

View File

@@ -493,7 +493,7 @@ private:
if (insideIntQuants == nullptr) {
throw std::logic_error("Missing updated intensive quantities for cell " + std::to_string(globI));
}
LocalResidual::computeBoundaryFlux(adres, problem_(), bdyInfo.bcdata, *insideIntQuants, globI, 0);
LocalResidual::computeBoundaryFlux(adres, problem_(), bdyInfo.bcdata, *insideIntQuants, globI);
adres *= bdyInfo.bcdata.faceArea;
setResAndJacobi(res, bMat, adres);
residual_[globI] += res;