edge grading
[OpenFOAM-1.5.x.git] / applications / solvers / heatTransfer / buoyantSimpleFoam / UEqn.H
blob5bc4c4738ccc963dadfa1666a1886deb56cd5b5b
1     // Solve the Momentum equation
3     tmp<fvVectorMatrix> UEqn
4     (
5         fvm::div(phi, U)
6       - fvm::Sp(fvc::div(phi), U)
7       + turbulence->divDevRhoReff(U)
8     );
10     UEqn().relax();
12     eqnResidual = solve
13     (
14         UEqn() == -fvc::grad(pd) - fvc::grad(rho)*gh
15     ).initialResidual();
17     maxResidual = max(eqnResidual, maxResidual);