CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS

How to prevent backflow when airfoil starts heaving

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 14, 2011, 11:03
Default How to prevent backflow when airfoil starts heaving
  #1
Senior Member
 
TWB
Join Date: Mar 2009
Posts: 400
Rep Power: 19
quarkz is on a distinguished road
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!
quarkz is offline   Reply With Quote

Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


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 11:31
Airfoil boundary condition Frank Main CFD Forum 1 April 21, 2008 18:36
how to prevent backflow? May Lim FLUENT 2 June 20, 2007 12:17
Extreme large coefficient for heaving airfoil Ben Main CFD Forum 1 December 29, 2006 21:58
Heaving airfoil?? quarkz Main CFD Forum 4 January 12, 2006 13:06


All times are GMT -4. The time now is 20:47.