- 1、本文档共22页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
PAGE1
Fluent-UDF_Coal-Combustion-Multiphase-Flow-Processes
Codesforvariouskindsofheterogeneousreactions
【第二部分-Part2】
DEFINE_HET_RXN_RATE(SteamGasif_Rev_MGAS,c,t,hr,mw,yi,rr,rr_t)
{
Thread**pt=THREAD_SUB_THREADS(t);
Thread*tp=pt[0];/*gasphase*/
intindex_phase=Get_Phase_Index(hr);
Thread*ts=pt[index_phase];/*solidphase*/
*rr=0;
doubledirection=0.0,mol_weight,y_carbon,rr_turb=1e+20;
/*
CO+H2H2O+1/25Soot
Thereversesteamgasificationreaction,whichisCO+H21/25Soot+H2Oiswrittenasthereaction
shownabove.SoanegativeratemeansCOandH2isconsumedandH2OandSootaregenerated.Notethatno
C(s)isgenerated,thestoichcoeffforC(s)intheabovereationiszero.
Setthephaseandspeciesindices.Ashspeciesindexisinitializedtozero,withallotherindices.
AshspeciesindexisusedasaflagtoexecuteSetSpeciesIndexonlyonce.Thisisdonebythefirst
reaction,definedintheheterogeneousreactionpanelinFLUENTGUI.
*/
if(IS_ASH==0)
SetSpeciesIndex();
if(MGAS_Gasif)
{
doubleRoRT=C_R(c,tp)*UNIVERSAL_GAS_CONSTANT*C_T(c,tp);
doublep_h2o=RoRT*yi[IP_H2O][IS_H2O]/mw[IP_H2O][IS_H2O]/101325.;
doublep_co=RoRT*yi[IP_CO][IS_CO]/mw[IP_CO][IS_CO]/101325.;
doublep_h2=RoRT*yi[IP_H2][IS_H2]/mw[IP_H2][IS_H2]/101325.;
y_carbon=yi[IP_SOOT][IS_SOOT];
mol_weight=mw[IP_SOOT][IS_SOOT];
if(rp_ke)
rr_turb=Turbulent_rr(c,t,hr,yi);
if(C_VOF(c,ts)=eps_s_small)
{
*rr=rr_steam_gasif(c,t,ts,tp,p_h2o,p_co,p_h2,y_carbon,mol_weight,direction);/*mol/(cm^3.s)*/
if(direction0.0)/*positivevalueimpliesC(s)+H2OCO+H2*/
*rr=0.0;
else/*negativevalueimpliesCO+H2H2O+1/25Soot*/
{
文档评论(0)