1 前言
2 模型描述
3 求解设置
DEFINE_PROFILE(out_mass,t,i)
{
real mass;
real the_current_time;
face_t f;
the_current_time=CURRENT_TIME;
if(the_current_time>=0&&the_current_time<t0)
{
mass=flow;
}
else if(the_current_time>=t0&&the_current_time<tc)
{
mass=flow*(1-pow((the_current_time-t0)/(tc-t0),m));
}
else
{
mass=0;
}
begin_f_loop(f,t)
{
F_PROFILE(f,t,i)=mass;
}
end_f_loop(f,t)
}
4 计算结果
参考文献