multiphaseEulerFoam.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  multiphaseEulerFoam
26 
27 Description
28  Solver for a system of many compressible fluid phases including
29  heat-transfer.
30 
31 \*---------------------------------------------------------------------------*/
32 
33 #include "fvCFD.H"
34 #include "multiphaseSystem.H"
35 #include "phaseModel.H"
36 #include "dragModel.H"
37 #include "heatTransferModel.H"
40 #include "pimpleControl.H"
41 #include "IOMRFZoneList.H"
42 #include "CorrectPhi.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 "createFields.H"
57  #include "createMRFZones.H"
58  #include "initContinuityErrs.H"
59  #include "createTimeControls.H"
60  #include "correctPhi.H"
61  #include "CourantNo.H"
62  #include "setInitialDeltaT.H"
63 
64  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65 
66  Info<< "\nStarting time loop\n" << endl;
67 
68  while (runTime.run())
69  {
70  #include "createTimeControls.H"
71  #include "CourantNo.H"
72  #include "setDeltaT.H"
73 
74  runTime++;
75  Info<< "Time = " << runTime.timeName() << nl << endl;
76 
77  // --- Pressure-velocity PIMPLE corrector loop
78  while (pimple.loop())
79  {
80  turbulence->correct();
81  fluid.solve();
82  rho = fluid.rho();
83  #include "zonePhaseVolumes.H"
84 
85  //#include "TEqns.H"
86  #include "UEqns.H"
87 
88  // --- Pressure corrector loop
89  while (pimple.correct())
90  {
91  #include "pEqn.H"
92  }
93 
94  #include "DDtU.H"
95  }
96 
97  runTime.write();
98 
99  Info<< "ExecutionTime = "
100  << runTime.elapsedCpuTime()
101  << " s\n\n" << endl;
102  }
103 
104  Info<< "End\n" << endl;
105 
106  return 0;
107 }
108 
109 
110 // ************************************************************************* //
multiphaseSystem & fluid
Definition: createFields.H:10
messageStream Info
autoPtr< compressible::turbulenceModel > turbulence
Definition: createFields.H:23
dynamicFvMesh & mesh
const dictionary & pimple
static const char nl
Definition: Ostream.H:260
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Read the control parameters used by setDeltaT.
int main(int argc, char *argv[])
Definition: postCalc.C:54