wallHeatFlux: Changed sign of radiative heat flux contribution

to compensate for the inconsistent definition of this flux

Resolves bug-report https://bugs.openfoam.org/view.php?id=2722
This commit is contained in:
Henry Weller
2017-11-29 10:59:01 +00:00
parent dfa9d0787d
commit a268af9720

View File

@ -90,7 +90,7 @@ void Foam::functionObjects::wallHeatFlux::calcHeatFlux
forAll(wallHeatFluxBf, patchi) forAll(wallHeatFluxBf, patchi)
{ {
wallHeatFluxBf[patchi] += radHeatFluxBf[patchi]; wallHeatFluxBf[patchi] -= radHeatFluxBf[patchi];
} }
} }
} }