AE 245 homework #1 solutions

Size: px
Start display at page:

Download "AE 245 homework #1 solutions"

Transcription

1 AE 245 homework #1 solutions Tim Smith 24 January Problem1 An aircraft is in steady level flight in a standard atmosphere. 1. Plot the total or stagnation pressure at the nose of the aircraft as a function of the air speed of the aircraft, assuming flight at sea level. Consider airspeeds in the range from 50 mph to 500 mph. 2. Plot the total or stagnation pressure at the nose of the aircraft as a function of the air speed of the aircraft, assuming flight at an altitude of 20,000 ft. Consider airspeeds in the range from 50 mph to 500 mph. 1.1 Sea level flight For subsonic compressible flow, total pressure (Anderson, 3rd ed., Eqn. 4.74) is P o = P 1+ γ, 1 γ γ,1 2 M2 (1) 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:2lb=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 = ; 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 1

2 19 total pressure (psi) air speed (mph) Figure 1: Total pressure as a function of air speed at sea level. ; Define initial conditions. ; Source: Anderson, 3rd ed., p. 77 p = ; static pressure, lb/ftˆ2 T = ; static temperature, R a = sqrt(gamma*r_air*t) ; 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 + alpha*mˆ2)ˆbeta ; total pressure array, lb/ftˆ2 ; 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 2

3 ytitle = total pressure (psi) ; y-axis title file = fig1_1a.eps ; file name scale = 1.0 xsz = 4.0*scale ysz = 3.0*scale set_plot, ps device,/encapsulated,/preview,filename=file device,/inches, xsize=xsz, ysize=ysz, $ font_size = 7 plot, x, y, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle=9, ystyle=9 device, /close set_plot, mac ; set plot device to PostScript ; open file & save EPS ; close the file ; return plot device to Mac end 1.2 Sea level flight 9.0 total pressure (psi) air speed (mph) Figure 2: Total pressure as a function of air speed at 20,000 ft. At an altitude of 20,000 ft, Anderson (Appendix A) gives the new initial conditions T = 447:43 o R P = 973:27 lb=ft 2 3

4 which, plugged into Eqn. 1, give the plot in Fig Problem2 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. = 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) P = P 1 T T 1, go a 1 R (3) where the given sea level temperature T 1 =32 o F = o R, the given sea level pressure P = 14.8 psi = 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 ρ = P RT (4) 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 h, h P = b P b exp,g 0 RT b (5) where P b is the pressure at h = 11 km. The following IDL code stacks these layers, giving the plots in Fig. 3. pro hw1_2 ; Define fundamental constants & conversions. ; Source: Van Wylen & Sonntag, _Fundamentals of Classical Thermodynamics_, 3rd ed. R_air = ; air gas constant, ft-lb/slug-r T_z = ; 0 F in R g_o = ; std gee, ft/sˆ2 km2ft = ; 1 km in ft m2ft = km2ft/1000. ; 1 m in ft K2R = 1.8 ; 1 K in R ; Define initial conditions. p_sl = 144*14.8 ; sea level pressure, lb/ftˆ2 4

5 T_sl = T_z ; sea level temperature, R r_sl = p_sl/(r_air*t_sl) ; sea level density, slug/ftˆ3 ; Define break points and lapse rate. h_b = 11.*km2ft ; height of 1st gradient layer, ft h_f = ; ultimate height, ft a_1 = -6.5e-3*K2R/m2ft ; lapse rate, R/ft ; Fix array sizes. bins = 101. ; number of array bins r_h = h_b/h_f ; height ratio sz_1 = fix(r_h*bins) + 1 ; first array size sz_2 = fix((1-r_h)*bins) + 1 ; second array size ; Create gradient layer altitude, temperature, pressure & density arrays. h_1 = h_b*findgen(sz_1)/(sz_1-1) ; altitude in gradient layer, ft T_1 = T_sl + a_1*h_1 ; temperature in gradient layer, R p_1 = p_sl*(t_1/t_sl)ˆ(-g_o/(a_1*r_air)) ; pressure in gradient layer, lb/ftˆ2 r_1 = p_1/(r_air*t_1) ; density in gradient layer, slug/ftˆ3 T_b = T_1(sz_1-1) ; temperature at break point p_b = p_1(sz_1-1) ; pressure at break point ; Create isothermal layer altitude, temperature, pressure & density arrays. h_2 = h_b + (h_f-h_b)*findgen(sz_2)/(sz_2-1); altitude in isothermal layer, ft T_2 = T_b*(fltarr(sz_1)+1.) ; isothermal temperature, R p_2 = p_b*exp(-g_o*(h_2-h_b)/(r_air*t_b)) ; pressure in isothermal layer, lb/ftˆ2 r_2 = p_2/(r_air*t_b) ; density in isothermal layer, slug/ftˆ3 ; Combine arrays. h = [h_1,h_2] ; combined altitude, ft T = [T_1,t_2] ; combined temperature, R p = [p_1,p_2] ; combined pressure, lb/ftˆ2 rho = [r_1,r_2] ; combined density, slug/ftˆ3 ; Plot temperature vs. altitude. x = T - T_z ; temperature, F y = h/1000. ; altitude, 1000 ft. xtitle = temperature (F) ; x-axis title ytitle = altitude (1000 ft) ; y-axis title file = fig1_2a.eps ; file name scale = 1.0 xsz = 4.0*scale ysz = 3.0*scale set_plot, ps device,/encapsulated,/preview,filename=file device,/inches, xsize=xsz, ysize=ysz, $ font_size = 7 ; set plot device to PostScript ; open file & save EPS 5

6 plot, x, y, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle=9, ystyle=9 device, /close ; close the file ; Plot pressure vs. altitude. x = p/144. ; pressure, psi xtitle = pressure (psi) ; x-axis title file = fig1_2b.eps ; file name device,/encapsulated,/preview,filename=file device,/inches, xsize=xsz, ysize=ysz, $ font_size = 7 plot, x, y, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle=9, ystyle=9 device, /close ; open file & save EPS ; close the file ; Plot density vs. altitude. x = rho*1000. ; density, millislug/ftˆ3 xtitle = density (millislug/ftˆ3) ; x-axis title file = fig1_2c.eps ; file name device,/encapsulated,/preview,filename=file device,/inches, xsize=xsz, ysize=ysz, $ font_size = 7 plot, x, y, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle=9, ystyle=9 device, /close set_plot, mac ; open file & save EPS ; close the file ; return plot device to Mac end 6

7 50 40 altitude (1000 ft) temperature ( F) altitude (1000 ft) pressure (psi) altitude (1000 ft) density (millislug/ft^3) Figure 3: Atmospheric model for sea-level T = 32 o F, P = 14:8psi. 7

8 3 Problem3 An F-16 supersonic fighter is in a rapid climb in a standard atmosphere and its time rate of change of altitude (its climb rate) is 5 m/sec. 1. At the instant it passes through an altitude of 10 km, what are the temperature, pressure and density of the surrounding air? 2. At the instant it passes through an altitude of 10 km, what are the time rate of change of temperature, pressure and density of the surrounding air? 3.1 Temperature, pressure and density From Anderson, Appendix A: T = 223:26 K P = 2: N=m 2 ρ = 0:41351 kg=m Time rates of change Since temperature is solely a function of altitude, the total temperature differential so that the temperature rise rate dt = T dh (6) h dt dt = T dh h dt (7) Given the lapse rate T = h = a 1 =,6:5 10,3 K/m within the gradient layer and the climb rate dh=dt = 5m/s,the temperature rise rate is dt dt =,6:5 10,3 K m 5 m =,3:250 10,2 K s s (8) Similary, pressure in the isothermal layer is solely a function of temperature, so the pressure rise rate dp dt = P dt T dt (9) First, let s try the analytical method. Taking the derivative of Eqn. 3, 8

9 P T =,g op 1 T, go ar art T 1 (10) which, substituting Eqn. 3 and Eqn. 4, becomes Referring back to Eqn. 8, the pressure rise rate is P T =,g oρ = 9:807, m=s2 (0:41351 kg=m 3 ) = a 1,6:5 10,3 629:3 K=m dp dt = 629:3 N K m 2,3:250 10,2 K =,20:28 s N K m 2 (11) N s m 2 (12) As a check, let s try a more computational approach. Since temperature is a function of altitude and pressure is a function of temperature, dp dt = P T dh T h dt = P h dh dt (13) We can approximate P= h with a central difference equation, P P(10;100 m), P(9;900 m) = h 10;100 m, 9;900 m 2:6098, 2: N = 200 m 3,4:040 Substituting into Eqn. 13, the computational approach gives a pressure rise rate of N s m 2 (14) dp dt = P h which is within 0.40% of the earlier answer. dh dt =,4:040 To find the density rise rate, take the derivative of Eqn. 4: N 5 m =,20:20 s m 2 s N s m 2 (15) dρ dt = 1 dp P dt RT dt, RT 2 dt = ρ dp ρ dt P dt, T dt 1 dp = ρ 1 P dt, T dt dt (16) Since we ve already found the pressure and temperature rise rates, dρ dt = 0:41351 kg m 3,20:28,3:250 10,3 1 kg, =,2:563 10,4 2: :26 s s m 3 (17) 4 Problem4 An A320 aircraft is cruising at an airspeed of 400 mph. Plot the Mach number of the aircraft as a function of its flight altitude. Use the standard atmosphere model. 9

10 As before, Mach number M V =a, whereu = 400 mph= 586:67 ft/s, sound speed a = p γrt, specific heat ratio γ = 1:4, the gas constant for air R = 1716 ft-lb/slug- o R and temperature varies as T(0km< h < 11 km) = T 1 + a 1 h T(11 km < h < 25 km) = T b where T 1 = 581:69 o Randa 1 =,6:5 10,3 K/m. The following IDL code (adapted from the code for Problem 2) gives the plot in Fig Mach number altitude (1000 ft) Figure 4: Mach number at 400 mph as a function of altitude. pro hw1_4 ; Define fundamental constants & conversions. ; Source: Van Wylen & Sonntag, _Fundamentals of Classical Thermodynamics_, 3rd ed. R_air = ; air gas constant, ft-lb/slug-r gamma = 1.4 ; specific heat ratio c_p/c_v T_z = ; 0 F in R km2ft = ; 1 km in ft m2ft = km2ft/1000. ; 1 m in ft K2R = 1.8 ; 1 K in R mph2fps = 88./60. ; conversion, 60 mph = 88 ft/s ; Define initial conditions. p_sl = ; sea level pressure, lb/ftˆ2 T_sl = ; sea level temperature, R u = 400.*mph2fps ; air speed, ft/s 10

11 ; Define break points and lapse rate. h_b = 11.*km2ft ; height of 1st gradient layer, ft h_f = ; ultimate height, ft a_1 = -6.5e-3*K2R/m2ft ; lapse rate, R/ft ; Fix array sizes. bins = 101. ; number of array bins r_h = h_b/h_f ; height ratio sz_1 = fix(r_h*bins) + 1 ; first array size sz_2 = fix((1-r_h)*bins) + 1 ; second array size ; Create gradient layer altitude & temperature arrays. h_1 = h_b*findgen(sz_1)/(sz_1-1) ; altitude in gradient layer, ft T_1 = T_sl + a_1*h_1 ; temperature in gradient layer, R T_b = T_1(sz_1-1) ; temperature at break point ; Create isothermal layer altitude & temperature arrays. h_2 = h_b + (h_f-h_b)*findgen(sz_2)/(sz_2-1) ; altitude in isothermal layer, ft T_2 = T_b*(fltarr(sz_1)+1.) ; isothermal temperature, R ; Combine into total altitude & temperature arrays. h T = [h_1,h_2] = [T_1,T_2] ; Create Mach number array. a = sqrt(gamma*r_air*t) ; speed of sound array, ft/s M = u/a ; Mach number array ; Plot Mach number vs altitude. x = h/1000. ; altitude, 1000 ft. y = M ; Mach number ytitle = Mach number ; y-axis title xtitle = altitude (1000 ft) ; x-axis title file = fig1_4.eps ; file name scale = 1.0 xsz = 4.0*scale ysz = 3.0*scale set_plot, ps device,/encapsulated,/preview,filename=file device,/inches, xsize=xsz, ysize=ysz, $ font_size = 7 plot, x, y, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle=9, ystyle=9 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file 11

12 end 5 Problem5 Consider an airplane flying with a velocity of 100 m/sec at an altitude of 8 km. At a point on the wing where a pitot tube is mounted, the airflow velocity is 140 m/sec. Calculate the total pressure and the static pressure at this point on the wing as measured by the pitot tube. Assume incompressible flow and use the standard atmosphere model. At an altitude of 8 km, Anderson (Appendix A) gives the static parameters T = 236:23 K P = 35;651 N=m 2 ρ = 0:52578 kg=m 3 so the aircraft dynamic pressure q a 1 2 ρv 2 a = 1 2 0:52578 kg m m 2 = 2638:9 N s m 2 (18) For incompressible flow, the total pressure P o = P+q a =(35; :9) N=m 2 = 38;280 N=m 2 (19) while the dynamic pressure at the pitot tube location is q p 1 2 ρv 2 p = 1 2 0:52578 kg m m 2 = 5152:6 N s m 2 (20) Since the total pressure remains constant, the static pressure at the pitot tube location is P s = P o + q s =(38;280, 5152:6) N=m 2 = 33;127 N=m 2 (21) 6 Problem6 An Airbus A320 is in steady level flight at an altitude of 10 km in a standard atmosphere. A total pressure of 29,500 N/(sq m) is measured at the nose of the aircraft using a Pitot tube. 1. Assuming incompressible flow, determine the aircraft speed and the aircraft Mach number. 2. Is the assumption of incompressible flow in part (a) justified; explain. 12

13 6.1 Incompressible flow assumption At an altitude of 10 km, Anderson (Appendix A) gives the static parameters T = 223:26 K P = 26;500 N=m 2 ρ = 0:41351 kg=m 3 For incompressible flow, the air speed is given by s s V 1 = 2 P o, P 29;500, 26;500 = 2 ρ 0:41351 N=m 2 kg=m 3 = 120:46 m s (22) while the sound speed a = p s γrt = 1:4 287: m 2 K m 2 223:26 K = 299:51 m s (23) so the Mach number M 1 u a 120:46 m=s = = 0:4021 (24) 299:51 m=s 6.2 Validity of incompressible flow Incompressible flow is a bad assumption for M > 0:3. Recalculating Mach number with the compressible Pitot tube equation (Anderson, 3rd ed., Eqn. 4.76), 2 M1 2 = 2 γ, 1 4 P0 P γ,1 γ 3, 15 = 5:000 " 29; # 0:28571, 1 = 0:15558 (25) so the true Mach number M 1 = 0:39943 is still too large to justify assuming incompressible flow. 13

AE 245 homework #4 solutions

AE 245 homework #4 solutions AE 245 homework #4 solutions Tim Smith 14 February 2000 1 Problem1 Consider a general aviation aircraft with weight of 3300 lbs and wing surface area of 310 ft 2. It is powered by a piston engine that

More information

AE 245 homework #3 solutions

AE 245 homework #3 solutions AE 245 homework #3 olution Tim Smith 4 February 2000 1 Problem1 Conider a low peed airplane with weight of 3100 lb and wing urface area of 300 ft 2. It i powered by a piton engine that deliver a maximum

More information

for what specific application did Henri Pitot develop the Pitot tube? what was the name of NACA s (now NASA) first research laboratory?

for what specific application did Henri Pitot develop the Pitot tube? what was the name of NACA s (now NASA) first research laboratory? 1. 5% short answers for what specific application did Henri Pitot develop the Pitot tube? what was the name of NACA s (now NASA) first research laboratory? in what country (per Anderson) was the first

More information

Example of Aircraft Climb and Maneuvering Performance. Dr. Antonio A. Trani Professor

Example of Aircraft Climb and Maneuvering Performance. Dr. Antonio A. Trani Professor Example of Aircraft Climb and Maneuvering Performance CEE 5614 Analysis of Air Transportation Systems Dr. Antonio A. Trani Professor Example - Aircraft Climb Performance Aircraft maneuvering performance

More information

The Standard Atmosphere

The Standard Atmosphere The Standard Atmosphere The Standard Atmosphere Some definitions Absolute altitude Geometric altitude Geopotential altitude Some physics The hydrostatic equation Construction of the standard atmosphere

More information

Aerodynamics. Basic Aerodynamics. Continuity equation (mass conserved) Some thermodynamics. Energy equation (energy conserved)

Aerodynamics. Basic Aerodynamics. Continuity equation (mass conserved) Some thermodynamics. Energy equation (energy conserved) Flow with no friction (inviscid) Aerodynamics Basic Aerodynamics Continuity equation (mass conserved) Flow with friction (viscous) Momentum equation (F = ma) 1. Euler s equation 2. Bernoulli s equation

More information

Unit C-1: List of Subjects

Unit C-1: List of Subjects Unit C-: List of Subjects The elocity Field The Acceleration Field The Material or Substantial Derivative Steady Flow and Streamlines Fluid Particle in a Flow Field F=ma along a Streamline Bernoulli s

More information

AE301 Aerodynamics I UNIT A: Fundamental Concepts

AE301 Aerodynamics I UNIT A: Fundamental Concepts AE3 Aerodynamics I UNIT A: Fundamental Concets ROAD MAP... A-: Engineering Fundamentals Review A-: Standard Atmoshere A-3: Governing Equations of Aerodynamics A-4: Airseed Measurements A-5: Aerodynamic

More information

Chapter 5 Performance analysis I Steady level flight (Lectures 17 to 20) Keywords: Steady level flight equations of motion, minimum power required,

Chapter 5 Performance analysis I Steady level flight (Lectures 17 to 20) Keywords: Steady level flight equations of motion, minimum power required, Chapter 5 Performance analysis I Steady level flight (Lectures 17 to 20) Keywords: Steady level flight equations of motion, minimum power required, minimum thrust required, minimum speed, maximum speed;

More information

Gasdynamics 1-D compressible, inviscid, stationary, adiabatic flows

Gasdynamics 1-D compressible, inviscid, stationary, adiabatic flows Gasdynamics 1-D compressible, inviscid, stationary, adiabatic flows 1st law of thermodynamics ρ const Kontrollfläche 1 2 m u 2 u 1 z Q 12 +P 12 = ṁ } h 2 h {{} 1 Enthalpy Q 12 + 1 2 (u2 2 u2 1 }{{} ) +

More information

SPC Aerodynamics Course Assignment Due Date Monday 28 May 2018 at 11:30

SPC Aerodynamics Course Assignment Due Date Monday 28 May 2018 at 11:30 SPC 307 - Aerodynamics Course Assignment Due Date Monday 28 May 2018 at 11:30 1. The maximum velocity at which an aircraft can cruise occurs when the thrust available with the engines operating with the

More information

Introduction to Aerospace Engineering

Introduction to Aerospace Engineering 4. Basic Fluid (Aero) Dynamics Introduction to Aerospace Engineering Here, we will try and look at a few basic ideas from the complicated field of fluid dynamics. The general area includes studies of incompressible,

More information

Introduction to Aerospace Engineering

Introduction to Aerospace Engineering Introduction to Aerospace Engineering Lecture slides Challenge the future 1 Introduction Aerospace Engineering Flight Mechanics Dr. ir. Mark Voskuijl 15-12-2012 Delft University of Technology Challenge

More information

4 Compressible Fluid Dynamics

4 Compressible Fluid Dynamics 4 Compressible Fluid Dynamics 4. Compressible flow definitions Compressible flow describes the behaviour of fluids that experience significant variations in density under the application of external pressures.

More information

IX. COMPRESSIBLE FLOW. ρ = P

IX. COMPRESSIBLE FLOW. ρ = P IX. COMPRESSIBLE FLOW Compressible flow is the study of fluids flowing at speeds comparable to the local speed of sound. This occurs when fluid speeds are about 30% or more of the local acoustic velocity.

More information

Introduction to Aerospace Engineering

Introduction to Aerospace Engineering Introduction to Aerospace Engineering Lecture slides Challenge the future 3-0-0 Introduction to Aerospace Engineering Aerodynamics 5 & 6 Prof. H. Bijl ir. N. Timmer Delft University of Technology 5. Compressibility

More information

Flight Vehicle Terminology

Flight Vehicle Terminology Flight Vehicle Terminology 1.0 Axes Systems There are 3 axes systems which can be used in Aeronautics, Aerodynamics & Flight Mechanics: Ground Axes G(x 0, y 0, z 0 ) Body Axes G(x, y, z) Aerodynamic Axes

More information

Isentropic Flow. Gas Dynamics

Isentropic Flow. Gas Dynamics Isentropic Flow Agenda Introduction Derivation Stagnation properties IF in a converging and converging-diverging nozzle Application Introduction Consider a gas in horizontal sealed cylinder with a piston

More information

the pitot static measurement equal to a constant C which is to take into account the effect of viscosity and so on.

the pitot static measurement equal to a constant C which is to take into account the effect of viscosity and so on. Mechanical Measurements and Metrology Prof. S. P. Venkateshan Department of Mechanical Engineering Indian Institute of Technology, Madras Module -2 Lecture - 27 Measurement of Fluid Velocity We have been

More information

Introduction to Aerodynamics. Dr. Guven Aerospace Engineer (P.hD)

Introduction to Aerodynamics. Dr. Guven Aerospace Engineer (P.hD) Introduction to Aerodynamics Dr. Guven Aerospace Engineer (P.hD) Aerodynamic Forces All aerodynamic forces are generated wither through pressure distribution or a shear stress distribution on a body. The

More information

Given the water behaves as shown above, which direction will the cylinder rotate?

Given the water behaves as shown above, which direction will the cylinder rotate? water stream fixed but free to rotate Given the water behaves as shown above, which direction will the cylinder rotate? ) Clockwise 2) Counter-clockwise 3) Not enough information F y U 0 U F x V=0 V=0

More information

Introduction to Aerospace Engineering

Introduction to Aerospace Engineering Introduction to Aerospace Engineering Lecture slides Challenge the future 4-0-0 Introduction to Aerospace Engineering Aerodynamics 3 & 4 Prof. H. Bijl ir. N. Timmer Delft University of Technology Challenge

More information

M o d u l e B a s i c A e r o d y n a m i c s

M o d u l e B a s i c A e r o d y n a m i c s Category A B1 B2 B3 Level 1 2 3 M o d u l e 0 8-0 1 B a s i c A e r o d y n a m i c s P h y s i c s o f t h e A t m o s p h e r e 08-01- 1 Category A B1 B2 B3 Level 1 2 3 T a b l e o f c o n t e n t s

More information

PART II. Fluid Mechanics Pressure. Fluid Mechanics Pressure. Fluid Mechanics Specific Gravity. Some applications of fluid mechanics

PART II. Fluid Mechanics Pressure. Fluid Mechanics Pressure. Fluid Mechanics Specific Gravity. Some applications of fluid mechanics ART II Some applications of fluid mechanics Fluid Mechanics ressure ressure = F/A Units: Newton's per square meter, Nm -, kgm - s - The same unit is also known as a ascal, a, i.e. a = Nm - ) English units:

More information

DETERMINING THE INFLUENCE OF OUTSIDE AIR TEMPERATURE ON AIRCRAFT AIRSPEED

DETERMINING THE INFLUENCE OF OUTSIDE AIR TEMPERATURE ON AIRCRAFT AIRSPEED Doris Novak Tomislav Radišić Izidor Alfirević ISSN 333-4 DETERMINING THE INFLUENCE OF OUTSIDE AIR TEMPERATURE ON AIRCRAFT AIRSPEED Summary UDC: 656.7.00.5:69.735.07 Errors that occur in conventional measurement

More information

Flight and Orbital Mechanics

Flight and Orbital Mechanics Flight and Orbital Mechanics Lecture slides Challenge the future 1 Flight and Orbital Mechanics Lecture hours 3, 4 Minimum time to climb Mark Voskuijl Semester 1-2012 Delft University of Technology Challenge

More information

Notes #6 MAE 533, Fluid Mechanics

Notes #6 MAE 533, Fluid Mechanics Notes #6 MAE 533, Fluid Mechanics S. H. Lam lam@princeton.edu http://www.princeton.edu/ lam October 1, 1998 1 Different Ways of Representing T The speed of sound, a, is formally defined as ( p/ ρ) s. It

More information

6.1 According to Handbook of Chemistry and Physics the composition of air is

6.1 According to Handbook of Chemistry and Physics the composition of air is 6. Compressible flow 6.1 According to Handbook of Chemistry and Physics the composition of air is From this, compute the gas constant R for air. 6. The figure shows a, Pitot-static tube used for velocity

More information

Please welcome for any correction or misprint in the entire manuscript and your valuable suggestions kindly mail us

Please welcome for any correction or misprint in the entire manuscript and your valuable suggestions kindly mail us Problems of Practices Of Fluid Mechanics Compressible Fluid Flow Prepared By Brij Bhooshan Asst. Professor B. S. A. College of Engg. And Technology Mathura, Uttar Pradesh, (India) Supported By: Purvi Bhooshan

More information

Air Speed Theory. Eugene M. Cliff. February 15, 1998

Air Speed Theory. Eugene M. Cliff. February 15, 1998 Air Speed Theory Eugene M. Cliff February 15, 1998 1 Introduction The primary purpose of these notes is to develop the necessary mathematical machinery to understand pitot-static airspeed indicators and

More information

Aircraft Performance, Stability and control with experiments in Flight. Questions

Aircraft Performance, Stability and control with experiments in Flight. Questions Aircraft Performance, Stability and control with experiments in Flight Questions Q. If only the elevator size of a given aircraft is decreased; keeping horizontal tail area unchanged; then the aircraft

More information

SUBSONIC RELATIONSHIPS BETWEEN PRESSURE ALTITUDE, CALIBRATED AIRSPEED, AND MACH NUMBER TECHNICAL INFORMATION HANDBOOK

SUBSONIC RELATIONSHIPS BETWEEN PRESSURE ALTITUDE, CALIBRATED AIRSPEED, AND MACH NUMBER TECHNICAL INFORMATION HANDBOOK AFFTC-TH-1-1 SUBSONC RELATONSHPS BETWEEN PRESSURE ALTTUDE, CALBRATED ARSPEED, AND MACH NUMBER A F F T C FRANK S. BROWN Aircraft Performance Engineer SEPTEMBER 212 TECHNCAL NFORMATON HANDBOOK Approved for

More information

Drag Analysis of a Supermarine. Spitfire Mk V at Cruise Conditions

Drag Analysis of a Supermarine. Spitfire Mk V at Cruise Conditions Introduction to Flight Aircraft Drag Project April 2016 2016 Drag Analysis of a Supermarine Spitfire Mk V at Cruise Conditions Nicholas Conde nicholasconde@gmail.com U66182304 Introduction to Flight Nicholas

More information

Theory of Flight Flight Instruments and Performance Factors References: FTGU pages 32-34, 39-45

Theory of Flight Flight Instruments and Performance Factors References: FTGU pages 32-34, 39-45 Theory of Flight 6.09 Flight Instruments and Performance Factors References: FTGU pages 32-34, 39-45 MTPs: 6.09 Flight Instruments and Performance Factors Pitot Static Instruments Asymmetric Thrust Precession

More information

AEROSPACE ENGINEERING DEPARTMENT. Second Year - Second Term ( ) Fluid Mechanics & Gas Dynamics

AEROSPACE ENGINEERING DEPARTMENT. Second Year - Second Term ( ) Fluid Mechanics & Gas Dynamics AEROSPACE ENGINEERING DEPARTMENT Second Year - Second Term (2008-2009) Fluid Mechanics & Gas Dynamics Similitude,Dimensional Analysis &Modeling (1) [7.2R*] Some common variables in fluid mechanics include:

More information

Applied Gas Dynamics Flow With Friction and Heat Transfer

Applied Gas Dynamics Flow With Friction and Heat Transfer Applied Gas Dynamics Flow With Friction and Heat Transfer Ethirajan Rathakrishnan Applied Gas Dynamics, John Wiley & Sons (Asia) Pte Ltd c 2010 Ethirajan Rathakrishnan 1 / 121 Introduction So far, we have

More information

Theory of Flight. Pitot Static Instruments Flight Instruments and Performance Factors. MTPs:

Theory of Flight. Pitot Static Instruments Flight Instruments and Performance Factors. MTPs: Theory of Flight 6.09 Flight Instruments and Performance Factors References: FTGU pages 32-34, 39-45 6.09 Flight Instruments and Performance Factors MTPs: Pitot Static Instruments Asymmetric Thrust Precession

More information

Gliding, Climbing, and Turning Flight Performance Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2018

Gliding, Climbing, and Turning Flight Performance Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2018 Gliding, Climbing, and Turning Flight Performance Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2018 Learning Objectives Conditions for gliding flight Parameters for maximizing climb angle and rate

More information

High Speed Aerodynamics. Copyright 2009 Narayanan Komerath

High Speed Aerodynamics. Copyright 2009 Narayanan Komerath Welcome to High Speed Aerodynamics 1 Lift, drag and pitching moment? Linearized Potential Flow Transformations Compressible Boundary Layer WHAT IS HIGH SPEED AERODYNAMICS? Airfoil section? Thin airfoil

More information

Subsonic and Supersonic Flow Through Pitot Tubes

Subsonic and Supersonic Flow Through Pitot Tubes Subsonic and Supersonic Flow Through Pitot Tubes 140015771 Nicola Rennie MT4599 Project in Mathematics / Statistics School of Mathematics & Statistics University of St Andrews Supervisor: Dr. Richard Scott

More information

Fundamentals of Airplane Flight Mechanics

Fundamentals of Airplane Flight Mechanics David G. Hull Fundamentals of Airplane Flight Mechanics With 125 Figures and 25 Tables y Springer Introduction to Airplane Flight Mechanics 1 1.1 Airframe Anatomy 2 1.2 Engine Anatomy 5 1.3 Equations of

More information

Civil aeroengines for subsonic cruise have convergent nozzles (page 83):

Civil aeroengines for subsonic cruise have convergent nozzles (page 83): 120 Civil aeroengines for subsonic cruise have convergent nozzles (page 83): Choked convergent nozzle must be sonic at the exit A N. Consequently, the pressure (p 19 ) at the nozzle exit will be above

More information

Visual Tutorial. Pitot Static System Simulator. Adobe (formerly Macromedia) Flash Requirements

Visual Tutorial.  Pitot Static System Simulator. Adobe (formerly Macromedia) Flash Requirements Visual Tutorial Tutorial Version 1.01 Pitot Static System Simulator Adobe (formerly Macromedia) Flash Requirements Thank you for using the Pitot Static System Simulator from luizmonteiro.com. Please note

More information

Unified Quiz: Thermodynamics

Unified Quiz: Thermodynamics Unified Quiz: Thermodynamics October 14, 2005 Calculators allowed. No books or notes allowed. A list of equations is provided. Put your ID number on each page of the exam. Read all questions carefully.

More information

AOE 3114 Compressible Aerodynamics

AOE 3114 Compressible Aerodynamics AOE 114 Compressible Aerodynamics Primary Learning Objectives The student will be able to: 1. Identify common situations in which compressibility becomes important in internal and external aerodynamics

More information

AE301 Aerodynamics I UNIT A: Fundamental Concepts

AE301 Aerodynamics I UNIT A: Fundamental Concepts AE301 Aerodynamics I UNIT A: Fundamental Concets ROAD MAP... A-1: Engineering Fundamentals Reiew A-: Standard Atmoshere A-3: Goerning Equations of Aerodynamics A-4: Airseed Measurements A-5: Aerodynamic

More information

Definitions. Temperature: Property of the atmosphere (τ). Function of altitude. Pressure: Property of the atmosphere (p). Function of altitude.

Definitions. Temperature: Property of the atmosphere (τ). Function of altitude. Pressure: Property of the atmosphere (p). Function of altitude. Definitions Chapter 3 Standard atmosphere: A model of the atmosphere based on the aerostatic equation, the perfect gas law, an assumed temperature distribution, and standard sea level conditions. Temperature:

More information

MDTS 5734 : Aerodynamics & Propulsion Lecture 1 : Characteristics of high speed flight. G. Leng, MDTS, NUS

MDTS 5734 : Aerodynamics & Propulsion Lecture 1 : Characteristics of high speed flight. G. Leng, MDTS, NUS MDTS 5734 : Aerodynamics & Propulsion Lecture 1 : Characteristics of high speed flight References Jack N. Nielsen, Missile Aerodynamics, AIAA Progress in Astronautics and Aeronautics, v104, 1986 Michael

More information

Flight and Orbital Mechanics

Flight and Orbital Mechanics Flight and Orbital Mechanics Lecture slides Challenge the future 1 Flight and orbital mechanics Flight Mechanics practice questions Dr. ir. Mark Voskuijl 20-11-2013 Delft University of Technology Challenge

More information

Compressible Flow. Professor Ugur GUVEN Aerospace Engineer Spacecraft Propulsion Specialist

Compressible Flow. Professor Ugur GUVEN Aerospace Engineer Spacecraft Propulsion Specialist Compressible Flow Professor Ugur GUVEN Aerospace Engineer Spacecraft Propulsion Specialist What is Compressible Flow? Compressible Flow is a type of flow in which the density can not be treated as constant.

More information

AER1216: Fundamentals of UAVs PERFORMANCE

AER1216: Fundamentals of UAVs PERFORMANCE AER1216: Fundamentals of UAVs PERFORMANCE P.R. Grant Spring 2016 Introduction What we will cover: 1 Simplified Standard Atmosphere 2 Simplified Airspeed measurements 3 Propulsion Basics 4 Fixed Wing Performance

More information

Aerothermodynamics of High Speed Flows

Aerothermodynamics of High Speed Flows Aerothermodynamics of High Speed Flows Lecture 1: Introduction G. Dimitriadis 1 The sound barrier Supersonic aerodynamics and aircraft design go hand in hand Aspects of supersonic flow theory were developed

More information

Introduction. In general, gases are highly compressible and liquids have a very low compressibility. COMPRESSIBLE FLOW

Introduction. In general, gases are highly compressible and liquids have a very low compressibility. COMPRESSIBLE FLOW COMRESSIBLE FLOW COMRESSIBLE FLOW Introduction he compressibility of a fluid is, basically, a measure of the change in density that will be produced in the fluid by a specific change in pressure and temperature.

More information

Compressible Potential Flow: The Full Potential Equation. Copyright 2009 Narayanan Komerath

Compressible Potential Flow: The Full Potential Equation. Copyright 2009 Narayanan Komerath Compressible Potential Flow: The Full Potential Equation 1 Introduction Recall that for incompressible flow conditions, velocity is not large enough to cause density changes, so density is known. Thus

More information

PREDICTION OF SOUND PRESSURE LEVELS ON ROCKET VEHICLES DURING ASCENT Revision E

PREDICTION OF SOUND PRESSURE LEVELS ON ROCKET VEHICLES DURING ASCENT Revision E PREDICTION OF SOUND PRESSURE LEVELS ON ROCKET VEHICLES DURING ASCENT Revision E By Tom Irvine Email: tomirvine@aol.com July 0, 011 Figure 0. Schlieren Photo, Wind Tunnel Test Engineers conducted wind tunnel

More information

Chapter 2 Earth s atmosphere (Lectures 4 and 5)

Chapter 2 Earth s atmosphere (Lectures 4 and 5) Chapter 2 Earth s atmosphere (Lectures 4 and 5) Keywords: Earth s atmosphere; International standard atmosphere; geopotential altitude; stability of atmosphere. Topics 2.1 Introduction 2.2 Earth s atmosphere

More information

The E80 Wind Tunnel Experiment the experience will blow you away. by Professor Duron Spring 2012

The E80 Wind Tunnel Experiment the experience will blow you away. by Professor Duron Spring 2012 The E80 Wind Tunnel Experiment the experience will blow you away by Professor Duron Spring 2012 Objectives To familiarize the student with the basic operation and instrumentation of the HMC wind tunnel

More information

Chapter 8 Performance analysis IV Accelerated level flight and climb (Lecture 27) Keywords: Topics 8.1 Introduction 8.2 Accelerated level flight

Chapter 8 Performance analysis IV Accelerated level flight and climb (Lecture 27) Keywords: Topics 8.1 Introduction 8.2 Accelerated level flight Chapter 8 Performance analysis I Accelerated level flight and climb (Lecture 7) Keywords: Accelerated level flight; accelerated climb; energy height. Topics 8.1 Introduction 8. Accelerated level flight

More information

Chapter 17. For the most part, we have limited our consideration so COMPRESSIBLE FLOW. Objectives

Chapter 17. For the most part, we have limited our consideration so COMPRESSIBLE FLOW. Objectives Chapter 17 COMPRESSIBLE FLOW For the most part, we have limited our consideration so far to flows for which density variations and thus compressibility effects are negligible. In this chapter we lift this

More information

In which of the following scenarios is applying the following form of Bernoulli s equation: steady, inviscid, uniform stream of water. Ma = 0.

In which of the following scenarios is applying the following form of Bernoulli s equation: steady, inviscid, uniform stream of water. Ma = 0. bernoulli_11 In which of the following scenarios is applying the following form of Bernoulli s equation: p V z constant! g + g + = from point 1 to point valid? a. 1 stagnant column of water steady, inviscid,

More information

Rocket Thermodynamics

Rocket Thermodynamics Rocket Thermodynamics PROFESSOR CHRIS CHATWIN LECTURE FOR SATELLITE AND SPACE SYSTEMS MSC UNIVERSITY OF SUSSEX SCHOOL OF ENGINEERING & INFORMATICS 25 TH APRIL 2017 Thermodynamics of Chemical Rockets ΣForce

More information

AE 2020: Low Speed Aerodynamics. I. Introductory Remarks Read chapter 1 of Fundamentals of Aerodynamics by John D. Anderson

AE 2020: Low Speed Aerodynamics. I. Introductory Remarks Read chapter 1 of Fundamentals of Aerodynamics by John D. Anderson AE 2020: Low Speed Aerodynamics I. Introductory Remarks Read chapter 1 of Fundamentals of Aerodynamics by John D. Anderson Text Book Anderson, Fundamentals of Aerodynamics, 4th Edition, McGraw-Hill, Inc.

More information

(Refer Slide Time 1:25)

(Refer Slide Time 1:25) Mechanical Measurements and Metrology Prof. S. P. Venkateshan Department of Mechanical Engineering Indian Institute of Technology, Madras Module - 2 Lecture - 24 Transient Response of Pressure Transducers

More information

Physics Courseware Physics I

Physics Courseware Physics I Definition of pressure: Force P = Area Physics Courseware Physics I Bernoulli Hydrostatics equation: PB PA = ρgh 1 1 Bernoulli s equation: P 1 + ρv1 + ρgh1 = P + ρv + ρgh Problem 1.- In a carburetor (schematically

More information

Evaluation of different wind estimation methods in flight tests with a fixed-wing UAV

Evaluation of different wind estimation methods in flight tests with a fixed-wing UAV Evaluation of different wind estimation methods in flight tests with a fixed-wing UAV Julian Sören Lorenz February 5, 2018 Contents 1 Glossary 2 2 Introduction 3 3 Tested algorithms 3 3.1 Unfiltered Method

More information

The Bernoulli Equation

The Bernoulli Equation The Bernoulli Equation The most used and the most abused equation in fluid mechanics. Newton s Second Law: F = ma In general, most real flows are 3-D, unsteady (x, y, z, t; r,θ, z, t; etc) Let consider

More information

Aeroelasticity. Lecture 9: Supersonic Aeroelasticity. G. Dimitriadis. AERO0032-1, Aeroelasticity and Experimental Aerodynamics, Lecture 9

Aeroelasticity. Lecture 9: Supersonic Aeroelasticity. G. Dimitriadis. AERO0032-1, Aeroelasticity and Experimental Aerodynamics, Lecture 9 Aeroelasticity Lecture 9: Supersonic Aeroelasticity G. Dimitriadis AERO0032-1, Aeroelasticity and Experimental Aerodynamics, Lecture 9 1 Introduction All the material presented up to now concerned incompressible

More information

PEMP ACD2505. M.S. Ramaiah School of Advanced Studies, Bengaluru

PEMP ACD2505. M.S. Ramaiah School of Advanced Studies, Bengaluru Governing Equations of Fluid Flow Session delivered by: M. Sivapragasam 1 Session Objectives -- At the end of this session the delegate would have understood The principle of conservation laws Different

More information

Air Loads. Airfoil Geometry. Upper surface. Lower surface

Air Loads. Airfoil Geometry. Upper surface. Lower surface AE1 Jha Loads-1 Air Loads Airfoil Geometry z LE circle (radius) Chord line Upper surface thickness Zt camber Zc Zl Zu Lower surface TE thickness Camber line line joining the midpoints between upper and

More information

Introduction to Flight

Introduction to Flight l_ Introduction to Flight Fifth Edition John D. Anderson, Jr. Curator for Aerodynamics, National Air and Space Museum Smithsonian Institution Professor Emeritus University of Maryland Me Graw Higher Education

More information

Ph.D. Qualifying Exam in Fluid Mechanics

Ph.D. Qualifying Exam in Fluid Mechanics Student ID Department of Mechanical Engineering Michigan State University East Lansing, Michigan Ph.D. Qualifying Exam in Fluid Mechanics Closed book and Notes, Some basic equations are provided on an

More information

ME3250 Fluid Dynamics I

ME3250 Fluid Dynamics I ME3250 Fluid Dynamics I Section I, Fall 2012 Instructor: Prof. Zhuyin Ren Department of Mechanical Engineering University of Connecticut Course Information Website: http://www.engr.uconn.edu/~rzr11001/me3250_f12/

More information

Module-5: Hypersonic Boundary Layer theory. Lecture-20: Hypersonic boundary equation

Module-5: Hypersonic Boundary Layer theory. Lecture-20: Hypersonic boundary equation Module-5: Hypersonic Boundary Layer theory Lecture-0: Hypersonic boundary equation 0.1 Governing Equations for Viscous Flows The Navier-Stokes (NS) equaadtions are the governing equations for the viscous

More information

Final 1. (25) 2. (10) 3. (10) 4. (10) 5. (10) 6. (10) TOTAL = HW = % MIDTERM = % FINAL = % COURSE GRADE =

Final 1. (25) 2. (10) 3. (10) 4. (10) 5. (10) 6. (10) TOTAL = HW = % MIDTERM = % FINAL = % COURSE GRADE = MAE101B: Advanced Fluid Mechanics Winter Quarter 2017 http://web.eng.ucsd.edu/~sgls/mae101b_2017/ Name: Final This is a three hour open-book exam. Please put your name on the top sheet of the exam. Answer

More information

Measurements using Bernoulli s equation

Measurements using Bernoulli s equation An Internet Book on Fluid Dynamics Measurements using Bernoulli s equation Many fluid measurement devices and techniques are based on Bernoulli s equation and we list them here with analysis and discussion.

More information

Chapter 5. Mass and Energy Analysis of Control Volumes

Chapter 5. Mass and Energy Analysis of Control Volumes Chapter 5 Mass and Energy Analysis of Control Volumes Conservation Principles for Control volumes The conservation of mass and the conservation of energy principles for open systems (or control volumes)

More information

Flight and Orbital Mechanics. Exams

Flight and Orbital Mechanics. Exams 1 Flight and Orbital Mechanics Exams Exam AE2104-11: Flight and Orbital Mechanics (23 January 2013, 09.00 12.00) Please put your name, student number and ALL YOUR INITIALS on your work. Answer all questions

More information

Rate of Flow Quantity of fluid passing through any section (area) per unit time

Rate of Flow Quantity of fluid passing through any section (area) per unit time Kinematics of Fluid Flow Kinematics is the science which deals with study of motion of liquids without considering the forces causing the motion. Rate of Flow Quantity of fluid passing through any section

More information

Performance analysis II Steady climb, descent and glide 3

Performance analysis II Steady climb, descent and glide 3 Chapter 6 Lecture 3 Performance analysis II Steady climb, descent and glide 3 Topics 6.6. Climb hydrograph 6.7. Absolute ceiling and service ceiling 6.8 Time to climb 6.9 Steady descent 6.0 Glide 6.0.

More information

Gliding, Climbing, and Turning Flight Performance! Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2016

Gliding, Climbing, and Turning Flight Performance! Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2016 Gliding, Climbing, and Turning Flight Performance! Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2016 Learning Objectives Conditions for gliding flight Parameters for maximizing climb angle and rate

More information

Given a stream function for a cylinder in a uniform flow with circulation: a) Sketch the flow pattern in terms of streamlines.

Given a stream function for a cylinder in a uniform flow with circulation: a) Sketch the flow pattern in terms of streamlines. Question Given a stream function for a cylinder in a uniform flow with circulation: R Γ r ψ = U r sinθ + ln r π R a) Sketch the flow pattern in terms of streamlines. b) Derive an expression for the angular

More information

Fundamentals of Gas Dynamics (NOC16 - ME05) Assignment - 10 : Solutions

Fundamentals of Gas Dynamics (NOC16 - ME05) Assignment - 10 : Solutions Fundamentals of Gas Dynamics (NOC16 - ME05) Assignment - 10 : Solutions Manjul Sharma & Aswathy Nair K. Department of Aerospace Engineering IIT Madras April 18, 016 (Note : The solutions discussed below

More information

Gas Dynamics and Jet Propulsion

Gas Dynamics and Jet Propulsion Gas Dynamics and Jet Propulsion (For B.E. Mechanical Engineering Students) (As per Anna University and Leading Universities New Revised Syllabus) Prof. K. Pandian Dr. A.Anderson, M.E., Ph.D., Professor

More information

Basic Low Speed Aerodynamics

Basic Low Speed Aerodynamics Basic Low Speed Aerodynamics Introduction I thought a discussion of basic low speed aerodynamics might be of interest for some of our EAA Chapter members so I prepared a series of notes that will address

More information

Introduction to Gas Dynamics All Lecture Slides

Introduction to Gas Dynamics All Lecture Slides Introduction to Gas Dynamics All Lecture Slides Teknillinen Korkeakoulu / Helsinki University of Technology Autumn 009 1 Compressible flow Zeroth law of thermodynamics 3 First law of thermodynamics 4 Equation

More information

FLIGHT INSTRUMENTS. This manual is dedicated only for IVAO Network activities. This document must not be used in real aviation or in others networks.

FLIGHT INSTRUMENTS. This manual is dedicated only for IVAO Network activities. This document must not be used in real aviation or in others networks. FLIGHT INSTRUMENTS 1. Introduction The flight instruments are the instruments in the cockpit of an aircraft that provide the pilot with flight parameters. The flight instruments are used in conditions

More information

P 1 P * 1 T P * 1 T 1 T * 1. s 1 P 1

P 1 P * 1 T P * 1 T 1 T * 1. s 1 P 1 ME 131B Fluid Mechanics Solutions to Week Three Problem Session: Isentropic Flow II (1/26/98) 1. From an energy view point, (a) a nozzle is a device that converts static enthalpy into kinetic energy. (b)

More information

AAE 333 Final Exam. Dec Open Book, 1 Crib sheet allowed

AAE 333 Final Exam. Dec Open Book, 1 Crib sheet allowed AAE 333 Final Exam Dec 16 2009 Open Book, 1 Crib sheet allowed The right answer is worth 5 points. A wrong answer is worth 0. Fill in the circle on the scantron sheet corresponding to your answer chosen

More information

Lecture 55 Compressible Flows (Contd.)

Lecture 55 Compressible Flows (Contd.) Introduction to Fluid Mechanics and Fluid Engineering Prof. Suman Chakraborty Department of Mechanical Engineering Indian Institute of Technology Kharagpur Lecture 55 Compressible Flows (Contd.) We will

More information

AE 311 Incompressible Flow Fall 2016 Homework Set # 7 Due: In class on Wednesday 2 November

AE 311 Incompressible Flow Fall 2016 Homework Set # 7 Due: In class on Wednesday 2 November AE 311 Incompressible Flow Fall 2016 Homework Set # 7 Due: In class on Wednesday 2 November Show all your equations, data, and work to receive full credit. Clearly indicate your answers. 1. (20%) Assume

More information

Unified Quiz: Thermodynamics

Unified Quiz: Thermodynamics Fall 004 Unified Quiz: Thermodynamics November 1, 004 Calculators allowed. No books allowed. A list of equations is provided. Put your name on each page of the exam. Read all questions carefully. Do all

More information

Notes #4a MAE 533, Fluid Mechanics

Notes #4a MAE 533, Fluid Mechanics Notes #4a MAE 533, Fluid Mechanics S. H. Lam lam@princeton.edu http://www.princeton.edu/ lam October 23, 1998 1 The One-dimensional Continuity Equation The one-dimensional steady flow continuity equation

More information

PHYS 643 Week 4: Compressible fluids Sound waves and shocks

PHYS 643 Week 4: Compressible fluids Sound waves and shocks PHYS 643 Week 4: Compressible fluids Sound waves and shocks Sound waves Compressions in a gas propagate as sound waves. The simplest case to consider is a gas at uniform density and at rest. Small perturbations

More information

Chapter 2 Dimensional Analysis: Similarity and Self-Similarity

Chapter 2 Dimensional Analysis: Similarity and Self-Similarity Chapter 2 Dimensional Analysis: Similarity and Self-Similarity One important aspect of dimensional analysis that is pushing this subject beyond simple Buckingham or Pi-theorem dealing with certain unique

More information

Applied Aerodynamics - I

Applied Aerodynamics - I Applied Aerodynamics - I o Course Contents (Tentative) Introductory Thoughts Historical Perspective Flow Similarity Aerodynamic Coefficients Sources of Aerodynamic Forces Fundamental Equations & Principles

More information

Propulsion Thermodynamics

Propulsion Thermodynamics Chapter 1 Propulsion Thermodynamics 1.1 Introduction The Figure below shows a cross-section of a Pratt and Whitney JT9D-7 high bypass ratio turbofan engine. The engine is depicted without any inlet, nacelle

More information

MAE 101A. Homework 7 - Solutions 3/12/2018

MAE 101A. Homework 7 - Solutions 3/12/2018 MAE 101A Homework 7 - Solutions 3/12/2018 Munson 6.31: The stream function for a two-dimensional, nonviscous, incompressible flow field is given by the expression ψ = 2(x y) where the stream function has

More information

To study the motion of a perfect gas, the conservation equations of continuity

To study the motion of a perfect gas, the conservation equations of continuity Chapter 1 Ideal Gas Flow The Navier-Stokes equations To study the motion of a perfect gas, the conservation equations of continuity ρ + (ρ v = 0, (1.1 momentum ρ D v Dt = p+ τ +ρ f m, (1.2 and energy ρ

More information

IV. Compressible flow of inviscid fluids

IV. Compressible flow of inviscid fluids IV. Compressible flow of inviscid fluids Governing equations for n = 0, r const: + (u )=0 t u + ( u ) u= p t De e = + ( u ) e= p u+ ( k T ) Dt t p= p(, T ), e=e (,T ) Alternate forms of energy equation

More information

Introduction to Flight Dynamics

Introduction to Flight Dynamics Chapter 1 Introduction to Flight Dynamics Flight dynamics deals principally with the response of aerospace vehicles to perturbations in their flight environments and to control inputs. In order to understand

More information