关于v(x,t)
我用udf定义了一个速度入口v(x,t),但从图上看出只对 t作用,未对x起作用,我想问一下定义的速度入口能同时对 x,t起作用吗?谢谢![ 本帖最后由 xinyuxf 于 2007-5-28 16:28 编辑 ]
急...................
补:#include "udf.h"DEFINE_PROFILE(Velocity_x,thread,position)
{
face_t f;
real x;
real v0,y,time;
begin_f_loop(f, thread)
{
F_CENTROID(x,f,thread);
y = x;
time=CURRENT_TIME;
F_PROFILE(f, thread, position) = 18*sin(1256*time-2.5*y) ;
}
end_f_loop(f, thread)
}
这是编译的v(x,t),有问题吗? 参考http://forum.vibunion.com/forum/thread-43931-1-1.html
页:
[1]