FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

dieselFoam.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Application
00025     dieselFoam
00026 
00027 Description
00028     Solver for diesel spray and combustion.
00029 
00030 Usage
00031     - dieselFoam [OPTION]
00032 
00033     @param -case <dir> \n
00034     Specify the case directory
00035 
00036     @param -parallel \n
00037     Run the case in parallel
00038 
00039     @param -help \n
00040     Display short usage message
00041 
00042     @param -doc \n
00043     Display Doxygen documentation page
00044 
00045     @param -srcDoc \n
00046     Display source code
00047 
00048 \*---------------------------------------------------------------------------*/
00049 
00050 #include <finiteVolume/fvCFD.H>
00051 #include <reactionThermophysicalModels/hCombustionThermo.H>
00052 #include <compressibleTurbulenceModel/turbulenceModel.H>
00053 #include <dieselSpray/spray.H>
00054 #include <chemistryModel/psiChemistryModel.H>
00055 #include <chemistryModel/chemistrySolver.H>
00056 
00057 #include <finiteVolume/multivariateScheme.H>
00058 #include <OpenFOAM/IFstream.H>
00059 #include <OpenFOAM/OFstream.H>
00060 #include <OpenFOAM/Switch.H>
00061 
00062 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00063 
00064 int main(int argc, char *argv[])
00065 {
00066     #include <OpenFOAM/setRootCase.H>
00067     #include <OpenFOAM/createTime.H>
00068     #include <OpenFOAM/createMesh.H>
00069     #include "../dieselEngineFoam/createFields.H"
00070     #include <finiteVolume/readGravitationalAcceleration.H>
00071     #include "../dieselEngineFoam/readCombustionProperties.H"
00072     #include "../dieselEngineFoam/createSpray.H"
00073     #include <finiteVolume/initContinuityErrs.H>
00074     #include <finiteVolume/readTimeControls.H>
00075     #include <finiteVolume/compressibleCourantNo.H>
00076     #include <finiteVolume/setInitialDeltaT.H>
00077 
00078     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00079 
00080     Info<< "\nStarting time loop\n" << endl;
00081 
00082     while (runTime.run())
00083     {
00084         #include <finiteVolume/readPISOControls.H>
00085         #include <finiteVolume/compressibleCourantNo.H>
00086         #include <finiteVolume/setDeltaT.H>
00087 
00088         runTime++;
00089         Info<< "Time = " << runTime.timeName() << nl << endl;
00090 
00091         Info<< "Evolving Spray" << endl;
00092 
00093         dieselSpray.evolve();
00094 
00095         Info<< "Solving chemistry" << endl;
00096 
00097         chemistry.solve
00098         (
00099             runTime.value() - runTime.deltaT().value(),
00100             runTime.deltaT().value()
00101         );
00102 
00103         // turbulent time scale
00104         {
00105             volScalarField tk =
00106                 Cmix*sqrt(turbulence->muEff()/rho/turbulence->epsilon());
00107             volScalarField tc = chemistry.tc();
00108 
00109             // Chalmers PaSR model
00110             kappa = (runTime.deltaT() + tc)/(runTime.deltaT()+tc+tk);
00111         }
00112 
00113         chemistrySh = kappa*chemistry.Sh()();
00114 
00115         #include "../dieselEngineFoam/rhoEqn.H"
00116         #include "../dieselEngineFoam/UEqn.H"
00117 
00118         for (label ocorr=1; ocorr <= nOuterCorr; ocorr++)
00119         {
00120             #include "../dieselEngineFoam/YEqn.H"
00121             #include "../dieselEngineFoam/hsEqn.H"
00122 
00123             // --- PISO loop
00124             for (int corr=1; corr<=nCorr; corr++)
00125             {
00126                 #include "pEqn.H"
00127             }
00128         }
00129 
00130         turbulence->correct();
00131 
00132         #include "../dieselEngineFoam/spraySummary.H"
00133 
00134         rho = thermo.rho();
00135 
00136         if (runTime.write())
00137         {
00138             chemistry.dQ()().write();
00139         }
00140 
00141         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
00142             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
00143             << nl << endl;
00144     }
00145 
00146     Info<< "End\n" << endl;
00147 
00148     return 0;
00149 }
00150 
00151 
00152 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines