|
|
【答案】应助回帖
★ ★ ★ ★ 感谢参与,应助指数 +1 PL600: 金币+4, ★有帮助 2014-06-29 10:13:59
使用UDF吧,define_property ,if语句判断C_T(c,t)温度,赋值……下面简单的不知对否
DEFINE_PROPERTY(LIUTI_density, cell, thread)
{
real density;
real temp = C_T(cell, thread);
if(temp<=0)
density=100;
else
density=10;
return density;
} |
|