Skip to content
Snippets Groups Projects
Commit e40dd16e authored by Timo Koch's avatar Timo Koch
Browse files

[ccassembler][bugfix] Fix sign of flux neighbor residual for backward differences

parent fcc19f3e
No related branches found
No related tags found
Loading
......@@ -428,7 +428,7 @@ private:
for (std::size_t k = 0; k < numNeighbors; ++k)
for (auto scvfIdx : connectivityMap[globalI][k].scvfsJ)
{
neighborDeriv[k] += localResidual.evalFlux(problem,
neighborDeriv[k] -= localResidual.evalFlux(problem,
neighborElements[k],
fvGeometry,
curElemVolVars,
......
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