Вы находитесь на странице: 1из 3

Rishabh Naik MITU17BTAE0035

FD Endsem Practical

Table of Contents
TY_BTech Aerospace 2171027 ............................................................................................. 1
Steady Level Longitudinal Climbing Flight ............................................................................. 1
Given Data ......................................................................................................................... 1
Code ................................................................................................................................. 1
Plot ................................................................................................................................... 2
Answers ............................................................................................................................. 2

TY_BTech Aerospace 2171027


Steady Level Longitudinal Climbing Flight
function[]=Rishabh_Naik_FD_Endsem_Practical_MITU17BTAE0035_steadyclimbing

Given Data
W=73000; %lbs
S=950; %ft^2
Cd0=0.015;
k=0.05;
gamma=3*(pi/180);
Rho=1.7553*10^-3; %slug/ft^3
Rhos=0.0023697; %slug/ft^3
Vfind=500; %ft/s
Tsmax=12500;
m=0.64;

Code
V=linspace(150,1000,1500);
T=W*gamma+0.5*Rho*V.^2*S*Cd0+2*k*W^2/Rho/S./V.^2;
Thrust_at_V_500=W*gamma+0.5*Rho*Vfind^2*S*Cd0+2*k*W^2/Rho/S/Vfind^2;
Cl=W^2/(0.5*Rho*Vfind^2*S)^2;
Cd=Thrust_at_V_500^2/(0.5*Rho*Vfind^2*S)^2;
%BiQuadraticEquation
Root=roots([0.5*Rho*S*Cd0 0 W*gamma-Tsmax*(Rho/Rhos)^m 0 2*k*W^2/Rho/
S]);
Vmax=Root(2);
Vmin=Root(4);
T_Vmin=W*gamma+0.5*Rho*Vmin^2*S*Cd0+2*k*W^2/Rho/S/Vmin^2;
T_Vmax=W*gamma+0.5*Rho*Vmax^2*S*Cd0+2*k*W^2/Rho/S/Vmax^2;

1
Rishabh Naik MITU17B-
TAE0035 FD Endsem Practical

Plot
plot(V,T)
xlabel ('Velocity ft/s')
ylabel ('Thrust Required lbs')
title ('Thrust Required Vs Velocity For Steady Climb')
hold on
plot([Vmin Vmax],[T_Vmin T_Vmax])

Answers
Thrust_at_V_500
Vmax
Vmin
T_Vmin
T_Vmax
Cl
Cd

Thrust_at_V_500 =

8.2272e+03

2
Rishabh Naik MITU17B-
TAE0035 FD Endsem Practical

Vmax =

681.2747

Vmin =

234.6362

T_Vmin =

1.0316e+04

T_Vmax =

1.0316e+04

Cl =

0.1227

Cd =

0.0016

Published with MATLAB® R2018b

Вам также может понравиться