reactingParcelFilmFoam.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  reactingParcelFilmFoam
26 
27 Group
28  grpLagrangianSolvers
29 
30 Description
31  Transient PIMPLE solver for compressible, laminar or turbulent flow with
32  reacting Lagrangian parcels, and surface film modelling.
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #include "fvCFD.H"
38 #include "basicReactingCloud.H"
39 #include "surfaceFilmModel.H"
40 #include "psiCombustionModel.H"
41 #include "radiationModel.H"
42 #include "SLGThermo.H"
43 #include "fvOptions.H"
44 #include "pimpleControl.H"
46 
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 
49 int main(int argc, char *argv[])
50 {
51  #include "setRootCase.H"
52 
53  #include "createTime.H"
54  #include "createMesh.H"
55 
56  pimpleControl pimple(mesh);
57 
58  #include "createFields.H"
59  #include "createMRF.H"
60  #include "createFvOptions.H"
61  #include "createClouds.H"
62  #include "createRadiationModel.H"
63  #include "createSurfaceFilmModel.H"
64  #include "initContinuityErrs.H"
65  #include "createTimeControls.H"
66  #include "compressibleCourantNo.H"
67  #include "setInitialDeltaT.H"
68 
69  turbulence->validate();
70 
71  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
72 
73  Info<< "\nStarting time loop\n" << endl;
74 
75  while (runTime.run())
76  {
77  #include "createTimeControls.H"
78  #include "compressibleCourantNo.H"
79  #include "setMultiRegionDeltaT.H"
80  #include "setDeltaT.H"
81 
82  runTime++;
83 
84  Info<< "Time = " << runTime.timeName() << nl << endl;
85 
86  parcels.evolve();
87 
88  surfaceFilm.evolve();
89 
91  {
92  #include "rhoEqn.H"
93 
94  // --- PIMPLE loop
95  while (pimple.loop())
96  {
97  #include "UEqn.H"
98  #include "YEqn.H"
99  #include "EEqn.H"
100 
101  // --- Pressure corrector loop
102  while (pimple.correct())
103  {
104  #include "pEqn.H"
105  }
106 
107  if (pimple.turbCorr())
108  {
109  turbulence->correct();
110  }
111  }
112 
113  rho = thermo.rho();
114  }
115 
116  runTime.write();
117 
118  Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
119  << " ClockTime = " << runTime.elapsedClockTime() << " s"
120  << nl << endl;
121  }
122 
123  Info<< "End" << endl;
124 
125  return 0;
126 }
127 
128 
129 // ************************************************************************* //
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
surfaceFilmModel.H
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
basicReactingCloud.H
rho
rho
Definition: pEqn.H:3
setRootCase.H
createTimeControls.H
Read the control parameters used by setDeltaT.
solvePrimaryRegion
Switch solvePrimaryRegion(additionalControlsDict.lookup("solvePrimaryRegion"))
createMesh.H
surfaceFilm
filmModelType & surfaceFilm
Definition: createSurfaceFilmModel.H:6
createTime.H
fvCFD.H
psiCombustionModel.H
pimple
const dictionary & pimple
Definition: readFluidMultiRegionPIMPLEControls.H:1
fixedFluxPressureFvPatchScalarField.H
radiationModel.H
turbulentFluidThermoModel.H