Thrust Available and Thrust Required at 10,000 ft

Develop a graph for thrust required and thrust available at 10,000 ft.

You could probably adjust the x-axis a little more to remove some of the whitespaces, but the first graph looks good, and it will help to have space later.

You want to create three subplots to be shown that represent each altitude, so you need to tell Matplotlib that you want to make subplots. After the inputs but before the sea level code, add:

plt.subplot(3, 1, 1)

You are telling Matplotlib that you intend to have 3 rows and 1 column, and this section is the first subplot you are creating. The graph, when complete, should look something like this:

Column 1
Row 1 Sea Level graph
Row 2 10,000 ft graph
Row 3 FL350 graph

Get hands-on with 1200+ tech skills courses.