ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / applications / solvers / incompressible / simpleFoam / windSimpleFoam / UEqn.H
blob45fc95065b15b4bf90adcfda99bfa5b196352134
1     // Solve the Momentum equation
3     tmp<fvVectorMatrix> UEqn
4     (
5         fvm::div(phi, U)
6       + turbulence->divDevReff(U)
7     );
9     // Add resistance on the actuation disks
10     actuationDisks.addSu(UEqn());
12     UEqn().relax();
14     solve(UEqn() == -fvc::grad(p));