wlphappy 发表于 2008-3-5 10:53

高手帮帮忙 看看我这个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 编辑 ]

cora 发表于 2008-3-5 11:00

变量没有定义

wlphappy 发表于 2008-3-5 11:01

回复 2楼 的帖子

那应该怎么修改呢
谢谢

zhishijing 发表于 2008-7-4 15:53

Real 改成real。这样就可以了。

wlphappy 发表于 2008-7-14 10:18

这个后来我看出那里有错了,编写没有任何问题,是分号用成中文标点了,所以无法识别
谢谢大家的回复
页: [1]
查看完整版本: 高手帮帮忙 看看我这个udf哪里有错误