OpenFOAM logo
The Open Source CFD Toolbox
  Source Guide OpenCFD Solutions Contact OpenFOAM

coldEngineFoam.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-2009 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 the
00013     Free Software Foundation; either version 2 of the License, or (at your
00014     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, write to the Free Software Foundation,
00023     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00024 
00025 Application
00026     engineFoam
00027 
00028 Description
00029     Solver for cold-flow in internal combustion engines.
00030 
00031 \*---------------------------------------------------------------------------*/
00032 
00033 #include "fvCFD.H"
00034 #include "engineTime.H"
00035 #include "engineMesh.H"
00036 #include "basicPsiThermo.H"
00037 #include "turbulenceModel.H"
00038 #include "OFstream.H"
00039 
00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00041 
00042 int main(int argc, char *argv[])
00043 {
00044     #include "setRootCase.H"
00045 
00046     #include "createEngineTime.H"
00047     #include "createEngineMesh.H"
00048     #include "createFields.H"
00049     #include "initContinuityErrs.H"
00050     #include "readEngineTimeControls.H"
00051     #include "compressibleCourantNo.H"
00052     #include "setInitialDeltaT.H"
00053     #include "startSummary.H"
00054 
00055     // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00056 
00057     Info<< "\nStarting time loop\n" << endl;
00058 
00059     while (runTime.run())
00060     {
00061         #include "readPISOControls.H"
00062         #include "readEngineTimeControls.H"
00063         #include "compressibleCourantNo.H"
00064         #include "setDeltaT.H"
00065 
00066         runTime++;
00067 
00068         Info<< "Crank angle = " << runTime.theta() << " CA-deg"
00069             << endl;
00070 
00071         mesh.move();
00072 
00073         #include "rhoEqn.H"
00074 
00075         #include "UEqn.H"
00076 
00077         // --- PISO loop
00078         for (int corr=1; corr<=nCorr; corr++)
00079         {
00080             #include "hEqn.H"
00081             #include "pEqn.H"
00082         }
00083 
00084         turbulence->correct();
00085 
00086         runTime.write();
00087 
00088         #include "logSummary.H"
00089 
00090         Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
00091             << "  ClockTime = " << runTime.elapsedClockTime() << " s"
00092             << nl << endl;
00093     }
00094 
00095     Info<< "End\n" << endl;
00096 
00097     return 0;
00098 }
00099 
00100 
00101 // ************************************************************************* //
Copyright © 2000-2009 OpenCFD Ltd