This function object writes out the heat release rate field for a combustion model. This is useful for solvers where combustion is optional, and which do not therefore write out the heat release rate by default; e.g., chtMultiRegionFoam and reactingTwoPhaseEulerFoam.
18 lines
720 B
C++
18 lines
720 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Calculates the heat release rate Qdot, outputting the data as a Qdot field.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#includeEtc "caseDicts/postProcessing/combustion/Qdot.cfg"
|
|
|
|
region gas;
|
|
|
|
// ************************************************************************* //
|