Skip to content
Snippets Groups Projects
Commit fad2ab22 authored by andy's avatar andy
Browse files

BUG: Added missing radiation contribution to buoyantPimpleFoam

parent f9bc4d88
No related merge requests found
...@@ -17,7 +17,8 @@ ...@@ -17,7 +17,8 @@
) )
- fvm::laplacian(turbulence->alphaEff(), he) - fvm::laplacian(turbulence->alphaEff(), he)
== ==
fvOptions(rho, he) radiation->Sh(thermo)
+ fvOptions(rho, he)
); );
EEqn.relax(); EEqn.relax();
...@@ -29,4 +30,5 @@ ...@@ -29,4 +30,5 @@
fvOptions.correct(he); fvOptions.correct(he);
thermo.correct(); thermo.correct();
radiation->correct();
} }
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