CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

C4 airfoil data

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   October 12, 2005, 08:08
Default C4 airfoil data
  #1
dragon
Guest
 
Posts: n/a
Does someone know the C4 airfoil data or the eqautions to calculate its coordinates? thanks !

dragon
  Reply With Quote

Old   October 12, 2005, 08:49
Default Re: C4 airfoil data
  #2
Bounecer
Guest
 
Posts: n/a
I've found RC(4) airfoil on this page: http://www.nasg.com/afdb/show-airfoil-e.phtml?id=996 Click on contour link and y'll find cordinates.
  Reply With Quote

Old   October 12, 2005, 09:30
Default Re: C4 airfoil data
  #3
dragon
Guest
 
Posts: n/a
thanks,dear Bounecer.

But I guess RC(4) is not the one I want. I read in the paper that the airfoil's name is C4. I dont know if it is NACA,but I guess not. This is the paper I read: "Non-Newtonian Flow over the trailing edge of an airfoil" Journal name:Experimental thermal and fluid science 1996;12:244-249 there is a picture of C4, but it does not look like RC(4).

thanks again.

dragon
  Reply With Quote

Old   October 12, 2005, 11:53
Default Re: C4 airfoil data
  #4
Bounecer
Guest
 
Posts: n/a
I'm studing a 2D, incompressible, laminar, viscous flow about airfoil. I've used "structured C grid generation", with finite volumes method and second order upwind numerical scheem and SIMPLER algorithm. After great time and efforts, my code program diverge after i reach a precision of 10e-3.

In my work i'am using only NACA airfoil, but if i found what you look for, i'll contact you.

Good chance friend
  Reply With Quote

Old   November 2, 2005, 06:07
Default HN273airfoil data
  #5
mostafa
Guest
 
Posts: n/a
please send all information about airfoil HN273. thank you.
  Reply With Quote

Old   March 22, 2011, 11:49
Default
  #6
New Member
 
Geth
Join Date: Feb 2011
Posts: 7
Rep Power: 15
arungeth is on a distinguished road
Please click one of the Quick Reply icons in the posts above to activate Quick Reply.
arungeth is offline   Reply With Quote

Old   October 8, 2013, 14:22
Default matlab code
  #7
New Member
 
Akshay Khadse
Join Date: Sep 2013
Posts: 11
Rep Power: 12
Ammofreak is on a distinguished road
Here is the code to generate C4 thickness distribution and cambered airfoil

clc
clear all

t = 0.1;%thickness, t and x are in % of chord length
theta = 18.5*pi/180; %camber angle/2
mu = pi/6;%it is actually dy_c/dx, for simplicity i used it equal to 30 degrees.

x = 0:0.02:1;

y = (t/0.2)*(0.3048*x.^0.5-0.0914*x-0.8614*x.^2+2.1236*x.^3-2.9163*x.^4+1.9744*x.^5-0.5231*x.^6);%equation for symmetric airfoil C4

y_c = sqrt(((0.5/sin(theta/2)).^2-(x-0.5).^2))-0.5/tan(theta/2);%equation of camber line

%for upper s/f wrapped co-ordinates around camber line y_c

x_u = transpose(115*(x-y*sin(mu)));
y_u = transpose(115*(y_c+y*cos(mu)));

%for lower s/f wrapped co-ordinates around camber line y_c

x_L = transpose(115*(x-y*cos(mu)));
y_L = transpose(115*(y_c-y*sin(mu)));

plot(x_u,y_u,x_L,y_L);
ylim([-20 50]);

regards,
Ammofreak

Last edited by Ammofreak; October 10, 2013 at 07:01.
Ammofreak 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
Lift and Drag Coefficient data for NACA 2412 Airfoil mahbub03 Main CFD Forum 22 May 25, 2014 15:39
Help, find 2d multi-element airfoil geometry data liujmljm Main CFD Forum 0 June 5, 2009 09:24
How to update polyPatchbs localPoints liu OpenFOAM Running, Solving & CFD 6 December 30, 2005 17:27
About low Reynolds number airfoil experiment data. zqnwpu Main CFD Forum 5 December 25, 2004 03:52
Where can find airfoil data with pressure distribution or aerodynamic data Ahlo Main CFD Forum 5 January 12, 1999 22:45


All times are GMT -4. The time now is 10:54.