CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > FLUENT > Fluent UDF and Scheme Programming

The pitching airfoil simulated in Fluent using a UDF has unexpected amount of lift

Register Blogs Community New Posts Updated Threads Search

Like Tree1Likes
  • 1 Post By moh_zain

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   July 27, 2018, 00:25
Default The pitching airfoil simulated in Fluent using a UDF has unexpected amount of lift
  #1
Member
 
Hanye Azimi
Join Date: Oct 2016
Posts: 42
Rep Power: 9
ronak is on a distinguished road
Hi
I'm simulating an unsteady harmonic 2D motion(pitching) for an airfoil in Fluent using a UDF. The amplitude of pitching is 15deg,the angle of attack is 10deg. trying to validate with a paper but the result doesn't match. The lift coefficient range is between -0.5<Cl<2.4 in the paper but the lift Coeff. range of my simulation is 0.1<Cl<2.3
I doubt in my mesh so I tried many mesh and time steps, still there is no negative lift.I'm using this UDF:
#include "udf.h"
DEFINE_GRID_MOTION(airfoil,d, dt, vel, omega, time, dtime)
{
real a, w, pi;
pi = 3.14159265;


/* define motion variables */
a = 15*(pi/180); /* Amplitude */
f=0.06; /* frequency */
w = 2 * pi *f; /* Angular Frequency */


/* define airfoil motion */
omega[2] = -a*w*cos(w*time); /* z-component of angular velocity */


}

The angle of attack is defined in inlet velocity ( in monitors, lift monitors & drag monitors)

Why is the lift positive whole the cycle although we're expected to have a range of negative lift as the airfoil moves anticlockwise from 10deg to -5deg and returns in a clockwise direction & continue to 25deg.
what could be my mistake?
The result of the paper is attached.

Thanks in advance
ronak is offline   Reply With Quote

Old   July 27, 2018, 11:54
Default
  #2
New Member
 
maisui
Join Date: Jun 2018
Posts: 7
Rep Power: 8
maisui1993 is on a distinguished road
may be the cg-motion is ok
maisui1993 is offline   Reply With Quote

Old   July 30, 2018, 13:57
Default
  #3
Member
 
mohamed
Join Date: Apr 2016
Posts: 34
Rep Power: 10
moh_zain is on a distinguished road
use CG motion not grid motion the code is fine just change grid motion with CG motion
maisui1993 likes this.
moh_zain is offline   Reply With Quote

Old   July 31, 2018, 23:49
Default
  #4
Member
 
Hanye Azimi
Join Date: Oct 2016
Posts: 42
Rep Power: 9
ronak is on a distinguished road
Quote:
Originally Posted by moh_zain View Post
use CG motion not grid motion the code is fine just change grid motion with CG motion
Thank a lot.
ronak is offline   Reply With Quote

Reply

Tags
ansys15, harmonic motion, pitching airfoil, udf


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
Problem with airfoil shape optimization robyTKD SU2 Shape Design 7 March 7, 2022 16:18
looking for a smart interface matlab fluent chary FLUENT 24 June 18, 2021 09:07
FLUENT installation on UBUNTU 12.04 (LTS) teymourj FLUENT 2 March 1, 2017 22:24
Supersonic flow over an airfoil. FLUENT Lift don't match up with Shock Expansion Tech enriccasas FLUENT 1 August 21, 2013 06:43
UDF in Fluent subha_meter Main CFD Forum 0 October 17, 2009 23:54


All times are GMT -4. The time now is 00:05.