|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
[这个贴子最后由Wind在 2002/04/21 09:34pm 编辑]
用UDF中的DEFINE_PROFILE宏定义进流处速度剖面,3D。速度剖面是一曲面,沿高度呈指数变化,沿流向垂直的方向不变。其中用到F_CENTROID(x,f,t)宏,对于三维情况,参数x我选用二维数组,需要返回z坐标。刚开始看UDF,把manual中的例子改了一下,不知道这样写得对否,请不吝赐教。
/***********************************************************************/
/*UDF for specifying steady-state velocity profile boundary condition */
/***********************************************************************/
#include "udf.h"
DEFINE_PROFILE(inlet_x_velocity,thread,index)
{
real x[ND_ND][ND_ND]; /* this will hold the position vector */
real z;
face_t f;
begin_f_loop(f,thread)
{
F_CENTROID(x,f,thread);
z=x[1][1];
F_PROFILE(f,thread,index)=40.*pow(z/200.,0.25);
}
end_f_loop(f,thread)
}
|
|