Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / combustion / XiFoam / XiFoam.C
blobfc3658269a2671f771a84b05e3717121541250e3
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2011 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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
19     for more details.
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/>.
24 Application
25     XiFoam
27 Description
28     Solver for compressible premixed/partially-premixed combustion with
29     turbulence modelling.
31     Combusting RANS code using the b-Xi two-equation model.
32     Xi may be obtained by either the solution of the Xi transport
33     equation or from an algebraic exression.  Both approaches are
34     based on Gulder's flame speed correlation which has been shown
35     to be appropriate by comparison with the results from the
36     spectral model.
38     Strain effects are encorporated directly into the Xi equation
39     but not in the algebraic approximation.  Further work need to be
40     done on this issue, particularly regarding the enhanced removal rate
41     caused by flame compression.  Analysis using results of the spectral
42     model will be required.
44     For cases involving very lean Propane flames or other flames which are
45     very strain-sensitive, a transport equation for the laminar flame
46     speed is present.  This equation is derived using heuristic arguments
47     involving the strain time scale and the strain-rate at extinction.
48     the transport velocity is the same as that for the Xi equation.
50 \*---------------------------------------------------------------------------*/
52 #include "fvCFD.H"
53 #include "hhuCombustionThermo.H"
54 #include "turbulenceModel.H"
55 #include "laminarFlameSpeed.H"
56 #include "ignition.H"
57 #include "Switch.H"
58 #include "pimpleControl.H"
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
62 int main(int argc, char *argv[])
64     #include "setRootCase.H"
66     #include "createTime.H"
67     #include "createMesh.H"
68     #include "readCombustionProperties.H"
69     #include "readGravitationalAcceleration.H"
70     #include "createFields.H"
71     #include "initContinuityErrs.H"
72     #include "readTimeControls.H"
73     #include "compressibleCourantNo.H"
74     #include "setInitialDeltaT.H"
76     pimpleControl pimple(mesh);
78     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
80     Info<< "\nStarting time loop\n" << endl;
82     while (runTime.run())
83     {
84         #include "readTimeControls.H"
85         #include "compressibleCourantNo.H"
86         #include "setDeltaT.H"
88         runTime++;
89         Info<< "Time = " << runTime.timeName() << nl << endl;
91         #include "rhoEqn.H"
93         // --- Pressure-velocity PIMPLE corrector loop
94         for (pimple.start(); pimple.loop(); pimple++)
95         {
96             #include "UEqn.H"
98             #include "ftEqn.H"
99             #include "bEqn.H"
100             #include "huEqn.H"
101             #include "hEqn.H"
103             if (!ign.ignited())
104             {
105                 hu == h;
106             }
108             // --- PISO loop
109             for (int corr=0; corr<pimple.nCorr(); corr++)
110             {
111                 #include "pEqn.H"
112             }
114             if (pimple.turbCorr())
115             {
116                 turbulence->correct();
117             }
118         }
120         rho = thermo.rho();
122         runTime.write();
124         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
125             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
126             << nl << endl;
127     }
129     Info<< "End\n" << endl;
131     return 0;
135 // ************************************************************************* //