Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / applications / solvers / combustion / dieselEngineFoam / dieselEngineFoam.C
blob5fc450ff3956e2d4451d1ee1ef822739498ed22c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Application
25     dieselEngineFoam
27 Description
28     Solver for diesel engine spray and combustion.
30 \*---------------------------------------------------------------------------*/
32 #include "fvCFD.H"
33 #include "engineTime.H"
34 #include "engineMesh.H"
35 #include "hCombustionThermo.H"
36 #include "turbulenceModel.H"
37 #include "spray.H"
38 #include "psiChemistryModel.H"
39 #include "chemistrySolver.H"
40 #include "multivariateScheme.H"
41 #include "Switch.H"
42 #include "OFstream.H"
43 #include "volPointInterpolation.H"
44 #include "thermoPhysicsTypes.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 int main(int argc, char *argv[])
50 #   include "setRootCase.H"
51 #   include "createEngineTime.H"
52 #   include "createEngineMesh.H"
53 #   include "createFields.H"
54 #   include "readGravitationalAcceleration.H"
55 #   include "readCombustionProperties.H"
56 #   include "createSpray.H"
57 #   include "initContinuityErrs.H"
58 #   include "readEngineTimeControls.H"
59 #   include "compressibleCourantNo.H"
60 #   include "setInitialDeltaT.H"
61 #   include "startSummary.H"
63 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
65     Info<< "\nStarting time loop\n" << endl;
67     while (runTime.run())
68     {
69 #       include "readPISOControls.H"
70 #       include "readEngineTimeControls.H"
71 #       include "compressibleCourantNo.H"
72 #       include "setDeltaT.H"
74         runTime++;
76         Info<< "Crank angle = " << runTime.theta() << " CA-deg" << endl;
78         mesh.move();
80         dieselSpray.evolve();
82         Info<< "Solving chemistry" << endl;
84         chemistry.solve
85         (
86             runTime.value() - runTime.deltaT().value(),
87             runTime.deltaT().value()
88         );
90         // turbulent time scale
91         {
92             volScalarField tk =
93                 Cmix*sqrt(turbulence->muEff()/rho/turbulence->epsilon());
94             volScalarField tc = chemistry.tc();
96             //Chalmers PaSR model
97             kappa = (runTime.deltaT() + tc)/(runTime.deltaT() + tc + tk);
98         }
100         chemistrySh = kappa*chemistry.Sh()();
102 #       include "rhoEqn.H"
103 #       include "UEqn.H"
105         for (label ocorr=1; ocorr <= nOuterCorr; ocorr++)
106         {
107 #           include "YEqn.H"
108 #           include "hsEqn.H"
110             // --- PISO loop
111             for (int corr=1; corr<=nCorr; corr++)
112             {
113 #               include "pEqn.H"
114             }
115         }
117         turbulence->correct();
119 #       include "logSummary.H"
120 #       include "spraySummary.H"
122         rho = thermo.rho();
124         if (runTime.write())
125         {
126             chemistry.dQ()().write();
127         }
129         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
130             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
131             << nl << endl;
132     }
134     Info<< "End\n" << endl;
136     return 0;
140 // ************************************************************************* //