|
楼主 |
发表于 2005-7-4 15:19:35
|
显示全部楼层
如何在入口边界定义风速沿高度的变化
谢谢提示
我看了帮助文件上面有个例子,定义好了x方向的入口速度,程序如下:
#include "udf.h"
DEFINE_PROFILE(inlet_x_velocity, thread, nv)
{
float x[3];
float y;
face_t f;
begin_f_loop(f, thread)
{
F_CENTROID(x,f,thread);
y = x[1];
F_PROFILE(f, thread, nv) =
20.*(1.- y*y/(.0745*.0745));
}
end_f_loop(f, thread)
}
我试了下,他是x方向的速度变化,我想把它改成y方向的入口速度,我把程序中字母x变成y,y变成z试了下,他还是x方向的速度变化,不知为何?请高手指教
|
|