2 label nAlphaCorr(readLabel(pimple.dict().lookup("nAlphaCorr")));
4 label nAlphaSubCycles(readLabel(pimple.dict().lookup("nAlphaSubCycles")));
6 surfaceScalarField phic(mag(phi/mesh.magSf()));
7 phic = min(interface.cAlpha()*phic, max(phic));
9 volScalarField divU(fvc::div(phi));
11 if (nAlphaSubCycles > 1)
13 dimensionedScalar totalDeltaT = runTime.deltaT();
14 surfaceScalarField rhoPhiSum(0.0*rhoPhi);
18 subCycle<volScalarField> alphaSubCycle(alpha1, nAlphaSubCycles);
19 !(++alphaSubCycle).end();
22 #include "alphaEqns.H"
23 rhoPhiSum += (runTime.deltaT()/totalDeltaT)*rhoPhi;
30 #include "alphaEqns.H"
33 if (pimple.corr() == 0)