/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2013-2017 OpenFOAM Foundation Copyright (C) 2018 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Application simpleReactingParcelFoam Description Steady-state solver for compressible, turbulent flow with reacting, multiphase particle clouds and optional sources/constraints. \*---------------------------------------------------------------------------*/ #include "fvCFD.H" #include "turbulentFluidThermoModel.H" #include "rhoReactionThermo.H" #include "CombustionModel.H" #include "radiationModel.H" #include "IOporosityModelList.H" #include "fvOptions.H" #include "SLGThermo.H" #include "simpleControl.H" #include "cloudMacros.H" #ifndef CLOUD_BASE_TYPE #define CLOUD_BASE_TYPE ReactingMultiphase //#define CLOUD_BASE_TYPE_NAME "reactingMultiphase" Backwards compat #define CLOUD_BASE_TYPE_NAME "reacting" #endif #include CLOUD_INCLUDE_FILE(CLOUD_BASE_TYPE) #define basicReactingTypeCloud CLOUD_TYPE(CLOUD_BASE_TYPE) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) { argList::addNote ( "Steady-state solver for compressible, turbulent flow" " with reacting, multiphase particle clouds" " and optional sources/constraints." ); #include "postProcess.H" #include "addCheckCaseOptions.H" #include "setRootCaseLists.H" #include "createTime.H" #include "createMesh.H" #include "createControl.H" #include "createFields.H" #include "createFieldRefs.H" #include "initContinuityErrs.H" turbulence->validate(); // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // Info<< "\nStarting time loop\n" << endl; while (simple.loop()) { Info<< "Time = " << runTime.timeName() << nl << endl; parcels.evolve(); // --- Pressure-velocity SIMPLE corrector loop { #include "UEqn.H" #include "YEqn.H" #include "EEqn.H" #include "pEqn.H" } turbulence->correct(); runTime.write(); runTime.printExecutionTime(Info); } Info<< "End\n" << endl; return 0; } // ************************************************************************* //