|
发表于 2011-5-31 09:27:25
|
显示全部楼层
原帖由 matrixmess 于 2011-5-31 00:17 发表
通过udf可以在迭代过程中的访问fluent计算的余差吗?有没有这样的宏呢?
#include "udf.h"
DEFINE_ADJUST(res_list,domain)
{
int nw;
real scaled_res;
Message("\nResiduals for iteration %g",count2[nres-1]);
for(nw=0; nw<MAX_EQNS; ++nw)
{
if(strlen(DOMAIN_EQN_LABEL(domain,nw))>0)
{
Message("\n%s equation:",DOMAIN_EQN_LABEL(domain,nw));
scaled_res=DOMAIN_RES(domain,nw)[nres-1]/
DOMAIN_RES_SCALE(domain,nw)[nres-1];
Message(" %g",scaled_res);
}
}
Message("\n");
} |
|