UEqn.H
Go to the documentation of this file.
1 MRF.correctBoundaryVelocity(U);
2
3 fvVectorMatrix UEqn
4 (
5 fvm::ddt(rho, U) + fvm::div(phi, U)
6 + MRF.DDt(rho, U)
7 + turbulence->divDevRhoReff(U)
8 ==
10 );
11
12 UEqn.relax();
13
14 fvOptions.constrain(UEqn);
15
16 if (pimple.momentumPredictor())
17 {
18 solve(UEqn == -fvc::grad(p));
19
20 fvOptions.correct(U);
21 K = 0.5*magSqr(U);
22 }
CGAL::Exact_predicates_exact_constructions_kernel K
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()