From fad2ab226bcbe87c906747b601b81dfa01dc4859 Mon Sep 17 00:00:00 2001 From: andy <andy> Date: Wed, 23 Jan 2013 08:58:47 +0000 Subject: [PATCH] BUG: Added missing radiation contribution to buoyantPimpleFoam --- applications/solvers/heatTransfer/buoyantPimpleFoam/EEqn.H | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/solvers/heatTransfer/buoyantPimpleFoam/EEqn.H b/applications/solvers/heatTransfer/buoyantPimpleFoam/EEqn.H index ee2a95f2082..b6cf96b5b0d 100644 --- a/applications/solvers/heatTransfer/buoyantPimpleFoam/EEqn.H +++ b/applications/solvers/heatTransfer/buoyantPimpleFoam/EEqn.H @@ -17,7 +17,8 @@ ) - fvm::laplacian(turbulence->alphaEff(), he) == - fvOptions(rho, he) + radiation->Sh(thermo) + + fvOptions(rho, he) ); EEqn.relax(); @@ -29,4 +30,5 @@ fvOptions.correct(he); thermo.correct(); + radiation->correct(); } -- GitLab