FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
1  // Solve the Momentum equation
2  tmp<fvVectorMatrix> UEqn
3  (
4  fvm::ddt(rho, U)
5  + fvm::div(phi, U)
6  + turb.divDevRhoReff(U)
7  );
8 
9  UEqn().relax();
10 
12  {
13  solve
14  (
15  UEqn()
16  ==
18  (
19  (
22  )*mesh.magSf()
23  )
24  );
25  }