|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
想要定义inlet进口边界的z方向总压随着非稳态的时间步数线性的递减
#include "udf.h"
DEFINE_PROFILE(inlet_z_totalpressure, thread, position)
{
face_t f;
int n= RP_Get_Integer("time-step");
begin_f_loop(f, thread)
{
F_PROFILE(f, thread, position) = 8000000-100000*n;
}
end_f_loop(f, thread)
}
大家帮忙看看有没有什么不妥
|
|