pEqn.H
Go to the documentation of this file.
1 rho = thermo.rho();
2 rho = max(rho, rhoMin);
3 rho = min(rho, rhoMax);
4 rho.relax();
5 
6 volScalarField rAU(1.0/UEqn().A());
8 
9 volVectorField HbyA("HbyA", U);
10 HbyA = rAU*UEqn().H();
11 
12 if (pimple.nCorrPISO() <= 1)
13 {
14  UEqn.clear();
15 }
16 
17 if (pimple.transonic())
18 {
20  (
21  "phid",
23  *(
24  (fvc::interpolate(HbyA) & mesh.Sf())
26  )
27  );
28 
29  MRF.makeRelative(fvc::interpolate(psi), phid);
30 
31  while (pimple.correctNonOrthogonal())
32  {
33  fvScalarMatrix pEqn
34  (
35  fvm::ddt(psi, p)
36  + fvm::div(phid, p)
38  ==
39  fvOptions(psi, p, rho.name())
40  );
41 
42  pEqn.solve(mesh.solver(p.select(pimple.finalInnerIter())));
43 
44  if (pimple.finalNonOrthogonalIter())
45  {
46  phi == pEqn.flux();
47  }
48  }
49 }
50 else
51 {
53  (
54  "phiHbyA",
55  (
56  (fvc::interpolate(rho*HbyA) & mesh.Sf())
58  )
59  );
60 
61  MRF.makeRelative(fvc::interpolate(rho), phiHbyA);
62 
63  while (pimple.correctNonOrthogonal())
64  {
65  fvScalarMatrix pEqn
66  (
67  fvm::ddt(psi, p)
68  + fvc::div(phiHbyA)
70  ==
71  fvOptions(psi, p, rho.name())
72  );
73 
74  pEqn.solve(mesh.solver(p.select(pimple.finalInnerIter())));
75 
76  if (pimple.finalNonOrthogonalIter())
77  {
78  phi = phiHbyA + pEqn.flux();
79  }
80  }
81 }
82 
83 #include "rhoEqn.H"
84 #include "compressibleContinuityErrs.H"
85 
86 // Explicitly relax pressure for momentum corrector
87 p.relax();
88 
89 // Recalculate density from the relaxed pressure
90 rho = thermo.rho();
91 rho = max(rho, rhoMin);
92 rho = min(rho, rhoMax);
93 rho.relax();
94 Info<< "rho max/min : " << max(rho).value()
95  << " " << min(rho).value() << endl;
96 
97 U = HbyA - rAU*fvc::grad(p);
98 U.correctBoundaryConditions();
99 fvOptions.correct(U);
100 K = 0.5*magSqr(U);
101 
102 if (thermo.dpdt())
103 {
104  dpdt = fvc::ddt(p);
105 }
volScalarField & dpdt
phi
Definition: pEqn.H:20
CGAL::Exact_predicates_exact_constructions_kernel K
dimensioned< scalar > magSqr(const dimensioned< Type > &)
tmp< GeometricField< typename flux< Type >::type, fvsPatchField, surfaceMesh > > ddtCorr(const GeometricField< Type, fvPatchField, volMesh > &U, const GeometricField< Type, fvsPatchField, surfaceMesh > &Uf)
Definition: fvcDdt.C:155
tmp< GeometricField< Type, fvPatchField, volMesh > > laplacian(const GeometricField< Type, fvPatchField, volMesh > &vf, const word &name)
Definition: fvcLaplacian.C:45
messageStream Info
tmp< surfaceScalarField > interpolate(const RhoType &rho)
tmp< GeometricField< Type, fvPatchField, volMesh > > ddt(const dimensioned< Type > dt, const fvMesh &mesh)
Definition: fvcDdt.C:45
dynamicFvMesh & mesh
const dictionary & pimple
p
Definition: pEqn.H:59
fv::IOoptionList & fvOptions
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:42
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
IOMRFZoneList & MRF
fvVectorMatrix UEqn(fvm::ddt(rho, U)+fvm::div(phi, U)+turbulence->divDevRhoReff(U)==fvOptions(rho, U))
surfaceScalarField phid("phid", fvc::interpolate(psi)*( (mesh.Sf()&fvc::interpolate(HbyA)) +rhorAUf *fvc::ddtCorr(rho, U, phi)/fvc::interpolate(rho) ))
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
GeometricField< scalar, fvsPatchField, surfaceMesh > surfaceScalarField
surfaceScalarField rhorAUf("rhorAUf", fvc::interpolate(rho *rAU))
const volScalarField & psi
Definition: createFields.H:24
phiHbyA
Definition: pEqn.H:21
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:55
volScalarField rAU(1.0/UEqn.A())
PtrList< dimensionedScalar > rhoMin(fluidRegions.size())
tmp< GeometricField< Type, fvPatchField, volMesh > > div(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
Definition: fvcDiv.C:47
tmp< GeometricField< typename outerProduct< vector, Type >::type, fvPatchField, volMesh >> grad(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
Definition: fvcGrad.C:52
rho
Definition: pEqn.H:1
psiReactionThermo & thermo
Definition: createFields.H:32
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)
PtrList< dimensionedScalar > rhoMax(fluidRegions.size())
U
Definition: pEqn.H:82
HbyA
Definition: pEqn.H:7