Project 1A: Low Altitude Climb

Problem Statement

The aircraft of Problem 5 is required by the FAA to climb out at speeds less than 250 knots EAS when below 10,000 ft. Assume the aircraft flies at this flight speed, taking off from sea level.
Calculate thrust required/thrust available characteristics at at least 5 altitudes, sufficient to determine:
  1. Rate of climb in ft/min vs altitude from sea level to 10,000 ft
  2. Time to climb vs altitude
You may use steady level flight Power Curves for the climb conditions.

Submit:

  1. A report guided by the format given here
  2. Plot of flight speed vs altitude
  3. Plot of rate of climb vs altitude
  4. Plot of time to climb vs altitude
  5. Power required/Power available curve at sea level, 5000 ft, 10000 ft

  6. Mark the flight speed on each plot
  7. Printout of
Notes:
Code for Climb should be written as a subroutine (or function in C)
A main program then will call
an input subroutine,
the climb subroutine and
an output subroutine.
Code should be well-documented with appropriate comments with liberal use of subroutine (or function) routines.
See below for an example of how the main program code might develop as we proceed through the semester.
You are only doing Phase 3 for now.
You may wish to name the subroutine CLIMBOUT instead of PHASE2
      PROGRAM EXAMPLE
****  A SMALL COMMERCIAL JET
      INCLUDE ../inc/COMMON.INC
      IMPLICIT NONE 
                                                        
          CALL INPUT

****  PHASE 1 STARTUP AND TAKEOFF                                       
          CALL PHASE1                                 
****  PHASE 2 CLIMBOUT                                  
          CALL PHASE2                                  
****  PHASE 3 CRUISE TO DESTINATION
          CALL PHASE3                                  
****  PHASE 4 DESCEND AND LAND
          CALL PHASE4                                   
****  OUTPUT DATA
          CALL OUTPUT 
          STOP
          END

Due:Friday, Mar 5, 2:00 PM