|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
我是一个udf初学者,想编一个关于两相流的udf。思想为:液面以上为空气,vof=0.液面以下为水,vof=1,首先确定水面线的坐标(假定vof=0.5处,其余方法不知怎样编),然后将水面线以下给静压分布条件,初编如下,但存在错误:error C2059: syntax error : '}'。由于本人udf水平有限,求哪位高人指点一下,不胜感激。
#include "udf.h"
DEFINE_PROFILE(out_pressure,thread,position)
{
int phase_domain_index;
real x[ND_ND];
Domain *subdomain;
real y;
real vof;
face_t f;
float de=1000;
float g=9.8;
begin_f_loop_all(f,thread)
{
vof=F_VOF(f,thread);
if(vof=0.5)
F_CENTROID(x,f,thread);
h=x[1];
}
end_f_loop_all(f,thread)
sub_domain_loop(subdomain,mixture_domain,phase_domain_index)
{
if (DOMAIN_ID(subdomain)==3)
thread_loop_f(thread,subdomain)
{
begain_f_loop_all(f,thread);
{
F_CENTROID(x,f,thread);
y=x[1];
F_PROFILE(f,thread,position)=de*g*h*(h-y)/h;
}
end_f_loop(f,thread)
}
}
} |
|