FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
2  (
3  "muEff",
6  );
7 
9  (
10  fvm::ddt(rho, U)
11  + fvm::div(phi, U)
13  //- (fvc::grad(U) & fvc::grad(muf))
15  );
16 
17  UEqn.relax();
18 
20  {
21  solve(UEqn == -fvc::grad(p));
22  }
23 
24  Info<< "max(U) " << max(mag(U)).value() << endl;