马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
/***********************************************************************
UDF for specifying unsteady-state periodic temperature profile boundary
profile for a cavity heated from the side
************************************************************************/
#include <udf.h>
DEFINE_PROFILE(T_time, t, i)
{
real time;
face_t f;
real fw=0.96;
real e=310.14;
real d=29.74;
time = RP_Get_Real("flow-time");
begin_f_loop(f, t)
{
F_PROFILE(f, t, i)=e-d*(double pow(double fw,double time));
}
end_f_loop(f, t)
}
这是一个关于边界温度随步长变化的UDF 其中 F_PROFILE(f, t, i)=e-d*(double pow(double fw,double time)); 代表
式子y = 310.13727-29.73557*0.96104^x的函数关系
当我导入FLUENT 时 提示Error: C:\Documents and Settings\Administrator\\327\300\303\346\tprofile.c: line 17: parse error.
小弟是菜鸟 刚学UDF 不久 不知道 问题 出 在哪里 还望大虾们指点!! |