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

Pitching Airfoil: Cd Vs AOA

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   June 19, 2015, 02:43
Default Pitching Airfoil: Cd Vs AOA
  #1
New Member
 
Mubashir Ali
Join Date: Apr 2013
Location: India
Posts: 10
Rep Power: 12
mooby is on a distinguished road
Send a message via Skype™ to mooby
Hi,
I am doing a simulation for pitching of an airfoil using Fluent 15.0
I have an equation Alpha(t) = alpha0 + alpha_amp*sin(wt) which i differentiate it with respect to time to obtain angular frequency. My UDf is given below:
#include "udf.h"
/*#include <stdio.h>
#include <math.h>*/
DEFINE_ZONE_MOTION(motion,omega,axis,origin,veloci ty,time,dtime)
{ FILE *fp; /* Declaring file variable */

real thz,alpha;
alpha1 = 11+ (11*sin(4.335*time));/*Calculating AOA by method 1*/
/* record the kinematic data in the file */
fp = fopen("Alpha.txt", "a"); /* Open a file to data to the end */

*omega= (0.0175*11*4.335*cos(4.335*time));
alpha2=*omega * (CURRENT_TIME );/*Calculating AOA by method 2*/
printf("time(sec) = %f, Omega(Rad/sec) = %f, AOA (Deg.) = %f, AOA (Deg.) = %f\n", time, *omega,alpha1,alpha2);

fprintf(fp,"%f, %f, %f\n", time, *omega,alpha1);


fclose(fp); /* Closing the file */

return;

}

My alpha0 = 11 Deg, so I have fixed my Airfoil at 11 Deg AoA. The mesh motion is fine but what I dont get is correct AOA when I use equation above in my UDF to calculate AOA. Calculated AOA by above two methods in UDF does not corresponds to the orientation of airfoil in the pictures I save.

Any help will be appreciated

Could you please help me
mooby is offline   Reply With Quote

Reply

Tags
fleunt, pitching aerofoil, pitching oscillation


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
SU2 AOA optimization 454514566@qq.com SU2 9 March 7, 2022 16:17
2D FFD Optimization RLangtry SU2 2 August 5, 2014 09:48
Airfoil pitching UDF with AOA prasantasarkar FLUENT 0 July 16, 2014 07:36
Problem with restart solution in shape_optimization.py robyTKD SU2 Shape Design 21 May 29, 2013 09:26
Simulating flow past airfoil with different AOA Quarkz Main CFD Forum 2 January 6, 2006 10:56


All times are GMT -4. The time now is 01:41.