| 查看: 2296 | 回复: 1 | ||
[求助]
请教fluent中help里DEFINE_VR_RATE中 *rate等含义
|
|
/********************************************************************* UDF for specifying a volume reaction rate The basics of ANSYS FLUENT’s calculation of reaction rates: only an Arrhenius ("finite rate" reaction rate is calculatedfrom the inputs given by the user in the graphical user interface **********************************************************************/ #include "udf.h" DEFINE_VR_RATE(vol_reac_rate,c,t,r,wk,yk,rate,rr_t) { real ci, prod; int i; /* Calculate Arrhenius reaction rate */ prod = 1.; for(i = 0; i < r->n_reactants; i++) { ci = C_R(c,t) * yk[r->reactant] / wk[r->reactant]; prod *= pow(ci, r->exp_reactant); } *rate = r->A * exp( - r->E / (UNIVERSAL_GAS_CONSTANT * C_T(c,t))) * pow(C_T(c,t), r->b) * prod; *rr_t = *rate; /* No "return..;" value. */ } 语句中不明白*rate和*rr_t中*表示什么含义 |
» 猜你喜欢
帮我的英语口语老师找学生
已经有0人回复
什么时候开奖?
已经有13人回复
物理学I论文润色/翻译怎么收费?
已经有169人回复
散金币祈福
已经有94人回复
青基已中
已经有1人回复
散金币祈福
已经有186人回复
求助,如何提取ELK的rt-TDDFT在某一时刻的自旋密度分布和电子密度分布
已经有1人回复
澳门大学IAPME李海峰教授常年招收博士研究生
已经有0人回复
澳门大学IAPME李海峰教授常年招收博士研究生
已经有0人回复
澳门大学IAPME李海峰教授常年招收博士研究生
已经有0人回复
» 本主题相关价值贴推荐,对您同样有帮助:
2楼2018-05-23 21:25:14










reaction rate is calculated
回复此楼