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::div(phi, U)
5  + turb.divDevRhoReff(U)
6  );
7 
8  UEqn().relax();
9 
11  (
12  UEqn()
13  ==
15  (
16  (
19  )*mesh.magSf()
20  )
21  ).initialResidual();
22