sj51603 发表于 2006-9-13 07:38

问DEFINE_HEAT_FLUX的用法!

各位,高手帮帮忙!DEFINE_HEAT_FLUX具体有什么用处的!我看了半天文献,也不是很明白!各位高手,帮忙给解释一下!谢谢了

多情清秋 发表于 2006-9-13 08:52

A DEFINE_HEAT_FLUX function allows you to customize how diffusive and radiative heat fluxes between a cell and a neighboring wall are to be computed in the energy equation. You can use this DEFINE macro to specify one or both types of heat fluxes. The argument f is the index of the wall face, Thread pointer t points to the thread of the wall face, c0 is the index of the cell next to the wall, and Thread pointer t0 points to the thread of the cell. Your UDF needs to specify the diffusive heat flux coefficient ( cid), and the radiative heat flux coefficient ( cir). With these inputs, diffusive heat flux ( qid) and radiative heat flux ( qir), respectively, will then be computed by FLUENT using the following equations:


qid = cid + cid*C_T(c0,t0) - cid*F_T(f,t) - cid*pow(F_T(f,t),4)
qir = cir + cir*C_T(c0,t0) - cir*F_T(f,t) - cir*pow(F_T(f,t),4)

sj51603 发表于 2006-9-13 16:59

谢谢你,但是我就是看这个文献看不懂!不明白这个宏是怎么改变热流密度的!好像有对流跟辐射,对把!
页: [1]
查看完整版本: 问DEFINE_HEAT_FLUX的用法!