simpleReactingParcelFoam.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) 2013-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  simpleReactingParcelFoam
26 
27 Group
28  grpLagrangianSolvers
29 
30 Description
31  Steady state SIMPLE solver for compressible, laminar or turbulent flow with
32  reacting multiphase Lagrangian parcels, including run-time selectable
33  finite volume options, e.g. sources, constraints
34 
35 \*---------------------------------------------------------------------------*/
36 
37 #include "fvCFD.H"
40 #include "rhoCombustionModel.H"
41 #include "radiationModel.H"
42 #include "IOporosityModelList.H"
43 #include "fvOptions.H"
44 #include "SLGThermo.H"
45 #include "simpleControl.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  #include "readGravitationalAcceleration.H"
56 
57  simpleControl simple(mesh);
58 
59  #include "createFields.H"
60  #include "createRadiationModel.H"
61  #include "createClouds.H"
62  #include "createMRF.H"
63  #include "createFvOptions.H"
64  #include "initContinuityErrs.H"
65 
66  turbulence->validate();
67 
68  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
69 
70  Info<< "\nStarting time loop\n" << endl;
71 
72  while (simple.loop())
73  {
74  Info<< "Time = " << runTime.timeName() << nl << endl;
75 
76  parcels.evolve();
77 
78  // --- Pressure-velocity SIMPLE corrector loop
79  {
80  #include "UEqn.H"
81  #include "YEqn.H"
82  #include "EEqn.H"
83  #include "pEqn.H"
84  }
85 
86  turbulence->correct();
87 
88  runTime.write();
89 
90  Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
91  << " ClockTime = " << runTime.elapsedClockTime() << " s"
92  << nl << endl;
93  }
94 
95  Info<< "End\n" << endl;
96 
97  return 0;
98 }
99 
100 
101 // ************************************************************************* //
basicReactingMultiphaseCloud.H
fvOptions.H
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
createRadiationModel.H
SLGThermo.H
simple
Simple relative velocity model.
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
simpleControl.H
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
setRootCase.H
IOporosityModelList.H
simple
const dictionary & simple
Definition: readFluidMultiRegionSIMPLEControls.H:1
createMesh.H
createTime.H
fvCFD.H
radiationModel.H
rhoCombustionModel.H
turbulentFluidThermoModel.H