AE 245 homework #4 solutions

Size: px
Start display at page:

Download "AE 245 homework #4 solutions"

Transcription

1 AE 245 homework #4 solutions Tim Smith 14 February 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 provides a maximum of 250 hp at sea level and a conventional propeller that operates at 80% efficiency. The aerodynamic properties of the aircraft are described by a parabolic drag polar with C D = 0:02 + 0:06C 2 L (1) 1. What is the power level required to maintain a steady flight path angle of 3 degrees and an air speed of 220 ft/s at sea level? 2. Assume the aircraft flies with a flight path angle of 3 degrees using maximum available power. Determine all possible air speeds which maintain steady flight at sea level. 3. What is the minimum power level required to maintain steady climb rate of 10 ft/s at sea level? What is the corresponding air speed? 4. Plot the maximum steady climb rate of the aircraft as it depends on altitude from sea level to 20,000 ft. Plot the corresponding air speed as it depends on altitude. 5. Plot the minimum glide angle which maintains steady gliding flight as it depends on altitude from sea level to 20,000 ft. Plot the corresponding air speed as it depends on altitude. 1.1 Required power at γ = 3, 220 ft/s At V = 220 ft/s and sea level, the dynamic pressure and the lift coefficient q 1 2 ρv 2 1 = 2 (2: ,3 )(220) 2 lb lb = 57:521 ft2 ft 2 (2) so the required power for steady level flight C W 3300 L = qs = = 0:18507 (3) 57:521(310) 1

2 P r = qsv, C Do + KCL 2 57:521(310)220, = 0: :06(0:18507) hp = 157:31 hp (4) 550 Since lift equals weight for steady climbing flight, excess power P x is related to rate of climb RC = V sinγ by P x P a, P r = WV sin γ = 3300(220)sin3 550 hp = 69:083 hp (5) Thus, the engine shaft horsepower required for climbing flight at the given flight path angle γ and air speed V is P s = P r + P x η = 157: :083 0:8 which is 13.2% higher than the maximum available shaft horsepower. hp = 282:99 hp (6) 1.2 Air speed at γ = 3, P max For a maximum available power P a;max = ηp s;max = 0:8(250) hp = 200 hp (7) the possible air speeds for climbing flight are given by finding the roots of f (V )=P a;max, qsv, C Do + KC 2 L,WV sinγ (8) The two roots of this, as shown in Fig 1, are at V, = 16:588 ft=s V+ = 207:30 ft=s The following IDL code plots this function : pro hw4_1b ; Define initial conditions & conversions. hp = 550. ; 1 hp in ft-lb/s rho = e-3 ; sea level density, slug/ftˆ3 W = ; aircraft weight, lb S = 310. ; wing area, ftˆ2 P_s = 250. ; engine shaft power, hp eta = 0.80 ; propeller efficiency C_do = 0.02 ; parasitic drag coefficient K_d = 0.06 ; induced drag factor, 1/pi e AR 2

3 excess power (hp) airspeed V (ft/s) Figure 1: Function f (V ) (Eqn. 8) for sea level flight. gamma = 3*!dtor ; flight path angle, radians ; Create air speed array. v_min = 10. ; minimum speed, ft/s v_max = 250. ; maximum speed, ft/s bins = fix(v_max - v_min) + 1 ; number of array bins V = v_min + findgen(bins) ; air speed, ft/s ; Create available power array. P_a = eta*p_s*(fltarr(bins) + 1.) ; available power, hp ; Calculate required power (for level flight) array. q = rho * Vˆ2/2 ; dynamic pressure, psf C_l = W/(q*S) ; lift coefficient C_d = C_do + K_d*C_lˆ2 ; drag coefficient D = q*s*c_d ; drag, lb P_r = D*V/hp ; required power, hp ; Calculate climb power array. h_dot = V*sin(gamma) ; rate of climb, ft/s P_c = W*h_dot/hp ; climbing power, hp ; Calculate and plot excess power for root-finding. P_x = P_a - P_c - P_r 3

4 xtitle = airspeed V (ft/s) ; x-axis title ytitle = excess power (hp) ; y-axis title file = fig4_1b.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, V, P_x, xtitle=xtitle, $ ytitle=ytitle, font=0 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file end 1.3 Minimum power for 10 ft/s climb rate For a given climb rate RC, the required shaft horsepower P s = 1 η, WRC+ qsv CDo + KC 2 L (9) is minimized when P s = V = 0; since RC is a constant, this becomes From the definition of dynamic pressure, KqSV C2, L V + CDo + KCL 2 S q +V q V = 0 (10) q V = ρv = 2q V (11) while the lift coefficient for steady flight (Eqn. 3) gives CL 2 V = 2C L V W =,2 WC L q qs q 2 S V =,4C2 L V (12) Substituting into Eqn. 10 and rearranging,, 3CDo, KCL 2 qs = 0 (13) The only nontrivial solution is 3C Do = KC 2 L (14) 4

5 which, of course, is the condition for minimum required power (Anderson, 3rd ed,, Eqn. 6.29). This leads to the dynamic pressure q W r s K :06 = = S 3C Do 310 3(0:02) lb lb = 10:645 ft2 ft 2 (15) while the air speed V = s r 2q 2(10:645) ft ft ρ = 2: ,3 = 94:642 s s (16) Substituting this into Eqn. 9 gives the minimum shaft horsepower for a 10 ft/s climb rate. P s = WRC, qsv[4c Do] η = 3300(10)+10:645(310)94:642 [4(0:02)] hp = 131:78 hp (17) 0:8(550) 1.4 Maximum climb rate The air speed for maximum climb rate (Eqn. 16) varies with density as p ρ o =ρ where ρ o is the density at sea level. However, the dynamic pressure (Eqn. 15) is not a function of altitude, nor is lift coefficient at maximum climb C L = W q S = r 3CDo K (18) The required power for maximum climb rate P r;max = V q S(C Do + KC L 2 ) (19) thus also varies with density as p ρ o =ρ, while the available power varies as (Anderson, 3rd ed., Example 6.4) The maximum rate of climb P a;max = ηp s ρ ρ o (20) RC max = P a;max, P r;max W (21) and air speed for maximum climb rate V given in Fig. 2 are plotted by the following IDL code: pro hw4_1d ; Define fundamental constants & conversions. 5

6 airspeed V* (ft/s) altitude (1000 ft) rate of climb (ft/s) altitude (1000 ft) Figure 2: Maximum climb rate and airspeed at max climb as a function of altitude. R = ; 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 hp = 550. ; 1 hp in ft-lb/s ; Define initial conditions. p_sl = ; sea level pressure, lb/ftˆ2 T_sl = ; sea level temperature, R rho_sl = e-3 ; sea level density, slug/ftˆ3 a_1 = -6.5e-3*K2R/m2ft ; lapse rate, R/ft 6

7 W = ; aircraft weight, lb S = 310. ; wing area, ftˆ2 P_s = 250. ; engine shaft power, hp eta = 0.80 ; propeller efficiency C_do = 0.02 ; parasitic drag coefficient K_d = 0.06 ; induced drag factor, 1/pi e AR ; Create gradient layer altitude, temperature, pressure & density arrays. bins = 201. ; number of array bins h = 100.*findgen(bins) ; altitude in gradient layer, ft T = T_sl + a_1*h ; temperature in gradient layer, R p = p_sl*(t/t_sl)ˆ(-g_o/(a_1*r)) ; pressure in gradient layer, lb/ftˆ2 rho = p/(r*t) ; density in gradient layer, slug/ftˆ3 ; Calculate and plot air speed for max steady climb as function of altitude. r1 = sqrt(k_d/(3.*c_do)) r2 = (2.*W)/(rho*S) V_star = sqrt(r1*r2) q_star = W*r1/S ; max climb air speed, ft/s ; max climb dynamic pressure, lb/ftˆ2 xtitle = altitude (1000 ft) ; x-axis title ytitle = airspeed V* (ft/s) ; y-axis title file = fig4_1dv.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, h/1000., V_star, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file ; Calculate and plot required power, available power and maximum rate of climb. C_L = W/(q_star*S) ; max climb lift coefficient C_D = C_do + K_d*C_Lˆ2 ; max climb drag coefficient P_r = q_star*s*c_d*v_star ; required power, ft-lb/s P_a = (rho/rho_sl)*eta*p_s*hp ; available power, ft-lb/s RC = (P_a - P_r)/W ; max rate of climb, ft/s ytitle = rate of climb (ft/s) ; y-axis title file = fig4_1dr.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, $ ; set plot device to PostScript ; open file & save EPS 7

8 font_size = 7 plot, h/1000., RC, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; close the file end 1.5 Minimum glide angle The glide angle γ g =,γ is given (for small γ)by Setting the derivative with respect to air speed to zero, γ g = D W = qs W (C Do + KC 2 L ) (22) γ g S V = W C q qs D V + W KS we can substitute derivatives from Eqn. 11 and Eqn. 12, yielding 2C L C L V = 0 (23) The only nontrivial solution is at γ g 2qS, V = CD, 2KC 2 WV L = 0 (24) C D = C Do + KC 2 L = 2KC2 L (25) Thus, the lift coefficient for minimum glide angle is C L = r CDo K (26) Since Eqn. 3 holds for all steady linear flight (level, climbing or descending), the dynamic pressure so the minimum glide angle q = W S r K C Do (27) γ g;min = W S r K C Do S W (2C Do) =2 p KC Do = 6:928 10,2 rad = 3:970 (28) Note that neither the dynamic pressure nor the minimum glide angle are functions of density (and thus altitude). However, the velocity at minimum glide angle 8

9 V = s s r 2q 2W K ρ = (29) ρs C Do does vary with density, as shown in Fig airspeed V (ft/s) altitude (1000 ft) rate of climb (ft/s) altitude (1000 ft) Figure 3: Minimum glide angle and airspeed at minimum glide angle as a function of altitude. pro hw4_1d ; Define fundamental constants & conversions. R = ; 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 9

10 m2ft = km2ft/1000. ; 1 m in ft K2R = 1.8 ; 1 K in R hp = 550. ; 1 hp in ft-lb/s ; Define initial conditions. p_sl = ; sea level pressure, lb/ftˆ2 T_sl = ; sea level temperature, R rho_sl = e-3 ; sea level density, slug/ftˆ3 a_1 = -6.5e-3*K2R/m2ft ; lapse rate, R/ft W = ; aircraft weight, lb S = 310. ; wing area, ftˆ2 P_s = 250. ; engine shaft power, hp eta = 0.80 ; propeller efficiency C_do = 0.02 ; parasitic drag coefficient K_d = 0.06 ; induced drag factor, 1/pi e AR ; Create gradient layer altitude, temperature, pressure & density arrays. bins = 201. ; number of array bins h = 100.*findgen(bins) ; altitude in gradient layer, ft T = T_sl + a_1*h ; temperature in gradient layer, R p = p_sl*(t/t_sl)ˆ(-g_o/(a_1*r)) ; pressure in gradient layer, lb/ftˆ2 rho = p/(r*t) ; density in gradient layer, slug/ftˆ3 ; Calculate and plot air speed for max steady climb as function of altitude. r1 = sqrt(k_d/(3.*c_do)) r2 = (2.*W)/(rho*S) V_star = sqrt(r1*r2) q_star = W*r1/S ; max climb air speed, ft/s ; max climb dynamic pressure, lb/ftˆ2 xtitle = altitude (1000 ft) ; x-axis title ytitle = airspeed V* (ft/s) ; y-axis title file = fig4_1dv.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, h/1000., V_star, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file ; Calculate and plot required power, available power and maximum rate of climb. C_L = W/(q_star*S) ; max climb lift coefficient C_D = C_do + K_d*C_Lˆ2 ; max climb drag coefficient P_r = q_star*s*c_d*v_star ; required power, ft-lb/s P_a = (rho/rho_sl)*eta*p_s*hp ; available power, ft-lb/s RC = (P_a - P_r)/W ; max rate of climb, ft/s 10

11 ytitle = rate of climb (ft/s) ; y-axis title file = fig4_1dr.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, h/1000., RC, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file end 2 Problem2 Consider a jet aircraft with weight of 16,850 lbs and wing surface area of 350. sq ft. It is powered by a turbojet engine that provides a maximum thrust of 6300 lbs at sea level. The aerodynamic properties of the aircraft are described by a parabolic drag polar with C D = 0:02 + 0:04C 2 L (30) 1. What is the thrust level required to maintain a steady flight path angle of 3 degrees and an air speed of 350 ft/s at sea level? 2. Assume the aircraft flies with a flight path angle of 3 degrees using maximum available thrust. Determine all possible air speeds which maintain steady flight at sea level. 3. What is the minimum thrust level required to maintain steady climb rate of 10 ft/s at sea level? What is the corresponding air speed? 4. Plot the maximum flight path angle of the aircraft as it depends on altitude from sea level to 20,000 ft. Plot the corresponding air speed as it depends on altitude. 5. Plot the minimum glide angle which maintains steady gliding flight as it depends on altitude from sea level to 20,000 ft. Plot the corresponding air speed as it depends on altitude. 2.1 Required thrust at γ = 3, 350 ft/s At sea level, the air speed V = 350 ft/s has a dynamic pressure so Eqn. 3 gives the lift coefficient q 1 = 2 ρv 2 1 = 2 (2: ,3 )(350) 2 lb lb = 145:59 ft2 ft 2 (31) 11

12 C W 16;850 L = qs = = 0:33067 (32) 145:59(350) Continuing the chain of calculations, the drag coefficient C D = C Do + KC 2 L = 0:02 + 0:04(0:33067)2 = 2: ,2 (33) so the thrust required for steady climb at γ = 3 and 350 ft/s is T = W sinγ + qsc D = 16;850sin :59(350)2: ,2 lb = 2123:9 lb (34) 2.2 Air speed at γ = 3, T max For steady climbing flight at a flight path angle of 3 and maximum thrust, the thrust balance is W sinγ = T, qsc D (35) Susbtituting the drag polar and the lift coefficient for steady flight and rearranging, W 2 qsc do + qsk = T,W sinγ (36) qs Multiplying by qs and rearranging, we have the quadratic equation C Do (qs) 2 +(W sinγ, T )(qs)+kw 2 = 0 (37) which can be solved by the quadratic formula, Inserting numerical values gives two roots, qs = T,W sinγ p (W sinγ, T ) 2, 4C Do KW 2 2C Do (38) (qs), = 2112:5lb (qs)+ = 268;790 lb Substituting this into Eqn. 2 yields the air speeds for 6,300 lb thrust and γ = 3 V, = 71:265 ft=s V+ = 803:870 ft=s 12

13 2.3 Minimum thrust for 10 ft/s climb rate At a constant rate of climb RC = V sinγ = 10 ft/s, the thrust balance sinγ RC T = V =, D W (39) Rearranging and expanding the drag term, T = RC V W + qsc Do + KC 2 L (40) which has minima at Substituting in the derivatives of Eqn. 11 and Eqn. 12, T V =,RC W V V + SC q D V + 2qSKC C L L V = 0 (41) T V =,RC W 2qS V V + V C 4qS D, V KC2 L = 0 (42) If there s an analytical solution to this, it s beyond my patience. Instead, the following IDL code returns Fig. 4, a plot of T = V as a function of air speed, while a secant-method root-finding routine finds that the minimum thrust for a 10 ft/s climb rate is at V = 279:63 ft=s T = 1602:3lb pro hw4_2c ; Define initial conditions & conversions. rho = e-3 ; sea level density, slug/ftˆ3 W = ; aircraft weight, lb S = 350. ; wing area, ftˆ2 T_a = ; engine shaft power, hp C_do = 0.02 ; parasitic drag coefficient K = 0.04 ; induced drag factor, 1/pi e AR RC = 10. ; rate of climb, ft/s ; Create air speed array. v_min = 200. ; minimum speed, ft/s v_max = 300. ; maximum speed, ft/s bins = fix(v_max - v_min) + 1 ; number of array bins V = v_min + findgen(bins) ; air speed, ft/s ; Calculate slope of thrust curve, dt/dv. 13

14 2 0 dt/dv (lb-s/ft) airspeed V (ft/s) Figure 4: Thrust slope T = V for steady 10 ft/s climb rate. q = rho * Vˆ2/2 ; dynamic pressure, psf C_l = W/(q*S) ; lift coefficient C_d = C_do + K*C_lˆ2 ; drag coefficient dtdv = - RC*W/Vˆ2 + (2*q*S*C_d)/V - (4*q*S*K*C_lˆ2)/V ; Plot dt/dv as a function of airspeed for minimum-finding. xtitle = airspeed V (ft/s) ; x-axis title ytitle = dt/dv (lb-s/ft) ; y-axis title file = fig4_2c.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, V, dtdv, xtitle=xtitle, $ ytitle=ytitle, font=0 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file end 14

15 2.4 Maximum flight path angle The thrust at altitude is a function of density (Anderson, 3rd ed., Example 6.4), The flight path angle at a given thrust T is (for small γ) T = T o ρ ρ o (43) γ = T, qsc D W (44) At a constant altitude (so T is constant), this has a maximum at Substituting in the derivatives of Eqn. 11 and Eqn. 12, γ S q V =, C D W V + qk C2 L = 0 (45) V The only nontrivial solution is at γ 2qS V =, WV (C D, 2KCL 2 ) (46) C D = C Do + KC 2 L = 2KC2 L (47) Solving for lift coefficient at maximum climb, C L = W q S = r CDo K (48) so the dynamic pressure q = W S r K C Do (49) and the airspeed at maximum flight path angle V = s r 2W K (50) ρs C Do This airspeed and the resulting thrust are plotted in Fig. 5 as a function of altitude by the following IDL code: pro hw4_2d ; Define fundamental constants & conversions. 15

16 airspeed V* (ft/s) altitude (1000 ft) flight path angle (deg) altitude (1000 ft) Figure 5: Maximum flight path angle and airspeed at max climb angle as a function of altitude. R = ; 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 hp = 550. ; 1 hp in ft-lb/s ; Define initial conditions. p_sl = ; sea level pressure, lb/ftˆ2 T_sl = ; sea level temperature, R rho_sl = e-3 ; sea level density, slug/ftˆ3 a_1 = -6.5e-3*K2R/m2ft ; lapse rate, R/ft W = ; aircraft weight, lb 16

17 S = 350. ; wing area, ftˆ2 T_o = ; engine thrust, lb C_do = 0.02 ; parasitic drag coefficient K = 0.04 ; induced drag factor, 1/pi e AR ; Create gradient layer altitude, temperature, pressure & density arrays. bins = 201. ; number of array bins h = 100.*findgen(bins) ; altitude in gradient layer, ft T = T_sl + a_1*h ; temperature in gradient layer, R p = p_sl*(t/t_sl)ˆ(-g_o/(a_1*r)) ; pressure in gradient layer, lb/ftˆ2 rho = p/(r*t) ; density in gradient layer, slug/ftˆ3 ; Calculate and plot air speed for max steady climb as function of altitude. r1 = sqrt(k/c_do) r2 = (2.*W)/(rho*S) V_star = sqrt(r1*r2) q_star = W*r1/S ; max climb air speed, ft/s ; max climb dynamic pressure, lb/ftˆ2 xtitle = altitude (1000 ft) ; x-axis title ytitle = airspeed V* (ft/s) ; y-axis title file = fig4_2dv.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, h/1000., V_star, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; set plot device to PostScript ; open file & save EPS ; close the file ; Calculate and plot required power, available power and maximum rate of climb. C_L = W/(q_star*S) ; max climb lift coefficient C_D = C_do + K*C_Lˆ2 ; max climb drag coefficient D = q_star*s*c_d ; drag, lb T_a = (rho/rho_sl)*t_o ; available thrust, lb gamma = (T_a - D)*!radeg/W ; max flight path angle, deg ytitle = flight path angle (deg) ; y-axis title file = fig4_2dr.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, h/1000., gamma, xtitle=xtitle, $ ; set plot device to PostScript ; open file & save EPS 17

18 ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; close the file end 2.5 Minimum glide angle As shown in section 1.5, the minimum glide angle γ g;min = 2 p KC Do = 2 p 0:04(0:02)=5:657 10,2 rad = 3:241 (51) is not a function of altitude, but the velocity at minimum glide angle V g;min = s r 2W K (52) ρs C Do is, as shown in Fig. 6. pro hw4_2e ; Define fundamental constants & conversions. R = ; 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 = ; sea level pressure, lb/ftˆ2 T_sl = ; sea level temperature, R rho_sl = e-3 ; sea level density, slug/ftˆ3 a_1 = -6.5e-3*K2R/m2ft ; lapse rate, R/ft W = ; aircraft weight, lb S = 350. ; wing area, ftˆ2 C_do = 0.02 ; parasitic drag coefficient K_D = 0.04 ; induced drag factor, 1/pi e AR ; Create gradient layer altitude, temperature, pressure & density arrays. bins = 201. ; number of array bins h = 100.*findgen(bins) ; altitude in gradient layer, ft T = T_sl + a_1*h ; temperature in gradient layer, R p = p_sl*(t/t_sl)ˆ(-g_o/(a_1*r)) ; pressure in gradient layer, lb/ftˆ2 rho = p/(r*t) ; density in gradient layer, slug/ftˆ3 18

19 airspeed V (ft/s) altitude (1000 ft) rate of climb (ft/s) altitude (1000 ft) Figure 6: Minimum glide angle and airspeed at minimum glide angle as a function of altitude. ; Calculate and plot air speed for min steady glide as function of altitude. q = (W/S)*sqrt(K_D/C_do) ; min glide dynamic pressure, lb/ftˆ2 V = sqrt(2*q/rho) ; min glide air speed, ft/s xtitle = altitude (1000 ft) ; x-axis title ytitle = airspeed V (ft/s) ; y-axis title file = fig4_2ev.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, $ ; set plot device to PostScript ; open file & save EPS 19

20 font_size = 7 plot, h/1000., V, xtitle=xtitle, $ ytitle=ytitle, font=0, $ xstyle = 1, ystyle = 1 device, /close ; close the file ; Calculate and plot minimum glide angle as a function of altitude. gamma = 2*sqrt(K_D*C_do)*(fltarr(bins) + 1) ; glide angle, radians gamma = gamma*!radeg ; convert to degrees ytitle = rate of climb (ft/s) ; y-axis title file = fig4_2eg.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, h/1000., gamma, xtitle=xtitle, $ ytitle=ytitle, font=0, $ yrange=[3.,5.] device, /close ; set plot device to PostScript ; open file & save EPS ; force plot y-range ; close the file end 3 Problem3 Assume that an aircraft has weight of 5600 lbs and wing surface area of 330 ft 2. The maximum power available from the engine propulsion system at sea level is P a = 122:2 + 0:556V (53) and the power required for steady level flight at sea level is P r = 357:8, 2:4375V + 0:005625V 2 (54) where power is in hp and air speed is in ft/s. The lift coefficient is C L = 0:16α, 0:00533α 2 (55) where angle of attack is in degrees, this expression is valid up to stall. 1. Develop graphical plots for the maximum power and thrust available from the engine propulsion system and the power and thrust required for steady level flight as functions of the air speed. Assume sea level flight. 20

21 2. If the aircraft engine delivers 300 hp, what is the air speed (or air speeds) for which the aircraft maintains steady level flight at sea level? What is the required throttle as a percentage of the maximum power available? What is the required angle of attack? 3. If the aircraft engine delivers a constant 500 lbs of thrust, what is the air speed (or speeds) of the aircraft for which steady level flight is maintained at sea level? What is the required throttle as a percentage of the maximum thrust available? What is the required angle of attack? 4. What are the power level and the thrust level required to maintain steady level flight at an air speed of 350 ft/s at sea level? What is the required throttle as a percentage of the maximum power available? What is the required value of the angle of attack? 5. What is the maximum air speed that can be maintained in steady level flight at sea level? What are the required power level and the required thrust level? What is the required throttle as a percentage of the maximum power available? What is the required value of the angle of attack? 6. What is the minimum air speed that can be maintained in steady level flight at sea level? What are the required power level and the required thrust level? What is the required throttle as a percentage of the maximum power available? What is the required value of the angle of attack? 7. What is the maximum rate of climb that can be maintained at sea level? What are the required power level and the required thrust level? What are the required values of the air speed and of the angle of attack? 8. What is the minimal glide slope angle at sea level, assuming the engine is turned off? What are the required values of the air speed and of the angle of attack? 3.1 Available and required thrust and power This simply entails plotting Eqns. 53 and 54 for power, and using the relation T = P=V (56) for thrust. Figure 7 shows these plots. 3.2 Air speed at P d = 300 hp Given a delivered power of P d = 300 hp, possible air speeds lie at the roots of 300 hp =(357:8, 2:4375u + 0:005625u 2 ) hp (57) where u V =V o is a nondimensionalization (V o = 1 ft/s) that lets us avoid confusion about what our dimensions are. Rearranging and solving by the quadratic formula gives V, = 25:179 ft=s V+ = 408:16 ft=s which is confirmed by a glance at Fig. 7. The available power at these airspeeds is 21

22 force (lb) airspeed (ft/s) power (hp) airspeed (ft/s) Figure 7: Required (solid line) and available (dotted line) thrust and power as a function of air speed. 22

23 P, = (122:2 + 0:556[25:179]) hp = 136:20 hp P+ = (122:2 + 0:556[408:16]) hp = 349:14 hp so the percent power throttle θ p; = P d =P is θ p;, = θ p;+ = :20 = 220:27% :14 = 85:925% To find the possible angle of attack, start by calculating dynamic pressures and lift coefficients q 1, = 2 (2: ,3 )(25:179) 2 lb lb = 0:75346 ft2 ft 2 q+ 1 = 2 (2: ,3 )(408:16) 2 lb lb = 197:99 ft2 ft 2 C L, = C L+ = :75346(330) = 22: = 8: ,2 197:99(330) corresponding to the possible airspeeds. Substituting into Eqn. 55, 0 = 0:00533α 2,, 0:16α, + 22:522 0 = 0:00533α 2 +, 0:16α + + 8: ,2 The low-speed solution has no real roots, α, =(15:009 63:248 p,1) (58) while the high-speed solution has two real roots, α+;1 = 0:5450 α+;2 = 29:473 The lower angle of attack at high speed is more physically reasonable, as is well beyond stall for most airfoils, but both are allowed by the given mathematical model. 23

24 3.3 Air speed at T d = 500 lb Given a delivered thrust of T d = 500 hp, possible air speeds lie at the roots of 500V lb =(357:8, 2:4375u + 0:005625u 2 ) hp (59) Dividing through by V o = 1 ft/s and using the identity 550 ft-lb/s = 1 hp, this becomes 500u = 196;790, 1340:6u + 3:0938u 2 (60) Solving this by the quadratic formula gives the air speeds V, = 139:75 ft=s V+ = 455:21 ft=s which is confirmed by a glance at Fig. 7. The available thrust at these airspeeds is T, = T+ = 550 (122:2 + 0:556[139:75]) lb = 786:73 hp 139: (122:2 + 0:556[455:21]) hp = 453:45 hp 455:21 so the percent thrust throttle θ t ; = T d =T is θ t ;, = θ t ;+ = :73 = 63:554% :45 = 110:27% To find the possible angle of attack, start by calculating dynamic pressures and lift coefficients q 1, = 2 (2: ,3 )(139:75) 2 lb lb = 23:211 ft2 ft 2 q+ 1 = 2 (2: ,3 )(455:21) 2 lb lb = 246:27 ft2 ft 2 C L, = C L+ = :211(330) = 0: = 6: ,2 246:27(330) 24

25 corresponding to the possible airspeeds. Substituting into Eqn. 55, 0 = 0:00533α 2,, 0:16α, + 0: = 0:00533α 2 +, 0:16α + + 6: ,2 The low-speed solution has roots at α,;1 = 5:6220 α,;2 = 24:396 while the high-speed solution has two real roots, α+;1 = 0:43700 α+;2 = 29:581 Again, all 4 angles are allowed by the given mathematical model. 3.4 Power and thrust for 350 ft/s air speed At V = 350 ft/s, the required power P r =(357:8, 2:4375[350]+0:005625[350] 2 ) hp = 193:75 hp (61) so the required thrust The available power at V = 350 ft/s is T r = P r V = 193:75 hp 350 ft=s 550 ft lb = 304:44 lb (62) 1hps P a =(122:2 + 0:556[350]) hp = 316:80 hp (63) so the percent power throttle is A glance at Fig. 7 confirms these values. The dynamic pressure is θ 193:75 p = = 61:155% (64) 316:80 q 1 = 2 (2: ,3 )(350) 2 lb lb = 145:59 ft2 ft 2 (65) 25

26 while substituting the lift coefficient C L = 5600 = 0:11656 (66) 145:59(330) into Eqn. 55, 0 = 0:00533α 2,, 0:16α, + 0:11656 (67) gives the roots α 1 = 0:74666 α 2 = 29: Maximum air speed In steady level flight, maximum air speed is at the upper root of P a = P r : Combining terms and cancelling units, (122:2 + 0:556u) hp =(357:8, 2:4375u + 0:005625u 2 ) hp (68) 0 = 235:6, 2:9935u + 5:625 10,3 u 2 (69) which has roots at V, = 96:04 ft=s V+ = 436:14 ft=s Thus, the maximum air speed V max = 436:14 ft/s; the required throttle is, of course, 100%. The dynamic pressure at V max is so the lift coefficient q 1 = 2 (2: ,3 )(436:14) 2 lb lb = 226:06 ft2 ft 2 (70) Substituting this into Eqn. 55, C L = :06(330) = 7: ,2 (71) 0 = 0:00533α 2,, 0:16α, + 7: ,2 (72) 26

27 gives the roots α 1 = 0:47630 α 2 = 29: Minimum air speed As shown in the last section, V, = 96:04 ft/s is the lower intersection of the required and available power curves. The dynamic pressure at V min is so the lift coefficient q 1 = 2 (2: ,3 )(96:04) 2 lb lb = 10:962 ft2 ft 2 (73) C L = 5600 = 1:5481 (74) 10:962(330) Substituting this into Eqn. 55, 0 = 0:00533α 2,, 0:16α, + 1: ,2 (75) gives the complex roots α =(15:009 8:0727 p,1) (76) In physical terms, this means that the airfoil is incapable of reaching a high enough C L to support steady level flight at V,.TheC L curve has a maximum at C L α so α max = 15:009, giving a maximum lift coefficient = 0:16, 0:01066α = 0 (77) C Lmax = 0:16(15:009), 0:00533(15:009) 2 = 1:2007 (78) The minimum dynamic pressure q max = W SC Lmax = :2007(330) lb lb = 14:133 ft2 ft 2 (79) yielding a minimum air speed V min = s r 2q 2(14:133) ft ft ρ = 2: ,3 = 109:05 s s (80) 27

28 The required power at minimum air speed P r =(357:8, 2:4375[109:05]+0:005625[109:05] 2 ) hp = 158:88 hp (81) while the available power P a =(122:2 + 0:556[109:05]) hp = 182:83 hp (82) so the percent power throttle is θ 158:88 p = = 86:900% (83) 182: Maximum rate of climb The rate of climb has a maximum where Rearranging and taking the two derivatives, the nontrivial solution is at RC 1 Pa P V = W V, r = 0 (84) V 0:566 =,2: :125 10,2 V (85) Solving, the air speed at maximum rate of climb V RCmax = 0: :4375 ft ft 1:125 10,2 = 266:98 s s (86) The available power P a =(122:2 + 0:556[266:98]) hp = 270:64 hp (87) while the required power P r =(357:8, 2:4375[266:98]+0:005625[266:98] 2 ) hp = 107:98 hp (88) so that the maximum rate of climb RC max = (270:15, 107:98) hp 5600 lb 550 ft lb = 15:928 ft 1hps s (89) To find angle of attack, start with dynamic pressure 28

29 q 1 = 2 (2: ,3 )(266:98) 2 lb lb = 84:711 ft2 ft 2 (90) so the lift coefficient C L = 5600 = 0:20033 (91) 84:711(330) Substituting this into Eqn. 55, 0 = 0:00533α 2,, 0:16α, + 0:20167 (92) gives the possible angles of attack at maximum climb α 1 = 1:3087 α 2 = 28: Minimum glide angle The glide slope (for small γ g ) γ g = D W = P r WV (93) has a minimum when γ g V = 1 W V Pr 1 1 P r P = V W V V, r V 2 = 0 (94) The only nontrivial solution is at 1 P r P V V = r V 2 (95) Multiplying by V 2 and expanding P r, V (,2: : ,2 V )=(357:8, 2:4375V + 5:625 10,3 V 2 ) (96) Regrouping, we have 0 = 357:8, 5:625 10,3 V 2 (97) so the air speed at minimum glide angle 29

30 V min = r 357:8 ft ft 5:625 10,3 = 252:21 s s (98) The required power at minimum glide angle is P r =(357:8, 2:4375[252:21]+0:005625[252:21] 2 ) hp = 100:84 hp (99) so that minimum drag is D min = P r V min = 100:84 hp s 252:21 ft 550 ft lb = 219:90 lb (100) 1hps and minimum glide slope γ gmin = As ever, to find angle of attack we start with dynamic pressure 219:90 lb 5600 lb = 3: ,2 rad = 2:2499 (101) so the lift coefficient q 1 = 2 (2: ,3 )(252:21) 2 lb lb = 75:597 ft2 ft 2 (102) C L = 5600 = 0:22448 (103) 75:597(330) Substituting this into Eqn. 55, 0 = 0:00533α 2,, 0:16α, + 0:22448 (104) gives the possible angles of attack at maximum climb α 1 = 1:4751 α 2 = 28:534 and we re done. (Whew!) 30

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

AE 245 homework #1 solutions

AE 245 homework #1 solutions AE 245 homework #1 solutions Tim Smith 24 January 2000 1 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

More information

Introduction to Aerospace Engineering

Introduction to Aerospace Engineering Introduction to Aerospace Engineering 5. Aircraft Performance 5.1 Equilibrium Flight In order to discuss performance, stability, and control, we must first establish the concept of equilibrium flight.

More information

Chapter 5 Lecture 19. Performance analysis I Steady level flight 3. Topics. Chapter-5

Chapter 5 Lecture 19. Performance analysis I Steady level flight 3. Topics. Chapter-5 Chapter 5 Lecture 19 Performance analysis I Steady level flight 3 Topics 5.8 Influence of level flight analysis on airplane design 5.9 Steady level flight performance with a given engine 5.10 Steady level

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

Performance analysis II Steady climb, descent and glide 2

Performance analysis II Steady climb, descent and glide 2 Chapter 6 Lecture Performance analysis II Steady climb, descent and glide Topics 6.5 Maximum rate of climb and imum angle of climb 6.5. Parameters influencing (R/C) of a jet airplane 6.5. Parameters influencing

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

Problem Sheet 8 (ans) above

Problem Sheet 8 (ans) above Problem Sheet 8 (ans) 41. A high speed aircraft has a parabolic drag polar with the coefficients varying according to Mach number. This variation is such that the values of the coefficients are constant

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

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

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

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

ME 425: Aerodynamics

ME 425: Aerodynamics ME 425: erodynamics r..b.m. oufique Hasan Professor epartment of Mechanical Engineering Bangladesh University of Engineering & echnology (BUE), haka ecture-25 26/0/209 irplane pa Performance toufiquehasan.buet.ac.bd

More information

AAE 251 Formulas. Standard Atmosphere. Compiled Fall 2016 by Nicholas D. Turo-Shields, student at Purdue University. Gradient Layer.

AAE 251 Formulas. Standard Atmosphere. Compiled Fall 2016 by Nicholas D. Turo-Shields, student at Purdue University. Gradient Layer. AAE 51 Formulas Compiled Fall 016 by Nicholas D. Turo-Shields, student at Purdue University Standard Atmosphere p 0 = 1.0135 10 5 Pascals ρ 0 = 1.5 kg m 3 R = 87 J kg K γ = 1.4 for air p = ρrt ; Equation

More information

A SIMPLIFIED ANALYSIS OF NONLINEAR LONGITUDINAL DYNAMICS AND CONCEPTUAL CONTROL SYSTEM DESIGN

A SIMPLIFIED ANALYSIS OF NONLINEAR LONGITUDINAL DYNAMICS AND CONCEPTUAL CONTROL SYSTEM DESIGN A SIMPLIFIED ANALYSIS OF NONLINEAR LONGITUDINAL DYNAMICS AND CONCEPTUAL CONTROL SYSTEM DESIGN ROBBIE BUNGE 1. Introduction The longitudinal dynamics of fixed-wing aircraft are a case in which classical

More information

Aerodynamics SYST 460/560. George Mason University Fall 2008 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH. Copyright Lance Sherry (2008)

Aerodynamics SYST 460/560. George Mason University Fall 2008 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH. Copyright Lance Sherry (2008) Aerodynamics SYST 460/560 George Mason University Fall 2008 1 CENTER FOR AIR TRANSPORTATION SYSTEMS RESEARCH Copyright Lance Sherry (2008) Ambient & Static Pressure Ambient Pressure Static Pressure 2 Ambient

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

PART ONE Parameters for Performance Calculations

PART ONE Parameters for Performance Calculations PART ONE Parameters for Performance Calculations As an amateur designer/builder of homebuilt aircraft, you are chief aerodynamicist, structural engineer, dynamicist, mechanic, artist and draftsman all

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

Basic Information to Help Select the Correct Propeller

Basic Information to Help Select the Correct Propeller Propeller Performance Factors - Basic Information to Help Select the Correct Propeller The performance of a propeller in flight involves several complex subjects, and the high performance propellers we

More information

Performance. 7. Aircraft Performance -Basics

Performance. 7. Aircraft Performance -Basics Performance 7. Aircraft Performance -Basics In general we are interested in finding out certain performance characteristics of a vehicle. These typically include: how fast and how slow an aircraft can

More information

AOE 3104 Problem Sheet 10 (ans)

AOE 3104 Problem Sheet 10 (ans) AOE 3104 Problem Sheet 10 (ans) Our class business jet has the following characteristics: Gross Weight = 10,000 lbs b = 40 ft C Lmax = 1.8 (normal flight) S = 200 ft 2 C D = 0.02 + 0.05 (C L ) 2 C Lmax

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

Cruising Flight Envelope Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2018

Cruising Flight Envelope Robert Stengel, Aircraft Flight Dynamics, MAE 331, 2018 Cruising Flight Envelope Robert Stengel, Aircraft Flight Dynamics, MAE 331, 018 Learning Objectives Definitions of airspeed Performance parameters Steady cruising flight conditions Breguet range equations

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

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

Mechanics of Flight. Warren F. Phillips. John Wiley & Sons, Inc. Professor Mechanical and Aerospace Engineering Utah State University WILEY

Mechanics of Flight. Warren F. Phillips. John Wiley & Sons, Inc. Professor Mechanical and Aerospace Engineering Utah State University WILEY Mechanics of Flight Warren F. Phillips Professor Mechanical and Aerospace Engineering Utah State University WILEY John Wiley & Sons, Inc. CONTENTS Preface Acknowledgments xi xiii 1. Overview of Aerodynamics

More information

Chapter 2. Particle Motion. 2.1 Newton s Second Law Cartesian coordinates

Chapter 2. Particle Motion. 2.1 Newton s Second Law Cartesian coordinates Chapter 2 Particle Motion This chapter provides a review of particle motion in the context of vehicle trajectories. I begin by recalling Newton s Second Law, then provide a brief presentation of Lagrange

More information

ME 425: Aerodynamics

ME 425: Aerodynamics ME 45: Aerodynamics r. A.B.M. oufique Hasan Professor epartment of Mechanical Engineering Bangladesh University of Engineering & echnology (BUE), haka Lecture-4 //9 Airplane pa Performance toufiquehasan.buet.ac.bd

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

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

PERFORMANCE ANALYSIS OF A PISTON ENGINED AIRPLANE - PIPER CHEROKEE PA E.G.TULAPURKARA S.ANANTH TEJAS M. KULKARNI REPORT NO: AE TR

PERFORMANCE ANALYSIS OF A PISTON ENGINED AIRPLANE - PIPER CHEROKEE PA E.G.TULAPURKARA S.ANANTH TEJAS M. KULKARNI REPORT NO: AE TR Appendix - A PERFORMANCE ANALYSIS OF A PISTON ENGINED AIRPLANE - PIPER CHEROKEE PA-28-180 E.G.TULAPURKARA S.ANANTH TEJAS M. KULKARNI REPORT NO: AE TR 2007-1 FEBRUARY 2007 Performance Analysis of a piston

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

Stability and Control Some Characteristics of Lifting Surfaces, and Pitch-Moments

Stability and Control Some Characteristics of Lifting Surfaces, and Pitch-Moments Stability and Control Some Characteristics of Lifting Surfaces, and Pitch-Moments The lifting surfaces of a vehicle generally include the wings, the horizontal and vertical tail, and other surfaces such

More information

Real-time trajectory generation technique for dynamic soaring UAVs

Real-time trajectory generation technique for dynamic soaring UAVs Real-time trajectory generation technique for dynamic soaring UAVs Naseem Akhtar James F Whidborne Alastair K Cooke Department of Aerospace Sciences, Cranfield University, Bedfordshire MK45 AL, UK. email:n.akhtar@cranfield.ac.uk

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

MAE SUMMER 2015 HOMEWORK 1 SOLUTION

MAE SUMMER 2015 HOMEWORK 1 SOLUTION MAE 04 - SUMMER 205 HOMEWORK SOLUTION Problem :. Plot the drag coefficient, c D, the aerodynamic efficiency, AE, and the center of pressure, x cp, of the airplane as a function of the angle of attack.

More information

Robotic Mobility Atmospheric Flight

Robotic Mobility Atmospheric Flight Robotic Mobility Atmospheric Flight Gaseous planetary environments (Mars, Venus, Titan)! Lighter-than- air (balloons, dirigibles)! Heavier-than- air (aircraft, rotorcraft) 1 2014 David L. Akin - All rights

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

Written in August 2017 during my holiday in Bulgaria, Sunny Coast

Written in August 2017 during my holiday in Bulgaria, Sunny Coast Electric ucted Fan Theory This paper describes a simple theory of a ducted fan. It is assumed that the reader knows what it is an electric ducted fan (EF), how it works, and what it is good for. When I

More information

Robotic Mobility Atmospheric Flight

Robotic Mobility Atmospheric Flight Gaseous planetary environments (Mars, Venus, Titan) Lighter-than- air (balloons, dirigibles) Heavier-than- air (aircraft, rotorcraft) 1 2018 David L. Akin - All rights reserved http://spacecraft.ssl.umd.edu

More information

AE Stability and Control of Aerospace Vehicles

AE Stability and Control of Aerospace Vehicles AE 430 - Stability and ontrol of Aerospace Vehicles Static/Dynamic Stability Longitudinal Static Stability Static Stability We begin ith the concept of Equilibrium (Trim). Equilibrium is a state of an

More information

The Fighter of the 21 st Century. Presented By Michael Weisman Configuration Aerodynamics 4/23/01

The Fighter of the 21 st Century. Presented By Michael Weisman Configuration Aerodynamics 4/23/01 The Fighter of the 21 st Century Presented By Michael Weisman Configuration Aerodynamics 4/23/01 1 Joint Strike Fighter (JSF) Program Its purpose is to develop and field an affordable and highly common

More information

Study. Aerodynamics. Small UAV. AVL Software

Study. Aerodynamics. Small UAV. AVL Software Study of the Aerodynamics of a Small UAV using AVL Software Prepared For: Prof. Luis Bernal Prepared By: Paul Dorman April 24, 2006 Table of Contents Introduction.1 Aerodynamic Data...2 Flight Assessment..

More information

AOE Problem Sheet 9 (ans) The problems on this sheet deal with an aircraft with the following properties:

AOE Problem Sheet 9 (ans) The problems on this sheet deal with an aircraft with the following properties: AOE Problem Sheet 9 (ans) The problems on this sheet deal with an aircraft with the following properties: W = 600,000 lbs T_max~=~180,000 lbs S = 5128 ft 2 = 0.017 K = 0.042 = 2.2 TSFC = 0.85 (lbs/hr)/lb

More information

Performance Flight Testing of Small Electric Powered Unmanned Aerial Vehicles

Performance Flight Testing of Small Electric Powered Unmanned Aerial Vehicles Brigham Young University BYU ScholarsArchive All Faculty Publications 9-9 Performance Flight Testing of Small Electric Powered Unmanned Aerial Vehicles Jon N. Ostler Brigham Young University - Provo W.

More information

Robotic Mobility Atmospheric Flight

Robotic Mobility Atmospheric Flight Robotic Mobility Atmospheric Flight Gaseous planetary environments (Mars, Venus, Titan) Lighter-than- air (balloons, dirigibles) Heavier-than- air (aircraft, rotorcraft) 1 2014 David L. Akin - All rights

More information

Introduction to Aeronautics

Introduction to Aeronautics Introduction to Aeronautics ARO 101 Sections 03 & 04 Sep 30, 2015 thru Dec 9, 2015 Instructor: Raymond A. Hudson Week #8 Lecture Material 1 Topics For Week #8 Airfoil Geometry & Nomenclature Identify the

More information

Mathematical Techniques for Pre-conceptual Design

Mathematical Techniques for Pre-conceptual Design Mathematical Techniques for Pre-conceptual Design Mathematical Modeling in Industry XI IMA University of Minnesota Mentor: John Hoffman, Lockheed Martin Tactical Systems Michael Case 1, Jeff Haack 2, MoonChang

More information

Random Problems. Problem 1 (30 pts)

Random Problems. Problem 1 (30 pts) Random Problems Problem (3 pts) An untwisted wing with an elliptical planform has an aspect ratio of 6 and a span of m. The wing loading (defined as the lift per unit area of the wing) is 9N/m when flying

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

I would re-name this chapter Unpowered flight The drag polar, the relationship between lift and drag.

I would re-name this chapter Unpowered flight The drag polar, the relationship between lift and drag. Chapter 3 - Aerodynamics I would re-name this chapter Unpowered flight The drag polar, the relationship between lift and drag. Aerodynamically: = and = So the lift and drag forces are functions of 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

Chapter 4 Estimation of wing loading and thrust loading - 7 Lecture 15 Topics

Chapter 4 Estimation of wing loading and thrust loading - 7 Lecture 15 Topics Chapter 4 Estimation of wing loading and thrust loading - 7 Lecture 15 Topics 4.12 Introductory remarks on choice of engine 4.13 Engines considered for airplane applications 4.14 Piston engine-propeller

More information

AEROSPACE ENGINEERING

AEROSPACE ENGINEERING AEROSPACE ENGINEERING Subject Code: AE Course Structure Sections/Units Topics Section A Engineering Mathematics Topics (Core) 1 Linear Algebra 2 Calculus 3 Differential Equations 1 Fourier Series Topics

More information

Consider a wing of finite span with an elliptic circulation distribution:

Consider a wing of finite span with an elliptic circulation distribution: Question 1 (a) onsider a wing of finite span with an elliptic circulation distribution: Γ( y) Γo y + b = 1, - s y s where s=b/ denotes the wing semi-span. Use this equation, in conjunction with the Kutta-Joukowsky

More information

ν δ - 1 -

ν δ - 1 - ν δ - 1 - δ ν ν δ ν ν - 2 - ρ δ ρ θ θ θ δ τ ρ θ δ δ θ δ δ δ δ τ μ δ μ δ ν δ δ δ - 3 - τ ρ δ ρ δ ρ δ δ δ δ δ δ δ δ δ δ δ - 4 - ρ μ ρ μ ρ ρ μ μ ρ - 5 - ρ τ μ τ μ ρ δ δ δ - 6 - τ ρ μ τ ρ μ ρ δ θ θ δ θ - 7

More information

Mestrado Integrado em Engenharia Mecânica Aerodynamics 1 st Semester 2012/13

Mestrado Integrado em Engenharia Mecânica Aerodynamics 1 st Semester 2012/13 Mestrado Integrado em Engenharia Mecânica Aerodynamics 1 st Semester 212/13 Exam 2ª época, 2 February 213 Name : Time : 8: Number: Duration : 3 hours 1 st Part : No textbooks/notes allowed 2 nd Part :

More information

The Physics of Low-Altitude Aerobatic Flying By: Eric Boyd. SPH 3U Mr. Leck

The Physics of Low-Altitude Aerobatic Flying By: Eric Boyd. SPH 3U Mr. Leck The Physics of Low-Altitude Aerobatic Flying By: Eric Boyd SPH 3U Mr. Leck Submitted: December 19, 2008 Introduction For over half a century, large amounts of the public have come to watch a series of

More information

PRINCIPLES OF FLIGHT

PRINCIPLES OF FLIGHT 1 Considering a positive cambered aerofoil, the pitching moment when Cl=0 is: A infinite B positive (nose-up). C negative (nose-down). D equal to zero. 2 The angle between the aeroplane longitudinal axis

More information

Chapter 4 The Equations of Motion

Chapter 4 The Equations of Motion Chapter 4 The Equations of Motion Flight Mechanics and Control AEM 4303 Bérénice Mettler University of Minnesota Feb. 20-27, 2013 (v. 2/26/13) Bérénice Mettler (University of Minnesota) Chapter 4 The Equations

More information

JAA Administrative & Guidance Material Section Five: Licensing, Part Two: Procedures

JAA Administrative & Guidance Material Section Five: Licensing, Part Two: Procedures Introduction: 1 - To fully appreciate and understand subject 032 Performance (Aeroplanes), the applicant will benefit from background knowledge in Subject 081 Principles of Flight (Aeroplanes). 2 For JAR-FCL

More information

Figure 3.71 example of spanwise loading due to aileron deflection.

Figure 3.71 example of spanwise loading due to aileron deflection. 3.7 ILERON DESIGN 3.7.1 Introduction It s very important for preliminary design to analyze the roll and turn performances of the aircraft, paying attention on its use and category. the system used for

More information

( ) (where v = pr ) v V

( ) (where v = pr ) v V Problem # The DOF idealized wing whose cross-section is shown in Figure. has leading edge and trailing edge control surfaces. There is no initial angle of attack when the two control surfaces are undeflected.

More information

Performance. 5. More Aerodynamic Considerations

Performance. 5. More Aerodynamic Considerations Performance 5. More Aerodynamic Considerations There is an alternative way of looking at aerodynamic flow problems that is useful for understanding certain phenomena. Rather than tracking a particle of

More information

Chapter 9. Nonlinear Design Models. Beard & McLain, Small Unmanned Aircraft, Princeton University Press, 2012, Chapter 9, Slide 1

Chapter 9. Nonlinear Design Models. Beard & McLain, Small Unmanned Aircraft, Princeton University Press, 2012, Chapter 9, Slide 1 Chapter 9 Nonlinear Design Models Beard & McLain, Small Unmanned Aircraft, Princeton University Press, 2012, Chapter 9, Slide 1 Architecture Destination, obstacles Waypoints Path Definition Airspeed, Altitude,

More information

arxiv: v2 [math.oc] 13 Sep 2017

arxiv: v2 [math.oc] 13 Sep 2017 A Simple Solution for Maximum Range Flight Robert Schaback 1 Draft of September 14, 217 arxiv:17.646v2 [math.oc] 13 Sep 217 Abstract: Within the standard framework of quasi-steady flight, this paper derives

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

FLIGHT DYNAMICS. Robert F. Stengel. Princeton University Press Princeton and Oxford

FLIGHT DYNAMICS. Robert F. Stengel. Princeton University Press Princeton and Oxford FLIGHT DYNAMICS Robert F. Stengel Princeton University Press Princeton and Oxford Preface XV Chapter One Introduction 1 1.1 ELEMENTS OF THE AIRPLANE 1 Airframe Components 1 Propulsion Systems 4 1.2 REPRESENTATIVE

More information

Aerodynamic Design of VTOL MAV

Aerodynamic Design of VTOL MAV Aerodynamic Design of VTOL MAV Sergey Shkarayev The University of Arizona, Tucson, AZ, USA Jean-Marc Moschetta and Boris Bataille SUPAERO, Toulouse, France This work is sponsored by AFRL, Eglin AFB and

More information

Optimal Pitch Thrust-Vector Angle and Benefits for all Flight Regimes

Optimal Pitch Thrust-Vector Angle and Benefits for all Flight Regimes NASA/TM-2000-209021 Optimal Pitch Thrust-Vector Angle and Benefits for all Flight Regimes Glenn B. Gilyard Dryden Flight Research Center Edwards, California Alexander Bolonkin Senior Research Associate

More information

Aircraft Flight Dynamics & Vortex Lattice Codes

Aircraft Flight Dynamics & Vortex Lattice Codes Aircraft Flight Dynamics Vortex Lattice Codes AA241X April 14 2014 Stanford University Overview 1. Equations of motion 2. Non-dimensional EOM Aerodynamics 3. Trim Analysis Longitudinal Lateral 4. Linearized

More information

Dynamics and Control Preliminary Examination Topics

Dynamics and Control Preliminary Examination Topics Dynamics and Control Preliminary Examination Topics 1. Particle and Rigid Body Dynamics Meirovitch, Leonard; Methods of Analytical Dynamics, McGraw-Hill, Inc New York, NY, 1970 Chapters 1-5 2. Atmospheric

More information

Missile Interceptor EXTROVERT ADVANCED CONCEPT EXPLORATION ADL P Ryan Donnan, Herman Ryals

Missile Interceptor EXTROVERT ADVANCED CONCEPT EXPLORATION ADL P Ryan Donnan, Herman Ryals EXTROVERT ADVANCED CONCEPT EXPLORATION ADL P- 2011121203 Ryan Donnan, Herman Ryals Georgia Institute of Technology School of Aerospace Engineering Missile Interceptor December 12, 2011 EXTROVERT ADVANCED

More information

AE 451 Aeronautical Engineering Design I Aerodynamics. Prof. Dr. Serkan Özgen Dept. Aerospace Engineering December 2017

AE 451 Aeronautical Engineering Design I Aerodynamics. Prof. Dr. Serkan Özgen Dept. Aerospace Engineering December 2017 AE 451 Aeronautical Engineering Design I Aerodynamics Prof. Dr. Serkan Özgen Dept. Aerospace Engineering December 2017 Lift curve 2 Lift curve slope 3 Subsonic lift curve slope C Lα = 2 + 4 + AR2 β 2 η

More information

AE 451 Aeronautical Engineering Design I Aerodynamics. Prof. Dr. Serkan Özgen Dept. Aerospace Engineering December 2015

AE 451 Aeronautical Engineering Design I Aerodynamics. Prof. Dr. Serkan Özgen Dept. Aerospace Engineering December 2015 AE 451 Aeronautical Engineering Design I Aerodynamics Prof. Dr. Serkan Özgen Dept. Aerospace Engineering December 2015 Lift curve 2 Lift curve slope 3 Subsonic lift curve slope C Lα = 2 + 4 + AR2 β 2 η

More information

9.4 Miscellaneous topics flight limitations, operating envelop and V-n diagram Flight limitations Operating envelop 9.4.

9.4 Miscellaneous topics flight limitations, operating envelop and V-n diagram Flight limitations Operating envelop 9.4. Chapter 9 Lecture 31 Performance analysis V Manoeuvres 4 Topics 9.4 Miscellaneous topics flight limitations, operating envelop and V-n diagram 9.4.1 Flight limitations 9.4.2 Operating envelop 9.4.3 V-n

More information

Introduction to Aerospace Engineering

Introduction to Aerospace Engineering Introduction to Aerosace Engineering Lecture slides hallenge the future Introduction to Aerosace Engineering Aerodynamics & Prof. H. Bijl ir. N. Timmer &. Airfoils and finite wings Anderson 5.9 end of

More information

CDS 101/110a: Lecture 8-1 Frequency Domain Design

CDS 101/110a: Lecture 8-1 Frequency Domain Design CDS 11/11a: Lecture 8-1 Frequency Domain Design Richard M. Murray 17 November 28 Goals: Describe canonical control design problem and standard performance measures Show how to use loop shaping to achieve

More information

Maneuver of fixed-wing combat aircraft

Maneuver of fixed-wing combat aircraft Loughborough University Institutional Repository Maneuver of fixed-wing combat aircraft This item was submitted to Loughborough University's Institutional Repository by the/an author. Citation: RENDER,

More information

Experimental Aircraft Parameter Estimation

Experimental Aircraft Parameter Estimation Experimental Aircraft Parameter Estimation AA241X May 14 2014 Stanford University Overview 1. System & Parameter Identification 2. Energy Performance Estimation Propulsion OFF Propulsion ON 3. Stability

More information

OPERATIONAL USAGE AND FLIGHT LOADS STUDY OF GLOBAL EXPRESS XRS BUSINESS JET. A Thesis by. Alhambra L. Yee

OPERATIONAL USAGE AND FLIGHT LOADS STUDY OF GLOBAL EXPRESS XRS BUSINESS JET. A Thesis by. Alhambra L. Yee OPERATIONAL USAGE AND FLIGHT LOADS STUDY OF GLOBAL EXPRESS BUSINESS JET A Thesis by Alhambra L. Yee Bachelor of Science, Boston University, 2006 Submitted to the Department of Aerospace Engineering and

More information

Masters in Mechanical Engineering Aerodynamics 1 st Semester 2015/16

Masters in Mechanical Engineering Aerodynamics 1 st Semester 2015/16 Masters in Mechanical Engineering Aerodynamics st Semester 05/6 Exam st season, 8 January 06 Name : Time : 8:30 Number: Duration : 3 hours st Part : No textbooks/notes allowed nd Part : Textbooks allowed

More information

Aero-Propulsive-Elastic Modeling Using OpenVSP

Aero-Propulsive-Elastic Modeling Using OpenVSP Aero-Propulsive-Elastic Modeling Using OpenVSP August 8, 213 Kevin W. Reynolds Intelligent Systems Division, Code TI NASA Ames Research Center Our Introduction To OpenVSP Overview! Motivation and Background!

More information

Aircraft Pitch Control Design Using Observer-State Feedback Control

Aircraft Pitch Control Design Using Observer-State Feedback Control KINETIK, Vol. 2, No. 4, November 217, Pp. 263-272 ISSN : 253-2259 E-ISSN : 253-2267 263 Aircraft Pitch Control Design Using Observer-State Feedback Control Hanum Arrosida *1, Mohammad Erik Echsony 2 1,2

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

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

Design, Analysis and Research Corporation (DARcorporation) ERRATA: Airplane Flight Dynamics and Automatic Flight Controls Part I

Design, Analysis and Research Corporation (DARcorporation) ERRATA: Airplane Flight Dynamics and Automatic Flight Controls Part I Design, Analysis and Research Corporation (DARcorporation) ERRATA: Airplane Flight Dynamics and Automatic Flight Controls Part I Copyright 00 by Dr. Jan Roskam Year of Print, 00 (Errata Revised August

More information

DEPARTMENT OF AEROSPACE ENGINEERING, IIT MADRAS M.Tech. Curriculum

DEPARTMENT OF AEROSPACE ENGINEERING, IIT MADRAS M.Tech. Curriculum DEPARTMENT OF AEROSPACE ENGINEERING, IIT MADRAS M.Tech. Curriculum SEMESTER I AS5010 Engg. Aerodyn. & Flt. Mech. 3 0 0 3 AS5020 Elements of Gas Dyn. & Propln. 3 0 0 3 AS5030 Aircraft and Aerospace Structures

More information

Giovanni Tarantino, Dipartimento di Fisica e Tecnologie Relative, Università di Palermo (Italia)

Giovanni Tarantino, Dipartimento di Fisica e Tecnologie Relative, Università di Palermo (Italia) THE INTERACTIVE PHYSICS FLIGHT SIMULATOR Giovanni Tarantino, Dipartimento di Fisica e Tecnologie Relative, Università di Palermo (Italia) Abstract This paper describes a modelling approach to the dynamics

More information

Multidisciplinary Design Optimization of a Heavy-Lift Helicopter Rotor in Hover

Multidisciplinary Design Optimization of a Heavy-Lift Helicopter Rotor in Hover Multidisciplinary Design Optimization of a Heavy-Lift Helicopter Rotor in Hover by Smith Thepvongs (Structural Optimization) Robert Wohlgemuth (Aerodynamic Optimization) 04-26-2004 Professor Panos Y. Papalambros

More information

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER

Objectives. Power in Translational Systems 298 CHAPTER 6 POWER Objectives Explain the relationship between power and work. Explain the relationship between power, force, and speed for an object in translational motion. Calculate a device s efficiency in terms of the

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

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

Flight Dynamics and Control

Flight Dynamics and Control Flight Dynamics and Control Lecture 1: Introduction G. Dimitriadis University of Liege Reference material Lecture Notes Flight Dynamics Principles, M.V. Cook, Arnold, 1997 Fundamentals of Airplane Flight

More information

Alternative Expressions for the Velocity Vector Velocity restricted to the vertical plane. Longitudinal Equations of Motion

Alternative Expressions for the Velocity Vector Velocity restricted to the vertical plane. Longitudinal Equations of Motion Linearized Longitudinal Equations of Motion Robert Stengel, Aircraft Flig Dynamics MAE 33, 008 Separate solutions for nominal and perturbation flig paths Assume that nominal path is steady and in the vertical

More information

TAKEOFF CONSIDERATIONS...

TAKEOFF CONSIDERATIONS... CHAPTER 4 TAKEOFFS TAKEOFF CONSIDERATIONS.................. 2-37 AIRSPEED.................................. 2-37 TAKEOFF POWER............................ 2-38 RUNWAY LENGTH REQUIREMENT.............. 2-39

More information

Flight Dynamics and Control. Lecture 3: Longitudinal stability Derivatives G. Dimitriadis University of Liege

Flight Dynamics and Control. Lecture 3: Longitudinal stability Derivatives G. Dimitriadis University of Liege Flight Dynamics and Control Lecture 3: Longitudinal stability Derivatives G. Dimitriadis University of Liege Previously on AERO0003-1 We developed linearized equations of motion Longitudinal direction

More information

Find the flow rate of water at 60 F in each pipe. The valve shown in completely closed, neglect minor losses.

Find the flow rate of water at 60 F in each pipe. The valve shown in completely closed, neglect minor losses. Kevin Lis Fluid Mechanics MET 330 Test #3 Page Number: 1 1. Purpose #1 Find the flow rate of water at 60 F in each pipe. The valve shown in completely closed, neglect minor losses. 2. Drawing & Diagrams

More information

Entry Aerodynamics MARYLAND U N I V E R S I T Y O F. Entry Aerodynamics. ENAE Launch and Entry Vehicle Design

Entry Aerodynamics MARYLAND U N I V E R S I T Y O F. Entry Aerodynamics. ENAE Launch and Entry Vehicle Design Atmospheric Regimes on Entry Basic fluid parameters Definition of Mean Free Path Rarified gas Newtonian flow Continuum Newtonian flow (hypersonics) 2014 David L. Akin - All rights reserved http://spacecraft.ssl.umd.edu

More information