|
[Sponsors] |
How to prevent backflow when airfoil starts heaving |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
July 14, 2011, 12:03 |
How to prevent backflow when airfoil starts heaving
|
#1 |
Senior Member
TWB
Join Date: Mar 2009
Posts: 414
Rep Power: 19 |
Hi,
I am trying to simulate an airfoil doing pure heaving, up and down. My udf is: /* Compiled udf for modelling plunging airfoil in Fluent*/ #include "udf.h" /* The equation of the plunging motion y(t)=amp*sin(2*pi*f*t) amp = plunge amplitude f = plunge frequency */ DEFINE_CG_MOTION(plunge,dt,cg_vel,cg_omega,time,dt ime) { Thread *t; face_t f; real k = 0.58; real amp = 0.175; real Uinf = 1.; real omega; real vel; real freq; freq = 0.58; omega = 2.0*M_PI*freq; /*reset velocities*/ NV_S(cg_vel, =,0.0); NV_S(cg_omega, =,0.0); /*get the thread pointer for which the motion is defined*/ t=DT_THREAD(dt); vel = omega*amp*cos(omega*time); cg_vel[1]=vel; Message("vel %f time %f k %f h %f\n",cg_vel[1],time,k,amp); } The BC at outlet is simply outflow or pressure outlet. My initial simulation was at Re=10000. All went fine. However, when I tried to simulate at Re=100, backflow happens, after about 200 timesteps. Tried to reduce the time interval but it still happens. What can I do to prevent this from happening? Thanks! |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Modeling Backflow for a 3D Airfoil (Wing of Finite Span) | Josh | CFX | 9 | August 18, 2009 12:31 |
Airfoil boundary condition | Frank | Main CFD Forum | 1 | April 21, 2008 19:36 |
how to prevent backflow? | May Lim | FLUENT | 2 | June 20, 2007 13:17 |
Extreme large coefficient for heaving airfoil | Ben | Main CFD Forum | 1 | December 29, 2006 22:58 |
Heaving airfoil?? | quarkz | Main CFD Forum | 4 | January 12, 2006 14:06 |