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 
8 UEqn.relax();
9 
10 solve
11 (
12  UEqn
13  ==
15  (
16  (
19  )*mesh.magSf()
20  ),
21  mesh.solver(U.select(oCorr == nOuterCorr - 1))
22 );