28 lines
528 B
C
28 lines
528 B
C
|
// Solve the momentum equation
|
||
|
|
||
|
tmp<fvVectorMatrix> UEqn
|
||
|
(
|
||
|
fvm::div(phi, U)
|
||
|
+ turbulence->divDevReff(U)
|
||
|
+ fvm::SuSp(-fvc::div(phi), U)
|
||
|
);
|
||
|
|
||
|
UEqn().relax();
|
||
|
|
||
|
eqnResidual = solve
|
||
|
(
|
||
|
UEqn()
|
||
|
==
|
||
|
fvc::reconstruct
|
||
|
(
|
||
|
(
|
||
|
(
|
||
|
- ghf*fvc::snGrad(rhok)
|
||
|
- fvc::snGrad(p_rgh)
|
||
|
)*mesh.magSf()
|
||
|
)
|
||
|
)
|
||
|
).initialResidual();
|
||
|
|
||
|
maxResidual = max(eqnResidual, maxResidual);
|