UEqn.H
Go to the documentation of this file.
1 MRF.correctBoundaryVelocity(U);
2
3 tmp<fvVectorMatrix> tUEqn
4 (
5 fvm::div(phi, U)
6 + MRF.DDt(rho, U)
7 + turbulence->divDevRhoReff(U)
8 ==
9 rho()*g
10 + parcels.SU(U)
11 + fvOptions(rho, U)
12 );
13 fvVectorMatrix& UEqn = tUEqn.ref();
14
15 UEqn.relax();
16
17 fvOptions.constrain(UEqn);
18
19 solve(UEqn == -fvc::grad(p));
20
21 fvOptions.correct(U);
const uniformDimensionedVectorField & g
fv::options & fvOptions
surfaceScalarField & phi
IOMRFZoneList & MRF
U
Definition: pEqn.H:72
volScalarField & p
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()