24小时热门版块排行榜    

查看: 790  |  回复: 0

weipei0529

木虫 (正式写手)

[求助] UDF功能给定振动杆和振动盘的周期性振动的位移和速度表达式

用UDF功能给定振动杆和振动盘的周期性振动的位移和速度表达式,扰动频率为2500Hz,扰动振幅为2e-7um,在0.08s时开始施加扰动,使用动网格的源程序如下:
#include "stdio.h"
#include "udf.h"
#define Ac 2.e-7
#define m 0.5
#define fc 2500.
#define fm 833.
#fefine t0 0.08
DEFINE_CG_MOTION(droplet,dt,cg_vel,cg_omega,time,dtime)
{
Thread *t;
face_t f;
real velo,loc;
/*reset velocities*/
NV_S(cg_vel,=,0.0);
NV_S(cg_omega,=,0.0);
if(!Data_Valid_P())
return;
/*get the thread Pointer for which this motion is defined*/
t = DT_THREAD(dt);
/*compute velocity and location of vibration*/
velo=Ac*2*M_PI*(m*fm*sin(2*M_PI*fc*(time-t0))*cos(2*M_PI*fm*(time-t0))+m*fc*cos(2*M_PI*fc*

(time-t0))*sin(2*M_PI*fm*(time-t0))+fc*cos(2*M_PI*fc*(time-t0)));
loc=Ac*(1+m*sin(2*M_PI*fm*(time-t0)))*sin(2*M_PI*fc*(time-t0));
Message("\nUDF droplet:time=%f,x_vel=%10.8f,loc(m)=%10.8f\n",time,velo,loc);
/*set y_component of velocity*/
cg_vel[0]=velo;
}
但是提示19行,c: line 19: structure reference not implemented
求大神指导啊
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 weipei0529 的主题更新
信息提示
请填处理意见