|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
现在学udf,就按照教程中例子写了一个,在fluent中出错。请帮忙看看什么原因?
/*************************************************************************
UDF for specifying the urban wind profile boundary
**************************************************************************/
#include "udf.h"
#define VM 9.65 /*mean velocity in the free stream*/
#define B 800. /*boundary layer thickness*/
#define P 0.28 /*urban power law profile exponent*/
/* profile for inlet_x_velocity */
DEFINE_PROFILE(inlet_x_velocity,t,i)
{
real x[ND_ND];
real y;
face_t f;
begin_f_loop(f,t)
{
F_CENTROID(x,f,t);
y=x[1];
F_PROFILE(f,t,i)=VM*pow(y/B,P);
}
end_f_loop(f,t)
提示:line 3 syntax error
|
|