|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
这是一个随时间变化的速度入口条件
/********************************************/
/*udfexample.c */
/*UDF for specifying a unsteady-state velocity profile boundary condition*/
/********************************************/
#include "udf.h"
DEFINE_PROFILE(inlet_x_velocity,thread,index)
{
real t=RP_Get_Real("flow-time");
face_t f;
begin_f_loop(f,thread)
{
if(0<=t<=0.24)
F_PROFILE(f,thread,index)=2.4e(-7.557*t)*sin(13.09*t);
else if(0.24<t<=0.2743)
F_PROFILE(f,thread,index)=-34.3e(-7.557*t*(t-0.24))*sin(13.09*(t-0.24));
else
F_PROFILE(f,thread,index)=0;
}
end_f_loop(f,thread)
} |
|