UEqn.H
Go to the documentation of this file.
1  MRF.correctBoundaryVelocity(U);
2 
4  (
5  fvm::ddt(rho, U) + fvm::div(phi, U)
6  + MRF.DDt(rho, U)
7  + turbulence->divDevRhoReff(U)
8  ==
9  parcels.SU(U)
10  + fvOptions(rho, U)
11  );
12 
13  UEqn.relax();
14 
15  fvOptions.constrain(UEqn);
16 
17  if (pimple.momentumPredictor())
18  {
19  solve
20  (
21  UEqn
22  ==
24  (
25  (
28  )*mesh.magSf()
29  )
30  );
31 
32  fvOptions.correct(U);
33  K = 0.5*magSqr(U);
34  }
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
surfaceScalarField & phi
U
Definition: pEqn.H:83
solve(UEqn==-fvc::grad(p))
tmp< GeometricField< Type, fvPatchField, volMesh > > div(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
Definition: fvcDiv.C:47
const dictionary & pimple
CGAL::Exact_predicates_exact_constructions_kernel K
fv::options & fvOptions
const surfaceScalarField & ghf
tmp< GeometricField< Type, fvPatchField, volMesh > > ddt(const dimensioned< Type > dt, const fvMesh &mesh)
Definition: fvcDdt.C:45
dynamicFvMesh & mesh
IOMRFZoneList & MRF
dimensioned< scalar > magSqr(const dimensioned< Type > &)
tmp< GeometricField< typename outerProduct< vector, Type >::type, fvPatchField, volMesh >> reconstruct(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
fvVectorMatrix & UEqn
Definition: UEqn.H:13
fvMatrix< vector > fvVectorMatrix
Definition: fvMatricesFwd.H:45
volScalarField & p_rgh
tmp< GeometricField< Type, fvsPatchField, surfaceMesh > > snGrad(const GeometricField< Type, fvPatchField, volMesh > &vf, const word &name)
Definition: fvcSnGrad.C:45