Create an airfoil in MATLAB

조회 수: 5 (최근 30일)
James Hall-Prior
James Hall-Prior 2022년 11월 4일
댓글: James Hall-Prior 2022년 11월 4일
%%%%% part 1
t = .18;
tau = .349;
e = .0721;
a = .574;
k = 1.889;
c = 2;
theta = [0:1:360];
r1 = sqrt(((a*cos(theta)-a).^2)+(a.^2)*sin(theta).^2)
r2 = sqrt(((a*cos(theta)-e*a).^2)+(a.^2)*sin(theta).^2)
theta1 = atand((a*sind(theta))./(a*cosd(theta)-a)) + pi
for theta2 = atand((a*sind(theta))./(a*cosd(theta)-e*a)) + n*pi
if theta2 <= 90
n = 0
elseif 90<theta2<=270
n = 1
elseif 270<theta2<360
n = 2
end
end
theta2 = atand((a*sind(theta))./(a*cosd(theta)-e*a)) + n*pi
x = ((r1.^k)/r2.^k-1).*(cos(k*theta1)*cos(k-1).*theta2+sin(k*theta1).*sin(k-1).*theta2)
z = ((r1.^k)/r2.^k-1).*(sin(k*theta1)*cos(k-1).*theta2-cos(k*theta1).*sin(k-1).*theta2)
plot(x,z)
(It should look like this but does not any help would be appreciated)
  댓글 수: 3
Sam Chak
Sam Chak 2022년 11월 4일
Do you have the 4-digit NACA code?
James Hall-Prior
James Hall-Prior 2022년 11월 4일
I don't and I'm not sure if I'm allowed to use it

댓글을 달려면 로그인하십시오.

답변 (1개)

Davide Masiello
Davide Masiello 2022년 11월 4일
From the wikipedia page
t = 0.25; % maximum thickness as a fraction of the chord
x0 = 0:0.001:1;
y0 = 5*t*(0.2969*sqrt(x0)-0.1260*x0-0.3516*x0.^2+0.2843*x0.^3-0.1015*x0.^4);
x = [x0,flip(x0)];
y = [y0,flip(-y0)];
plot(x,y)
axis equal

카테고리

Help CenterFile Exchange에서 Airfoil tools에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by