UEqn.H
Go to the documentation of this file.
1 MRF.correctBoundaryVelocity(U);
2
3 fvVectorMatrix UEqn
4 (
5 fvm::ddt(U) + fvm::div(phi, U)
6 + MRF.DDt(U)
7 + turbulence->divDevReff(U)
8 ==
9 parcels.SU(U, true)
10 + fvOptions(U)
11 );
12
13 UEqn.relax();
14
15 fvOptions.constrain(UEqn);
16
17 if (pimple.momentumPredictor())
18 {
19 solve(UEqn == -fvc::grad(p));
20
21 fvOptions.correct(U);
22 }
fv::options & fvOptions
surfaceScalarField & phi
IOMRFZoneList & MRF
pimpleControl & pimple
U
Definition: pEqn.H:72
volScalarField & p
fvVectorMatrix & UEqn
Definition: UEqn.H:13
compressible::turbulenceModel & turbulence
CEqn solve()