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