|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
cpp -ID:\Fluent.Inc\fluent6.0/src -ID:\Fluent.Inc\fluent6.0/cortex/src -ID:\Fluent.Inc\fluent6.0/client/src -ID:\Fluent.Inc\fluent6.0/multiport/src -I. -DUDFCONFIG_H="<udfconfig.h>" tProfile.c
error: udf compiler: cannot execute cpp -ID:\Fluent.Inc\fluent6.0/src -ID:\Fluent.Inc\fluent6.0/cortex/src -ID:\Fluent.Inc\fluent6.0/client/src -ID:\Fluent.Inc\fluent6.0/multiport/src -I. -DUDFCONFIG_H="<udfconfig.h>" tProfile.c
我写的udf文件应该没问题:
/*TemperatureProfile tProfile.c */
/*UDF for specifying temperature profile bundary conditions */
#include "udf.h"
DEFINE_PROFILE(tprofile,thread,position)
{
real x[ND_ND];
real y;
face_t f;
begin_f_loop(f,thread)
{
F_CENTROID(x,f,thread);
y=x[1];
F_PROFILE(f,thread,i)=1600+y/1.01*y*810;
}
end_f_loop(f,thread)
} |
|