FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
2  (
3  fvm::ddt(rho, U)
4  + fvm::div(phi, U)
5  + turbulence->divDevRhoReff(U)
6  ==
7  rho*g
8  + dieselSpray.momentumSource()
9  );
10 
12  {
13  solve(UEqn == -fvc::grad(p));
14  }
15 
16 // ************************ vim: set sw=4 sts=4 et: ************************ //