|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
最近想在fluent加载一个边界条件,在一水平面上du/dy=-dt/dx.dt/dy=0,这里t是温度,流动定常。我自己写了个UDF,但是初始化时出错了。请大家帮我看看错哪了。谢谢!
/******************************************************************************
myudf.c
UDF for specifying v gradient of velocity u and temperature at the free surface
******************************************************************************/
#include "udf.h"
real xigema = -1; /* the coefficient after dimensioned */
DEFINE_PROFILE(inlet_x_velocity,thread,position)
{
cell_t c;
begin_c_loop(c, thread)
{
C_T_RG(c,thread)[1]=0.0;
C_UDMI(c,thread,0)=C_T_G(c,thread)[0];
C_U_RG(c,thread)[1]=xigema*C_UDMI(c,thread,0);
}
end_c_loop(c, thread)
} |
|