FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
2  (
3  fvm::ddt(U)
4  + fvm::div(phi, U)
5  + turbulence->divDevReff(U)
6  );
7 
8  if (ocorr != nOuterCorr-1)
9  {
10  UEqn.relax();
11  }
12 
14  {
15  solve(UEqn == -fvc::grad(p));
16  }
17 
18 // ************************ vim: set sw=4 sts=4 et: ************************ //