You are on page 1of 1

Matlab script for wing loading

%wing loading at stall condition


row = 1.23;
V_stall = 40;
CLmax = 0.3;
TOP = 56;
sigma=1.4;
CL_To= 0.2;
hpbyW = 4;
TbyW = 7;
A=8;
e=0.9;
q=90;
CD0=0.03;
n=0.8;
G=10;
W_by_S= 0.5*row*V_stall^2*CLmax;
%% wing loading at take off distance
%propeller driven aircraft
W_by_S_prop =TOP*sigma*CL_To*(hpbyW);
%% wing loading at take off distance
%jet aircraft
W_by_S_jet = TOP*sigma*CL_To*(TbyW);
%% wing loading for cruise
% propeller driven
W_by_S_cruise_P = q*sqrt(pi*A*e*CD0);
%% wing loading for cruise
%jet aircraft

W_by_S_cruise_J = q*sqrt(pi*A*e*CD0/3);
%% wing loading for loiter endurance
%propeller
W_by_S_loiter_P = q*sqrt(pi*A*e*CD0)
%% wing loading for loiter endurance
%jet aircraft

W_by_S_loiter_J = q*sqrt(3*pi*A*e*CD0)
%% wing loading for instantaneous turn

W_by_S_I_turn = q*CLmax/n
%% wing loading for sustained turn

W_by_S_s_turn = (TbyW+sqrt(TbyW^2 -
(4*n^2*CD0)/(pi*A*e)))/(2*n^2/q*pi*A*e)
%% climb and glide
W_by_S_c_and_glide = ((TbyW-G)+sqrt((TbyW-G)^2 -
(4*CD0)/(pi*A*e)))/(2/q*pi*A*e)

You might also like