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

Airfoil Pitching

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 1, 2012, 09:27
Default Airfoil Pitching
  #1
Member
 
sheth roh
Join Date: Jul 2011
Posts: 56
Rep Power: 14
sheth is on a distinguished road
Hi,

I am performing airfoil Pitching in fluent.

The pitching is simple harmonic and is about the centroid. From diagram you can see that pitcing is about z axis.

Here is my udf

Quote:
#include <stdio.h>
#include <math.h>
#include "udf.h"

DEFINE_CG_MOTION(pitch, dt, vel, omega, time, dtime)
{
real ampl,omg,count;
/* motion */
ampl = 0.7 ; /* amplitude of rotation in radians */
omg = 150; /* angular frequency */

omega [2] = ampl * sin (omg * time);
}
The problem is that I dont see any oscillation happening. The Cl curve also remains constant with time.

Can you tell whats wrong with code. ?

Note: I only set dynamic mesh zone in airfoil(So DO I need to set other zones too?)


I have tried setting 6 DOF on and off but in both case it doesnt work.
Attached Images
File Type: jpg fluent.jpg (102.4 KB, 70 views)
sheth is offline   Reply With Quote

Old   March 9, 2012, 09:26
Smile Airfoil Pitching Problem
  #2
New Member
 
Saif Ullah
Join Date: Aug 2011
Posts: 10
Rep Power: 14
saifullahkhalid is on a distinguished road
You should add following commands to the udf. Don't use omega[2] simply. I hope it will work. Set only your airfoil as dynamic zone and give CG absolute coordinates in creating dynamic zones. You airfoil should start rotating about that point.

daft = (60 * (pi/180)) * 2*pi*0.2 * sin(2*pi*0.2 * time);
alpha = 60 * cos(2*pi*0.2 * time);
/* set omega */
omega[2] = daft;

Regards
saifullahkhalid is offline   Reply With Quote

Old   March 11, 2012, 02:17
Default
  #3
Member
 
sheth roh
Join Date: Jul 2011
Posts: 56
Rep Power: 14
sheth is on a distinguished road
Quote:
Originally Posted by saifullahkhalid View Post
You should add following commands to the udf. Don't use omega[2] simply. I hope it will work. Set only your airfoil as dynamic zone and give CG absolute coordinates in creating dynamic zones. You airfoil should start rotating about that point.

daft = (60 * (pi/180)) * 2*pi*0.2 * sin(2*pi*0.2 * time);
alpha = 60 * cos(2*pi*0.2 * time);
/* set omega */
omega[2] = daft;

Regards
Hey Thanks for reply.

I will definitely try this code. Meanwhile can you please tell me if the following setting are correct for dynamic mesh:

- I am giving motion via define_cg_motion
- I set moving zone only to the airfoil, I consider it rigid and provide motion via udf. SO DO I NEED TO SET OUTER REGION AS DEFORMING
- I set only smoothing and remshing not layering.
- Also when I use prism mesh around airfoil, it always gives negative volume. SO for such mesh what settings should be made.

I really appreciate your help.

Regards
sheth is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Pitching Airfoil in FLUENT salihovic FLUENT 2 October 24, 2013 13:58
Airfoil pitching problem montag dp FLUENT 12 June 25, 2012 06:25
How to realize pitching airfoil with drooping nose calcualtion? zeitistgeld CFX 1 July 27, 2010 07:17
UDF for pitching airfoil Abu Bakar Main CFD Forum 0 March 18, 2007 04:29
quasi steady analysis of 2d airfoil (pitching) Alex FLUENT 1 February 10, 2006 02:54


All times are GMT -4. The time now is 04:42.