CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Programming & Development (https://www.cfd-online.com/Forums/openfoam-programming-development/)
-   -   Heat transfer coefficient due to coal surface reaction (https://www.cfd-online.com/Forums/openfoam-programming-development/249071-heat-transfer-coefficient-due-coal-surface-reaction.html)

ZhangPikai April 18, 2023 08:01

Heat transfer coefficient due to coal surface reaction
 
Hi, formers,

In the ReactingMultiphaseParcel.C, after calculating the heat of coal surface reaction (hReaction), one part will be left for particle (Sh), the other part will be transfered to gas (dhsTrans). However, the former part (coeff) is related with particle temperature "T/Tmax". I don't know why use this relation. Can anybody please give some explaination? Thank you in advance.

Code:

670* const scalar xsi = min(T/cloud.constProps().TMax(), 1.0);
671* const scalar coeff =
672* (1.0 - xsi*xsi)*cloud.constProps().hRetentionCoeff();
673*
674* Sh += coeff*hReaction/dt;
675*
676* dhsTrans += (1.0 - coeff)*hReaction;



All times are GMT -4. The time now is 14:04.