BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / reactingFoam / UEqn.H
blob1e626d75b85f487ec98f31131f0c0370f8d639c1
1     fvVectorMatrix UEqn
2     (
3         fvm::ddt(rho, U)
4       + fvm::div(phi, U)
5       + turbulence->divDevRhoReff(U)
6      ==
7         rho*g
8     );
10     UEqn.relax();
12     if (pimple.momentumPredictor())
13     {
14         solve(UEqn == -fvc::grad(p));
15     }