Dear Friends,

Need your help in making code for forced vibration cylinder and free oscillating cylinder in Fluent.

Currently, I successfuly simulated once case study using the following UDF.

DEFINE_CG_MOTION(osc,dt,vel,omega,time,dtime)

{

Thread *t;

Domain *d = Get_Domain(1);

real x_cg[3], force[3], moment[3];

real accl, dv;

real mass = 0.2;

real wn = 12.0;

real k= mass * wn*wn;

real c = 2*mass*wn*0.00;

int i;

NV_S(vel, =, 0.0);

NV_S(omega, =, 0.0);

t = DT_THREAD(dt);

for(i=0;i

Similar questions and discussions