ENH: directMappedFixedValue: use different tag
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / engineFoam / UEqn.H
blobeff9e1a5d288a5ffde71f0d800bba9dc80095784
1     fvVectorMatrix UEqn
2     (
3         fvm::ddt(rho, U)
4       + fvm::div(phi, U)
5       + turbulence->divDevRhoReff(U)
6     );
8     if (pimple.momentumPredictor())
9     {
10         solve(UEqn == -fvc::grad(p));
11     }