Embraer E-190 Payload Range Diagram Tutorial

1) Locate the tutorial script folder.

2) Open the tut_payload_range.py script in your favorite editor or IDE.

3) Similar to the B737-800 Tutorial, the setup is divided into steps.

4) For the Payload Range Diagram, besides the vehicle and mission, the user must provide the following inputs:

  • cruise_segment_tag: You must enter the tag of the segment which will have its length modified in order to comply with required fuel burn for each one of the payload range diagram points.
  • reserves: This will be considered as a fixed fuel reserve for all the diagram points.

5) The tutorial presents the following definition:

# run payload diagram	
cruise_segment_tag = "Cruise"
reserves = 1750.
payload_range_results = payload_range(vehicle,mission,cruise_segment_tag,reserves)

6) First, let’s just run it as it is for now. Run the script in either the IDE or in a terminal as

python tut_payload_range.py

7) After the calculations are completed, the payload diagram will be plotted and the data will be stored in a file named ‘PayloadRangeDiagram.dat’. This is located in the folder with the script that you just ran.

8) You can try to modify vehicle and/or mission parameters and see how the payload range diagram is affected. For now, let’s add some drag counts to the airplane:

  • Locate
    base_analysis()
    and then the Aerodynamics Analysis text block (line 114)
  • Add 50 drag counts to the vehicle (line 116):
    aerodynamics.settings.drag_coefficient_increment = 0.0050 
  • Rerun the script as before and notice the changes in the results.

9) Similarly the mission parameters can be changed. Again, this lets the user decide what changes they want to explore.