Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / heatTransfer / buoyantPimpleFoam / pEqn.H
blobb47d65b842ac3e85d2c9155920e4b577b8775ef4
2     rho = thermo.rho();
4     // Thermodynamic density needs to be updated by psi*d(p) after the
5     // pressure solution - done in 2 parts. Part 1:
6     thermo.rho() -= psi*p_rgh;
8     volScalarField rAU(1.0/UEqn.A());
9     surfaceScalarField rhorAUf("(rho*(1|A(U)))", fvc::interpolate(rho*rAU));
11     U = rAU*UEqn.H();
13     phi = fvc::interpolate(rho)*
14     (
15         (fvc::interpolate(U) & mesh.Sf())
16       + fvc::ddtPhiCorr(rAU, rho, U, phi)
17     );
19     surfaceScalarField buoyancyPhi(-rhorAUf*ghf*fvc::snGrad(rho)*mesh.magSf());
20     phi += buoyancyPhi;
22     fvScalarMatrix p_rghDDtEqn
23     (
24         fvc::ddt(rho) + psi*correction(fvm::ddt(p_rgh))
25       + fvc::div(phi)
26     );
28     for (int nonOrth=0; nonOrth<=pimple.nNonOrthCorr(); nonOrth++)
29     {
30         fvScalarMatrix p_rghEqn
31         (
32             p_rghDDtEqn
33           - fvm::laplacian(rhorAUf, p_rgh)
34         );
36         p_rghEqn.solve
37         (
38             mesh.solver(p_rgh.select(pimple.finalInnerIter(corr, nonOrth)))
39         );
41         if (nonOrth == pimple.nNonOrthCorr())
42         {
43             // Calculate the conservative fluxes
44             phi += p_rghEqn.flux();
46             // Explicitly relax pressure for momentum corrector
47             p_rgh.relax();
49             // Correct the momentum source with the pressure gradient flux
50             // calculated from the relaxed pressure
51             U += rAU*fvc::reconstruct((buoyancyPhi + p_rghEqn.flux())/rhorAUf);
52             U.correctBoundaryConditions();
53         }
54     }
56     p = p_rgh + rho*gh;
58     // Second part of thermodynamic density update
59     thermo.rho() += psi*p_rgh;
61     DpDt = fvc::DDt(surfaceScalarField("phiU", phi/fvc::interpolate(rho)), p);
63     #include "rhoEqn.H"
64     #include "compressibleContinuityErrs.H"