高手帮帮忙 看看我这个udf哪里有错误
interpret时,显示#include "udf.h"line 5: Real: undeclared variable
下面是我的源项自定义
#define CON 1.0e12
DEFINE_SOURCE(cell_x_source,cell,thread,dS,eqn)
{
Real source;
/*source term*/
source=-CON*C_MU_L(cell,thread)*C_U(cell,thread);
/*derivative of source term w.r.t.x-velocity.*/
dS=-CON*C_MU_L(cell,thread);
return source;
}
[ 本帖最后由 wlphappy 于 2008-3-5 11:01 编辑 ] 变量没有定义
回复 2楼 的帖子
那应该怎么修改呢谢谢 Real 改成real。这样就可以了。 这个后来我看出那里有错了,编写没有任何问题,是分号用成中文标点了,所以无法识别
谢谢大家的回复
页:
[1]