|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
向各位高手请教:
我在使用udf时遇到问题,错误显示为:“flow_time undefined variable”
程序见下
/**********************************************/
/pexit.c*/
/**********************************************/
#include"udf.h"
DEFINE_PROFILE(air_inlet,thread,position)
{
face_t f;
begin_f_loop(f,thread)
{
real t=RP_Get_Real("flow_time");
int i;
i=t/3600;
if(i/2!=0)
F_PROFILE(f,thread,position)=0.2;
else
F_PROFILE(f,thread,position)=0;
}
end_f_loop(f,thread)
} |
|