You are on page 1of 1

clear all

clc
W0 = 25000;
D = 0.97;
E = 0.985;
ratio = 9.526;
V = 933.1;
C = 0.00022;
R = 2430446;
F = exp((-R*C)/(V*(ratio)))
G = 0.9894;
H = 0.97;
I = 0.98;
J = exp((-R*C)/(V*(ratio)));
K = 0.9865;
L = 0.995;
M = (D)*(E)*(F)*(G)*(H)*(I)*(J)*(K)*(L)
N = 1.06*(1-(M))
Wcrew = 200;
Wpayload = 4670;
A = 2.34;
Kvs = 1.00;
c = -0.13;
P =A*(W0^c)*Kvs
for i = 0:1:40
Wi = ((Wcrew + Wpayload)/((1-(N)-(P))))
P = A*(Wi^c)*Kvs;
end
Wi

You might also like