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.dimensionedInternalField()*g
8  + parcels.SU()
9  );
10 
11  UEqn.relax();
12 
14  {
15  solve(UEqn == -fvc::grad(p));
16  }