FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
1  // Solve the Momentum equation
2 
3  tmp<fvVectorMatrix> UEqn
4  (
5  fvm::div(phi, U)
6  + turbulence->divDevReff(U)
7  );
8 
9  UEqn().relax();
10 
12  (
13  UEqn() == -fvc::grad(p)
14  ).initialResidual();
15 
17 
18 
19 // ************************ vim: set sw=4 sts=4 et: ************************ //