Skip to content
Snippets Groups Projects
Commit 5dbc2e53 authored by Andrew Heather's avatar Andrew Heather
Browse files

moved h-eqn out of PISO loop

parent 04064d11
Branches
Tags
No related merge requests found
......@@ -79,18 +79,18 @@ int main(int argc, char *argv[])
rhoEffLagrangian = coalParcels.rhoEff() + limestoneParcels.rhoEff();
pDyn = 0.5*rho*magSqr(U);
Info << "Evolving coal cloud" << endl;
coalParcels.evolve();
coalParcels.info();
Info << "Evolving limestone cloud" << endl;
Info<< endl;
limestoneParcels.evolve();
limestoneParcels.info();
Info<< endl;
#include "chemistry.H"
#include "rhoEqn.H"
......@@ -99,11 +99,11 @@ int main(int argc, char *argv[])
{
#include "UEqn.H"
#include "YEqn.H"
#include "hEqn.H"
// --- PISO loop
for (int corr=1; corr<=nCorr; corr++)
{
#include "hEqn.H"
#include "pEqn.H"
}
......
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