1 前言
2 建模与网格
3 求解设置
#include "udf.h"
DEFINE_PROFILE(out_velocity,t,i)
{
real velocity;
real the_current_time;
face_t f;
the_current_time=CURRENT_TIME;
if(the_current_time>=0&&the_current_time<0.018)
{
velocity=-0.423*(1-pow(the_current_time/0.018,1));
}
else
{
velocity=0;
}
begin_f_loop(f,t)
{
F_PROFILE(f,t,i)=velocity;
}
end_f_loop(f,t)
}
4 计算结果
参考文献