coldEngineFoam.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  coldEngineFoam
26 
27 Group
28  grpCombustionSolvers grpMovingMeshSolvers
29 
30 Description
31  Solver for cold-flow in internal combustion engines.
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #include "fvCFD.H"
36 #include "engineTime.H"
37 #include "engineMesh.H"
38 #include "psiThermo.H"
40 #include "OFstream.H"
41 #include "fvOptions.H"
42 #include "pimpleControl.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 int main(int argc, char *argv[])
47 {
48  #include "setRootCase.H"
49 
50  #include "createEngineTime.H"
51  #include "createEngineMesh.H"
52 
53  pimpleControl pimple(mesh);
54 
55  #include "createFields.H"
56  #include "createMRF.H"
57  #include "createFvOptions.H"
58  #include "createRhoUf.H"
59  #include "initContinuityErrs.H"
60  #include "readEngineTimeControls.H"
61  #include "compressibleCourantNo.H"
62  #include "setInitialDeltaT.H"
63  #include "startSummary.H"
64 
65  turbulence->validate();
66 
67  // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
68 
69  Info<< "\nStarting time loop\n" << endl;
70 
71  while (runTime.run())
72  {
73  #include "readEngineTimeControls.H"
74  #include "compressibleCourantNo.H"
75  #include "setDeltaT.H"
76 
77  runTime++;
78 
79  Info<< "Crank angle = " << runTime.theta() << " CA-deg"
80  << endl;
81 
82  mesh.move();
83 
84  #include "rhoEqn.H"
85 
86  // --- Pressure-velocity PIMPLE corrector loop
87  while (pimple.loop())
88  {
89  #include "UEqn.H"
90 
91  // --- Pressure corrector loop
92  while (pimple.correct())
93  {
94  #include "EEqn.H"
95  #include "pEqn.H"
96  }
97 
98  if (pimple.turbCorr())
99  {
100  turbulence->correct();
101  }
102  }
103 
104  runTime.write();
105 
106  #include "logSummary.H"
107 
108  Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
109  << " ClockTime = " << runTime.elapsedClockTime() << " s"
110  << nl << endl;
111  }
112 
113  Info<< "End\n" << endl;
114 
115  return 0;
116 }
117 
118 
119 // ************************************************************************* //
createEngineTime.H
fvOptions.H
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
pimpleControl.H
OFstream.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
createEngineMesh.H
main
int main(int argc, char *argv[])
Definition: postCalc.C:54
engineMesh.H
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
setRootCase.H
psiThermo.H
engineTime.H
createRhoUf.H
Creates and initialises the velocity velocity field rhoUf.
fvCFD.H
pimple
const dictionary & pimple
Definition: readFluidMultiRegionPIMPLEControls.H:1
turbulentFluidThermoModel.H