Loading...
Searching...
No Matches
UEqn.H
Go to the documentation of this file.
1// Solve the Momentum equation
2
3MRF.correctBoundaryVelocity(U);
4
5fvVectorMatrix UEqn
6(
7 fvm::ddt(U) + fvm::div(phi, U)
8 + MRF.DDt(U)
9 + turbulence->divDevReff(U)
10 ==
11 fvOptions(U)
12 );
13
14UEqn.relax();
15
16fvOptions.constrain(UEqn);
17
18if (piso.momentumPredictor())
19{
20 solve(UEqn == -fvc::grad(p));
21 fvOptions.correct(U);
22}
TEqn solve()
surfaceScalarField & phi
volVectorField & U
fvVectorMatrix & UEqn
Definition UEqn.H:37
volScalarField & p
turbulence