UEqn.H
Go to the documentation of this file.
1 fvVectorMatrix UEqn
2 (
3 fvm::ddt(rho, U)
4 + fvm::div(rhoPhi, U)
5 - fvm::Sp(fvc::ddt(rho) + fvc::div(rhoPhi), U)
6 + turbulence->divDevRhoReff(rho, U)
7 );
8
9 UEqn.relax();
10
11 if (pimple.momentumPredictor())
12 {
13 solve
14 (
15 UEqn
16 ==
17 fvc::reconstruct
18 (
19 (
20 interface.surfaceTensionForce()
21 - ghf*fvc::snGrad(rho)
22 - fvc::snGrad(p_rgh)
23 ) * mesh.magSf()
24 )
25 );
26 }
rhoPhi
Definition: rhoEqn.H:10
volScalarField & p_rgh
const surfaceScalarField & ghf
pimpleControl & pimple
U
Definition: pEqn.H:72
fvVectorMatrix & UEqn
Definition: UEqn.H:13
dynamicFvMesh & mesh
compressible::turbulenceModel & turbulence
CEqn solve()
interfaceProperties interface(alpha1, U, thermo->transportPropertiesDict())