ITHACA-FV
2026.04
Loading...
Searching...
No Matches
src
ITHACA_FOMPROBLEMS
UnsteadyNSTTurb
UEqn.H
1
// Solve the Momentum equation
2
3
MRF.correctBoundaryVelocity(U);
4
5
fvVectorMatrix UEqn
6
(
7
fvm::ddt(U) + fvm::div(phi, U)
8
+ MRF.DDt(U)
9
+ turbulence->divDevReff(U)
10
==
11
fvOptions(U)
12
);
13
14
UEqn.relax();
15
16
fvOptions.constrain(UEqn);
17
18
if
(piso.momentumPredictor())
19
{
20
solve(UEqn == -fvc::grad(p));
21
fvOptions.correct(U);
22
}
Generated by
1.16.1