Backported XiFoam, engineFoam, coldEngineFoam and tutorials (vanilla OF 3.0.1)
[foam-extend-4.0.git] / applications / solvers / combustion / engineFoam / UEqn.H
blob3016e1b9abbc63fb135449e083c877211da31d33
1     fvVectorMatrix UEqn
2     (
3         fvm::ddt(rho, U)
4       + fvm::div(phi, U)
5       + turbulence->divDevRhoReff(U)
6     );
8     if (piso.momentumPredictor())
9     {
10         solve(UEqn == -fvc::grad(p));
11     }