FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
1  // Solve the momentum equation
2 
4  (
5  fvm::ddt(U)
6  + fvm::div(phi, U)
7  + turbulence->divDevReff(U)
8  );
9 
10  UEqn.relax();
11 
13  {
14  solve
15  (
16  UEqn
17  ==
19  (
20  (
23  )*mesh.magSf()
24  ),
25  mesh.solver(U.select(finalIter))
26  );
27  }