BUG: Added missing radiation contribution to buoyantPimpleFoam

This commit is contained in:
andy
2013-01-23 08:58:47 +00:00
parent f9bc4d8864
commit fad2ab226b

View File

@ -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();
}