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->divDevRhoReff(U)
7  );
8 
9  UEqn().relax();
10 
12  {
14  (
15  UEqn()
16  ==
18  (
19  (
22  )*mesh.magSf()
23  )
24  ).initialResidual();
25 
27  }