BUG: Changing sign for the radiative flux for the wallHeatFlux FO.

NOTE: The radiative flux (qr) is positive when the heat flux is going into the wall,
this is oposite the the he flux which is positive going out of the wall.
This commit is contained in:
sergio 2017-12-21 09:33:45 -08:00
parent 0b4a97bce5
commit 3951cca2b1

View File

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