|
|
发表于 2011-1-25 23:19:33
|
显示全部楼层
/* Loop over cells in a thread to get information stored in cells. */
int count_cell_number=0;
begin_c_loop(c, c_thread)
{
/* C_T gets cell temperature. The += will cause all of the cell
temperatures to be added together. */
count_cell_number++;
temp += C_T(c, c_thread);
}
end_c_loop(c, c_thread)
}
参考帮助文件
D:\Program Files\Fluent.Inc\help\html\udf\node97.htm |
|