







Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Instructions on how to plot the total pressure at the nose of an aircraft as a function of airspeed, assuming flight at an altitude of 20,000 ft. equations for calculating total pressure at sea level and at an altitude, as well as instructions for creating a plot using IDL code.
Typology: Study Guides, Projects, Research
1 / 13
This page cannot be seen from the preview
Don't miss anything!








1 Problem 1
An aircraft is in steady level flight in a standard atmosphere.
For subsonic compressible flow, total pressure (Anderson, 3rd ed., Eqn. 4.74) is
Po = P
γ 1 2
where the Mach number M V = a , sound speed a =
p γ RT , specific heat ratio γ = 1 :4 and the gas constant for air R = 1716 ft-lb/slug- o R. At sea level, standard temperature and pressure are ( ibid , p. 77)
T = 581 : 69 o R P = 2116 :2 lb=ft^2
Though these initial conditions and Eqn. 1 can be readily incorporated into a spreadsheet, the following IDL code lays out the steps leading to Fig. 1 in a more explicit fashion:
pro hw1_1a
; Define fundamental constants & conversions.
R_air = 1716. ; air gas constant, ft-lb/slug-R gamma = 1.4 ; specific heat ratio c_p/c_v mph2fps = 88./60. ; conversion, 60 mph = 88 ft/s
100 200 300 400 500 air speed (mph)
15
16
17
18
19
total pressure (psi)
Figure 1: Total pressure as a function of air speed at sea level.
; Define initial conditions. ; Source: Anderson, 3rd ed., p. 77
p = 2116.2 ; static pressure, lb/ftˆ T = 518.69 ; static temperature, R a = sqrt(gammaR_airT) ; speed of sound, ft/s
; Create speed & Mach number arrays.
bins = 101. ; number of array bins u_min = 50.mph2fps ; minimum speed, ft/s u_max = 500.mph2fps ; maximum speed, ft/s range = u_max - u_min ; range of speeds, ft/s u = u_min + range*findgen(bins)/(bins-1) ; speed array, ft/s M = u/a ; Mach number array
; Calculate total pressure.
alpha = (gamma - 1.)/2. beta = gamma/(gamma - 1.) p_o = p(1 + alphaMˆ2)ˆbeta ; total pressure array, lb/ftˆ
; Plot total pressure vs. speed.
x = u/mph2fps ; air speed, mph y = p_o/144. ; total pressure, psi
xtitle = ’air speed (mph)’ ; x-axis title
which, plugged into Eqn. 1, give the plot in Fig. 2.
2 Problem 2
At a particular sea level location at a particular time the atmospheric pressure is 14.8 psi and the temperature is 32 degrees F. Using the standard atmospheric model, develop graphs that show how the temperature, pressure, and air density change as a function of altitude, from sea level up to 50,000 ft.
Since 50,000 ft. = 15.24 km, this includes the first gradient layer (0 < h < 11 km) and part of the first isothermal layer (11 km < h < 25 km). In the first gradient layer, the temperature is ( ibid , Eqn. 3.14)
T = T 1 + a 1 h (2)
and the pressure is given by ( ibid , Eqn. 3.12)
1 R (3)
where the given sea level temperature T 1 = 32 o F = 459.97 o R, the given sea level pressure P = 14.8 psi = 2131.2 lb/ft^2 , and the temperature gradient a 1 = 6 : 5 10 ^3 K/m. Once the temperature and pressure are known, density is given by the perfect gas law
ρ =
The temperature at h (^) b = 11 km remains constant through the rest of the first isothermal layer, while the pressure for h > 11 km is given by
P = Pb exp