Skip to content
Snippets Groups Projects
Commit 3951cca2 authored by sergio's avatar sergio
Browse files

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.
parent 0b4a97bc
Branches
Tags
No related merge requests found
......@@ -85,7 +85,7 @@ void Foam::functionObjects::wallHeatFlux::calcHeatFlux
forAll(wallHeatFluxBf, patchi)
{
wallHeatFluxBf[patchi] += radHeatFluxBf[patchi];
wallHeatFluxBf[patchi] -= radHeatFluxBf[patchi];
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment