In the previous sections we explained that we are going to generate our own performance data by doing some really basic flight tests. The idea is to gather data for these profiles:
climb
cruise
descent
holding
And to do it for three aircraft weights:
heavy (174,000 lbs)
medium (173,000 lbs)
light (100,000 lbs)
Plus one bonus test: gather fuel consumption data for taxiing with APU on.
So we will perform a total of ( 4 x 3 ) + 1 = 13 tests.
For these tests, we are looking to establish:
fuel consumption rates (lb/hr)
true airspeeds (KTAS)
climb and descent rates (ft/min)
Although these values depend on many parameters, we are simplifying by only varying the aircraft weight.
We will not repeat the tests for varied atmospheric conditions like pressure and temperature
We will set the aircraft weight by setting a fuel and payload combination at the flight creation step that gives the desired total weight
We will not consider CG position
The climb tests will be flown from 5,000 ft MSL up to 30,000 ft MSL
The descent tests will be flown from 30,000 ft down to 5,000 ft MSL
We will fly the profiles that were established in the requirements section, repeated here for a reminder:
Climb profile: fixed power setting 98% N1; 240 KIAS below 10,000 ft MSL, 280 KIAS above 10,000 ft MSL
Cruise profile: 30,000 ft MSL, 300 KIAS
Descent profile: fixed power setting 35% N1; 280 KIAS above 10,000 ft MSL, 240 KIAS below 10,000 ft
We will add one new profile: hold profile: 5,000 ft MSL, 200 KIAS
To record flight data in X-Plane 11,
Go to Settings → Data Output
Click the items you want to output to file by checking off the boxes under the Disk column
Set the output rate on the Disk Rate slider
These are the fields I selected for export:
Times
Speeds
Mach, VVI, g-load
Weather
Pitch, roll and headings
Latitude, Longitude and altitude
Location, velocity and distance traveled
Throttle (commanded)
Engine Power
N1
N2
Fuel Flow
Fuel Weights
Payload weights and center of gravity (CG)
APU & GPU status
I used an output rate of 0.1 Hz, which means one write every 10 seconds.
X-Plane will write the data to Data.txt in the directory shown below. If Data.txt does not exist, X-Plane will create it as soon as the flight is running. I removed this file after every test case in order to have 13 separate test files, to avoid having to separate the data manually later.
In the next section we will show how we processed this collected data.