| 查看: 2260 | 回复: 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中*表示什么含义 |
» 猜你喜欢
26申博推荐:南京航空航天大学国际前沿院光学方向招收博士生!
已经有1人回复
如何从铁电相到顺电相。
已经有1人回复
物理学I论文润色/翻译怎么收费?
已经有272人回复
各位大佬,求一份最新Wien2k版本作为学习用途
已经有0人回复
南科大活性流体和软物质课题组诚招2027级博士、硕士研究生和博后
已经有38人回复
瑞典林雪平大学博士后招聘|PEC Water Splitting 方向
已经有24人回复
PRB投稿,Acknowledgment sent to author状态十天了
已经有3人回复
PVA溶解
已经有1人回复
基金申请
已经有44人回复
» 本主题相关价值贴推荐,对您同样有帮助:
2楼2018-05-23 21:25:14











reaction rate is calculated
回复此楼