1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
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 the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
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
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29 Solver for diesel engine spray and combustion.
31 \*---------------------------------------------------------------------------*/
34 #include "engineTime.H"
35 #include "engineMesh.H"
36 #include "hCombustionThermo.H"
37 #include "turbulenceModel.H"
39 #include "psiChemistryModel.H"
40 #include "chemistrySolver.H"
41 #include "multivariateScheme.H"
44 #include "volPointInterpolation.H"
45 #include "thermoPhysicsTypes.H"
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 int main(int argc, char *argv[])
51 # include "setRootCase.H"
52 # include "createEngineTime.H"
53 # include "createEngineMesh.H"
54 # include "createFields.H"
55 # include "readGravitationalAcceleration.H"
56 # include "readCombustionProperties.H"
57 # include "createSpray.H"
58 # include "initContinuityErrs.H"
59 # include "readEngineTimeControls.H"
60 # include "compressibleCourantNo.H"
61 # include "setInitialDeltaT.H"
62 # include "startSummary.H"
64 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
66 Info<< "\nStarting time loop\n" << endl;
70 # include "readPISOControls.H"
71 # include "readEngineTimeControls.H"
72 # include "compressibleCourantNo.H"
73 # include "setDeltaT.H"
77 Info<< "Crank angle = " << runTime.theta() << " CA-deg" << endl;
83 Info<< "Solving chemistry" << endl;
87 runTime.value() - runTime.deltaT().value(),
88 runTime.deltaT().value()
91 // turbulent time scale
94 Cmix*sqrt(turbulence->muEff()/rho/turbulence->epsilon());
95 volScalarField tc = chemistry.tc();
98 kappa = (runTime.deltaT() + tc)/(runTime.deltaT() + tc + tk);
101 chemistrySh = kappa*chemistry.Sh()();
106 for (label ocorr=1; ocorr <= nOuterCorr; ocorr++)
112 for (int corr=1; corr<=nCorr; corr++)
118 turbulence->correct();
120 # include "logSummary.H"
121 # include "spraySummary.H"
127 chemistry.dQ()().write();
130 Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
131 << " ClockTime = " << runTime.elapsedClockTime() << " s"
135 Info<< "End\n" << endl;
141 // ************************************************************************* //