UEqn.H
Go to the documentation of this file.
1 fvVectorMatrix UEqn
2 (
3 fvm::ddt(rho, U)
4 + fvm::div(rhoPhi, U)
5 + turbulence->divDevRhoReff(rho, U)
6 );
7
8 UEqn.relax();
9
10 if (pimple.momentumPredictor())
11 {
12 solve
13 (
14 UEqn
15 ==
16 fvc::reconstruct
17 (
18 (
19 - ghf*fvc::snGrad(rho)
20 - fvc::snGrad(p_rgh)
21 ) * mesh.magSf()
22 )
23 );
24 }
rhoPhi
Definition: rhoEqn.H:10
volScalarField & p_rgh
const surfaceScalarField & ghf
pimpleControl & pimple
U
Definition: pEqn.H:72
fvVectorMatrix & UEqn
Definition: UEqn.H:13
dynamicFvMesh & mesh
compressible::turbulenceModel & turbulence
CEqn solve()