137 lines
3.9 KiB
C
137 lines
3.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
Application
|
|
LagrangianCMCFoam
|
|
|
|
Description
|
|
Lagrangian CMC solver for combustion with chemical reactions.
|
|
|
|
References
|
|
Karam Han, Kang Y. Huh, Proc. Combust. Inst. 35:1175-1182 (2003)
|
|
|
|
Contact
|
|
POSTECH combustion lab.
|
|
huh@postech.ac.kr
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "fvCFD.H"
|
|
#include "turbulentFluidThermoModel.H"
|
|
#include "psiChemistryModel.H"
|
|
#include "multivariateScheme.H"
|
|
#include "pisoControl.H"
|
|
#include "fvOptions.H"
|
|
#include "localEulerDdtScheme.H"
|
|
#include "fvcSmooth.H"
|
|
#include "IFstream.H"
|
|
#include "OFstream.H"
|
|
#include "Math.H" //Mathematical functions for CMC (AMC, gammaln, TDMA)
|
|
|
|
#include "LinearMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#include "postProcess.H"
|
|
|
|
#include "setRootCase.H"
|
|
#include "createTime.H"
|
|
#include "createMesh.H"
|
|
#include "createControl.H"
|
|
#include "createTimeControls.H"
|
|
#include "createRDeltaT.H"
|
|
#include "initContinuityErrs.H"
|
|
#include "createFields.H"
|
|
#include "createFieldRefs.H"
|
|
#include "createFvOptions.H"
|
|
|
|
turbulence->validate();
|
|
|
|
#include "compressibleCourantNo.H"
|
|
#include "setInitialDeltaT.H"
|
|
|
|
#include "startSummary.H" //Make logSummary file for CMC
|
|
#include "readCMCProperties.H" //Read and set fields for CMC calculation
|
|
|
|
#include "createLinearMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
Info<< "\nStarting time loop\n" << endl;
|
|
|
|
while (runTime.run())
|
|
{
|
|
#include "readTimeControls.H"
|
|
#include "compressibleCourantNo.H"
|
|
#include "setDeltaT.H"
|
|
|
|
runTime++;
|
|
|
|
Info<< "Time = " << runTime.timeName() << nl << endl;
|
|
|
|
#include "QiEqn.H"
|
|
|
|
#include "rhoEqn.H"
|
|
#include "UEqn.H"
|
|
if(init_start_CMC == true)
|
|
{
|
|
#include "QCMC_init.H" // Initialize conditional profiles
|
|
#include "CMCwrite.H" // Write conditional profiles
|
|
init_start_CMC = false;
|
|
}
|
|
#include "CMCequation.H" //Solve CMC equations
|
|
#include "CMCintegration.H" //Conditional field integration and get reaction rate
|
|
#include "EEqn.H"
|
|
|
|
// --- Pressure corrector loop
|
|
while (piso.correct())
|
|
{
|
|
#include "pEqn.H"
|
|
}
|
|
|
|
turbulence->correct();
|
|
|
|
#include "logSummary.H" //Print log data
|
|
|
|
if (runTime.write())
|
|
{
|
|
#include "CMCwrite.H"// Write conditional profiles
|
|
}
|
|
|
|
runTime.write();
|
|
|
|
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
|
|
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
|
|
<< nl << endl;
|
|
}
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|