sprayFoam.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Application
25  sprayFoam
26 
27 Group
28  grpLagrangianSolvers
29 
30 Description
31  Transient PIMPLE solver for compressible, laminar or turbulent flow with
32  spray parcels.
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #include "fvCFD.H"
38 #include "basicSprayCloud.H"
39 #include "psiCombustionModel.H"
40 #include "radiationModel.H"
41 #include "SLGThermo.H"
42 #include "pimpleControl.H"
43 #include "fvOptions.H"
44 
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 
47 int main(int argc, char *argv[])
48 {
49  #include "setRootCase.H"
50 
51  #include "createTime.H"
52  #include "createMesh.H"
53 
54  pimpleControl pimple(mesh);
55 
56  #include "readGravitationalAcceleration.H"
57  #include "createFields.H"
58  #include "createMRF.H"
59  #include "createFvOptions.H"
60  #include "createClouds.H"
61  #include "createRadiationModel.H"
62  #include "initContinuityErrs.H"
63  #include "createTimeControls.H"
64  #include "compressibleCourantNo.H"
65  #include "setInitialDeltaT.H"
66 
67  turbulence->validate();
68 
69  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 
71  Info<< "\nStarting time loop\n" << endl;
72 
73  while (runTime.run())
74  {
75  #include "createTimeControls.H"
76  #include "compressibleCourantNo.H"
77  #include "setDeltaT.H"
78 
79  runTime++;
80 
81  Info<< "Time = " << runTime.timeName() << nl << endl;
82 
83  parcels.evolve();
84 
85  #include "rhoEqn.H"
86 
87  // --- Pressure-velocity PIMPLE corrector loop
88  while (pimple.loop())
89  {
90  #include "UEqn.H"
91  #include "YEqn.H"
92  #include "EEqn.H"
93 
94  // --- Pressure corrector loop
95  while (pimple.correct())
96  {
97  #include "pEqn.H"
98  }
99 
100  if (pimple.turbCorr())
101  {
102  turbulence->correct();
103  }
104  }
105 
106  rho = thermo.rho();
107 
108  if (runTime.write())
109  {
110  combustion->dQ()().write();
111  }
112 
113  Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
114  << " ClockTime = " << runTime.elapsedClockTime() << " s"
115  << nl << endl;
116  }
117 
118  Info<< "End\n" << endl;
119 
120  return 0;
121 }
122 
123 
124 // ************************************************************************* //
basicSprayCloud.H
fvOptions.H
thermo
Basic thermodynamics type based on the use of fitting functions for cp, h, s obtained from the templa...
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
createRadiationModel.H
SLGThermo.H
pimpleControl.H
createFvOptions.H
turbulence
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
Foam::nl
static const char nl
Definition: Ostream.H:260
Foam::Info
messageStream Info
main
int main(int argc, char *argv[])
Definition: postCalc.C:54
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
rho
rho
Definition: pEqn.H:3
setRootCase.H
createTimeControls.H
Read the control parameters used by setDeltaT.
createMesh.H
createTime.H
fvCFD.H
psiCombustionModel.H
pimple
const dictionary & pimple
Definition: readFluidMultiRegionPIMPLEControls.H:1
combustion
Info<< "Creating combustion model\n"<< endl;autoPtr< combustionModels::psiCombustionModel > combustion(combustionModels::psiCombustionModel::New(mesh))
radiationModel.H
write
Tcoeff write()
turbulentFluidThermoModel.H