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 fireFoam 00026 00027 Description 00028 Transient Solver for Fires and turbulent diffusion flames 00029 00030 Usage 00031 - fireFoam [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/hsCombustionThermo.H> 00052 #include <compressibleTurbulenceModel/turbulenceModel.H> 00053 #include <combustionModels/combustionModel.H> 00054 00055 #include <radiation/radiationModel.H> 00056 00057 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00058 00059 int main(int argc, char *argv[]) 00060 { 00061 #include <OpenFOAM/setRootCase.H> 00062 #include <OpenFOAM/createTime.H> 00063 #include <OpenFOAM/createMesh.H> 00064 #include <finiteVolume/readGravitationalAcceleration.H> 00065 #include <finiteVolume/initContinuityErrs.H> 00066 #include "createFields.H" 00067 #include <radiation/createRadiationModel.H> 00068 #include <finiteVolume/readTimeControls.H> 00069 #include <finiteVolume/compressibleCourantNo.H> 00070 #include <finiteVolume/setInitialDeltaT.H> 00071 00072 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00073 00074 Info<< "\nStarting time loop\n" << endl; 00075 00076 while (runTime.run()) 00077 { 00078 #include <finiteVolume/readPISOControls.H> 00079 #include <finiteVolume/readTimeControls.H> 00080 #include <finiteVolume/compressibleCourantNo.H> 00081 #include <finiteVolume/setDeltaT.H> 00082 00083 runTime++; 00084 Info<< "Time = " << runTime.timeName() << nl << endl; 00085 00086 #include <finiteVolume/rhoEqn.H> 00087 00088 // --- Pressure-velocity PIMPLE corrector loop 00089 for (int oCorr=0; oCorr<nOuterCorr; oCorr++) 00090 { 00091 #include "UEqn.H" 00092 00093 #include "ftEqn.H" 00094 #include "fuhsEqn.H" 00095 00096 // --- PISO loop 00097 for (int corr=0; corr<nCorr; corr++) 00098 { 00099 #include "pEqn.H" 00100 } 00101 } 00102 00103 turbulence->correct(); 00104 00105 rho = thermo.rho(); 00106 00107 runTime.write(); 00108 00109 Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s" 00110 << " ClockTime = " << runTime.elapsedClockTime() << " s" 00111 << nl << endl; 00112 00113 } 00114 00115 Info<< "End\n" << endl; 00116 00117 return 0; 00118 } 00119 00120 // ************************************************************************* //