draft

Questions and Solutions

The following comprises the theory that I expect you to have absorbed and be fluent in over the preceding module. Some questions have wordy answers whilst others have numerical answers. The numerical answers are provided, and the method is hidden in dropdowns in some cases, and completely hidden in the source ipynb notebooks in other cases.

A lot of the theory questions ask you to derive something. I do not include solutions to these questions - they are all ‘bookwork’ which is included in the notes. If you’re not able to answer them, ask on Slack.

Remember that you are expected to be writing your own code snippets rather than simply using this website as a calculator. I might be a real bastard and turn off the live code functionality during certain exams to enforce that.

Background Questions

These are not directly taught in this course, per se, but will prove your abilities to analyse aircraft data in order to even start the problems in Module 1. The following will test your understanding of the drag polar.

WT Data

A test is carried out on a 1:20 scale model of an aircraft in an atmospheric wind tunnel (ie ρ=ρSL\rho = \rho_{SL} in the working section) at a speed of 20m/s. The model has a rectangular wing with a span of 1.70m and a chord of 0.24m.

α/\alpha/^\circ-6-30369121518
LN1L\,\text{N}^{-1}-250255075100125135115
DN1D\,\text{N}^{-1}1.91.61.92.84.36.49.113.819.2

Perform the following data analysis and presentation:

  • Evaluate CLC_L and CDC_D for each incidence.
  • Plot CDC_D against CLC_L.
  • Plot lift/drag ratio CLC_L/CDC_D against CLC_L
  • Plot CDC_D against CL2C_L^2.

and using these graphs, estimate:

  • The lift curve slope aa.
  • The zero-lift incidence α0L\alpha_{0L}.
  • The lift coefficient at zero lift, CL0C_{L0}
  • The induced drag factors KK and kk.
  • The zero lift drag CD0C_{D0} (you can assume camber is negligible)
  • The maximum lift/drag ratio.
  • The approximate stall angle αs\alpha_s.
  • The maximum lift CLmaxC_{Lmax}

Conversion to flight data

The wind tunnel model described above is of an aircraft which weighs 300kN at full scale. It flies at maximum L/D at a height for which σ\sigma = 0.25.

Determine the following:

  1. The aircraft angle of attack
  2. The airspeed, VV, and the required power at this condition
  3. The minimum flight speed at this altitude
  4. If the aircraft can produce 100kN thrust at sea level, what is the maximum speed at the altitude in the question
  5. Comment on the answer to (4), and whether it is a realistic value.

The solutions are included below - note there is a choice to make in the equations regarding drag polar, which relate to the sparsity of the data. The CL,mdC_{L,md} can be taken from the raw data or from the drag model. Looking at the drag polar above, and the lift-to-drag ratio, to which both have been added, I think you can reasonably use the drag model but either value is acceptable.

Level Flight

Understanding the drag model

The basic non-dimensional drag equation for an aircraft at low speed is:

CD=CD0+KCL2=CD0+kπARCL2\begin{align*} C_D &= C_{D0} + K\cdot C_L^2\\ &= C_{D0} + \frac{k}{\pi\cdot AR}C_L^2 \end{align*}

Describe the significant of each term in the equation.

Understanding EAS

Explain the concept of Equivalent Air Speed (EAS). Writing the drag equation in dimensional form, demonstrate that using EAS enables us to plot a single curve of drag vs. speed for all altitudes. Include in your answer a sketch of the variation of drag with speed.

Understanding power required

Determine the lift coefficient and drag coefficient when flying at minimum \textsl{power}, and hence show that the corresponding true airspeed is:

\begin{equation*} V_{mp} = \left[\frac{2W}{\rho S}\right]^{\tfrac{1}{2}}\left[\frac{K}{3\cdot C_{D0}}\right]^{\tfrac{1}{4}} \end{equation*}

Numerical Drag Equation Manipulation

A jet trainer has the drag equation:

\begin{equation*} C_D = 0.018 + 0.016\cdot C_L^2 \end{equation*}

and a minimum power speed of 60m/s EAS. What is the thrust to weight ratio required to cruise at 200m/s EAS?

Minimum drag speed derivation

Working from first principles show that the the expression for the minimum drag speed of a conventional aircraft is given by:

\begin{equation*} V_{MD} = \left[\frac{2W}{\rho S}\right]^{\tfrac{1}{2}}\left[\frac{K}{C_{D0}}\right]^{\tfrac{1}{4}} \end{equation*}

where all the symbols have their usual meaning. You can assume a knowledge of the lift and drag coefficients’ meaning and definitions.

Numerical Minimum Drag Speed

An aircraft with a wing area of 20m2^2 and drag given by CD0=0.015C_{D0}=0.015 and K=0.04K=0.04 is flying at an altitude of 6km, at its minimum drag speed.

If the engine thrust is 2500N, what is the speed and weight of the aircraft?

The thrust is now increased by 10%, find:

  1. The new steady flight speed if the aircraft is held level at the same altitude.

  2. If the lift curve slope is 5.7/rad, what change in aerodynamic incidence is required to maintain level flight at these new speeds

  3. The steady rate of climb, and the climb angle achieved if the aircraft’s speed is unchanged.

The hidden sections below correspond to solution, and answer for parts 1 through 3.