Skip to content
Snippets Groups Projects
Commit ba832fa3 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[CCTpfa] Remove evalFluxes_ method (outdated)

parent 78e24147
No related branches found
No related tags found
1 merge request!617[WIP] Next
......@@ -258,31 +258,6 @@ protected:
}
}
}
/*!
* \brief Add the flux terms to the local residual of the current element
*/
void evalFluxes_()
{
// calculate the mass flux over the faces and subtract
// it from the local rates
int fIdx = -1;
for (const auto& intersection : intersections(this->gridView_(), this->element_())) {
if (!intersection.neighbor())
continue;
fIdx++;
PrimaryVariables flux;
Valgrind::SetUndefined(flux);
this->asImp_().computeFlux(flux, fIdx);
Valgrind::CheckDefined(flux);
flux *= this->curVolVars_(0).extrusionFactor();
this->residual_[0] += flux;
}
}
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment