BUG: heatTransferCoeff: correct the radiation-contribution sign (fixes #3325)

This commit is contained in:
Kutalmis Bercin
2025-08-08 15:34:38 +01:00
parent 9cbf544ecd
commit 954a54ea73

View File

@ -125,7 +125,7 @@ Foam::heatTransferCoeffModel::q() const
for (const label patchi : patchIDs_)
{
q[patchi] += qrbf[patchi];
q[patchi] -= qrbf[patchi];
}
}