FreeFOAM The Cross-Platform CFD Toolkit
UEqn.H
Go to the documentation of this file.
2  (
3  betav*fvm::ddt(rho, U)
4  + fvm::div(phi, U)
5  + turbulence->divDevRhoReff(U)
6  ==
7  betav*rho*g
8  );
9 
10  volSymmTensorField invA = inv(I*UEqn.A() + drag->Dcu());
11 
13  {
14  U = invA & (UEqn.H() - betav*fvc::grad(p));
15  U.correctBoundaryConditions();
16  }
17 
18 // ************************ vim: set sw=4 sts=4 et: ************************ //