BUG: processorFaPatch: fix the sign of compound assignment

This commit is contained in:
Kutalmis Bercin
2022-12-13 10:19:15 +00:00
committed by Mark OLESEN
parent d58e06494d
commit 0de1df7309

View File

@ -84,7 +84,7 @@ void Foam::processorFaPatchField<Foam::scalar>::updateInterfaceMatrix
{
forAll(edgeFaces, facei)
{
result[edgeFaces[facei]] -= coeffs[facei]*pnf[facei];
result[edgeFaces[facei]] += coeffs[facei]*pnf[facei];
}
}
else