Hi,
Sure, i will message u back in a day or two. At present i m struggling with a boundary layer velocity profile problem. I have everything. Only problem is in visualizing how to plot the velocity profiles.
The problem is about using blasius solution to plot the velocity profiles of u and v...
s_x and s_y are the coordinates of the center of the circle and r is the radius of the circle in a complex plane which i have to transform to an airfoil using joukowski transform.
s is he distance of the center of the circle from the origin. The imaginary part is there because this is a complex...
[code]
clear all
close all
clc
v_inf = input(' Enter the Speed [m/s]: ');
v = v_inf/v_inf;
alpha = input(' enter angle of attack [deg]: ');
alpha = alpha*pi/180;
s_x = input(' Circle Origin, X_0 [m]: ');
s_y = input(' Circle Origin, Y_0 [m]: ');
s = s_x + 1i*s_y;
r = input(' Radius [m]...
I am given a project to transform an airfoil from a cylinder using joukowski transform. The cylinder is in zeta plane and the airfoil is in z plane. I did the plotting and i got the airfoil shape using matlab. but i want to know how to plot the pressure distribution over the airfoil.
The...