1 surfaceScalarField rhoPhi
10 dimensionedScalar("0", dimensionSet(1, 0, -1, 0, 0), 0)
14 const dictionary& pimpleDict = pimple.dict();
16 label nAlphaCorr(readLabel(pimpleDict.lookup("nAlphaCorr")));
18 label nAlphaSubCycles(readLabel(pimpleDict.lookup("nAlphaSubCycles")));
20 surfaceScalarField phic(mag(phi/mesh.magSf()));
21 phic = min(interface.cAlpha()*phic, max(phic));
23 volScalarField divU(fvc::div(phi));
25 dimensionedScalar totalDeltaT = runTime.deltaT();
27 if (nAlphaSubCycles > 1)
31 subCycle<volScalarField> alphaSubCycle(alpha1, nAlphaSubCycles);
32 !(++alphaSubCycle).end();
43 if (pimple.nOuterCorr() == 1)
48 rho == alpha1*rho1 + (scalar(1) - alpha1)*rho2;