Next Article in Journal
State-of-the-Art and Advancement Paths for Inductive Pulsed Plasma Thrusters
Next Article in Special Issue
In-Flight Aircraft Trajectory Optimization within Corridors Defined by Ensemble Weather Forecasts
Previous Article in Journal
Thermoelastic Response of Closed Cylindrical Shells in a Supersonic Gas Flow
Previous Article in Special Issue
Evaluation of Asphalt Concrete Airport Pavement Conditions Based on the Airfield Pavement Condition Index (APCI) in Scope of Flight Safety
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

OpenAP: An Open-Source Aircraft Performance Model for Air Transportation Studies and Simulations

Faculty of Aerospace Engineering, Delft University of Technology, Kluyverweg 1, 2629 HS Delft, The Netherlands
*
Author to whom correspondence should be addressed.
Aerospace 2020, 7(8), 104; https://doi.org/10.3390/aerospace7080104
Submission received: 19 May 2020 / Revised: 20 July 2020 / Accepted: 20 July 2020 / Published: 23 July 2020
(This article belongs to the Collection Air Transportation—Operations and Management)

Abstract

:
Air traffic simulations serve as common practice to evaluate different concepts and methods for air transportation studies. The aircraft performance model is a key element that supports these simulation-based studies. It is also an important component for simulation-independent studies, such as air traffic optimization and prediction studies. Commonly, contemporary studies have to rely on proprietary aircraft performance models that restrict the redistribution of the data and code. To promote openness and research comparability, an alternative open performance model would be beneficial for the air transportation research community. In this paper, we introduce an open aircraft performance model (OpenAP). It is an open-source model that is based on a number of our previous studies, which were focused on different components of the aircraft performance. The unique characteristic of OpenAP is that it was built upon open aircraft surveillance data and open literature models. The model is composed of four main components, including aircraft and engine properties, kinematic performances, dynamic performances, and utility libraries. Alongside the performance model, we are publishing an open-source toolkit to facilitate the use of this model. The main objective of this paper is to describe each main component, their connections, and how they can be used for simulation and research in practice. Finally, we analyzed the performance of OpenAP by comparing it with an existing performance model and sample flight data.

1. Introduction

Many current air traffic management studies are aimed at solving the challenges caused by the increasing demand for air transportation. In the likely future scenario wherein air transportation is continuously being utilized more, innovative strategies will have to be investigated to maintain the safety and efficiency of flights, while keeping up with the growing capacity demand. To evaluate different concepts, large-scale air traffic simulations with future air traffic density need to be undertaken. Though several commercial air traffic simulators exist, the growing demand for more transparency in research data and research tools has made the open-source option stand out. For example, BlueSky [1], an open-source air traffic simulator, has become popular in the air traffic management research community.
Among other things, the aircraft performance model constitutes a core part of traffic simulators. The domain of aircraft performance or flight mechanics studies characteristics of aircraft such as speed, altitude, thrust, drag, and fuel consumption. Based on the aircraft dynamic model, it provides methods with which to compute flight trajectories. Many air traffic management studies are dependent on the aircraft performance model. Currently, many of these studies depend on the proprietary model Base of Aircraft Data (BADA), including BADA 3 and BADA 4 [2,3]. No comparable open alternative to BADA is available. One also developed by Eurocontrol, the General Aircraft Modelling Environment (GAME) is a kinematic-only performance model [4] that can be used for air transport research. Compared to BADA, it is less frequently used by air transport researchers. Previous research in [5] has produced a simplified aircraft performance model, named COALA, which uses part of the BADA model data. From the aviation industry, almost all aircraft manufacturers provide commercial performance data and tools for their aircraft. For example, Airbus has developed the Performance Engineering Programs (PEP) [6] that can be used as a standalone software tool. In addition, third-party commercial tools that model aircraft performance also exist. One of the examples is PIANO software [7].
Due to the proprietary nature of these models and tools though, users are limited by the strict license agreements, which makes it difficult to redistribute and to use the models commercially or openly. For open-source projects like BlueSky, lacking a performance model that can be redistributed would pose a challenge for sharing the tool as a complete open simulator. In earlier research, we built a preliminary performance model that is purely based on models from the literature [8]. However, the lack of up-to-date information led to the research completed in this paper.
In this paper, we present an open aircraft performance model, OpenAP, which can be used as an alternative to BADA for future air traffic management studies. It is a model produced by the combination of open data, literature models, and estimated parameters originating from open data. The processes of obtaining different model components have been previously published by the authors, which are discussed and summarized in later sections. Our final goal is to provide an open model that can be used, distributed, and modified freely under an open-source license. Additionally, a toolkit is to be published alongside this paper (available at: https://github.com/tudelft-cns-atm/openap). The OpenAP toolkit includes both the model data and the python code libraries. It thus allows quick access and model integration in potential applications.
The results presented in this paper largely benefit from the recently expanded adoption of automatic dependent surveillance-broadcast (ADS-B) and Enhanced Mode-S (EHS) technologies. A large quantity of flight data is transmitted by aircraft through these surveillance methods. This data can be freely received by researchers. With this open surveillance data, new opportunities for data-driven modeling emerge. Previous studies have proven the potential of the data-driven method using flight data. Some examples of these studies involve inferring aircraft mass [9,10], filtering and estimating flight states [11], modeling fuel consumption [12], and predicting the performance [13].
For instance, one of the data-driven components in OpenAP is the aircraft kinematic performance model, which is a result of our earlier study [14,15]. The kinematic model deals with parameters such as aircraft speed, altitude, vertical rate, and distances. These parameters can be directly observed from surveillance data. By deploying adequate data mining and estimation methods at different phases of flight, the kinematic performance can be accurately modeled. However, a data-driven approach is not suitable for most of the dynamic performance components, since there are often too many unknowns to solve given the limited set of equations and observables from flight data. The aircraft thrust and fuel flow are two examples. In these cases, we must address the modeling challenge based on engine performance instead of flight data. Literature models and other open data are used for thrust and fuel flow. In general, modeling the dynamic performance components (thrust, drag, and fuel flow) is a crucial component of the studies that led to the publishing of OpenAP.
In the following section of the paper, the details of the different OpenAP components are described. In Section 2, the basis of the OpenAP model and toolkit is explained. In Section 3, the aircraft and engine property model is discussed. In Section 4 and Section 5, the kinematic and dynamic performance models are presented respectively. Other related utility libraries are shown in Section 6. In Section 7, examples and demonstrations of OpenAP are presented. In sections eight and nine, discussion and conclusions are presented.

2. OpenAP Building Blocks

The OpenAP model consists of four main components, which are the aircraft properties, kinematic performances, dynamic performances, and utilities. In each main component, there can be multiple sub-components. Figure 1 shows the structure of OpenAP model at the current stage.
In OpenAP, multiple formats exist to effectively store different types of data. The main file format is YAML format [16], which, according to its developer, is a human-friendly data serialization standard. It is primarily a key-value based document definition that can be easily interpolated by both humans and programming languages. For example, aircraft properties and drag polar models are presented using the YAML file format. YAML is effective for storing a key-value-like data structure but not efficient for larger tabular data. In these cases, the fixed width text files are used. They can be easily processed by computers while still maintaining readability for users. For example, the engine and kinematic performance databases are stored using fixed-width text files.
OpenAP aims to be a practical model with easy applicability. Hence, we have designed the toolkit alongside the model using one of the most common scientific programming languages—Python. The toolkit interacts with the model data and implements the equations for different calculations. It gives other high-level applications easy access to the OpenAP model. For example, one can obtain the aircraft configurations and parameters of a specific engine as shown in Appendix C.1.

3. Aircraft and Engine Properties

Following the previous example, the property module includes aircraft characteristics and engine configurations. It also provides performance data for a large number of engines. Currently, the most common aircraft types are included in this module. A list of supported aircraft is shown in Table A1 of the Appendix A. For each aircraft type, parameters such as dimensions, limits, nominal cruise conditions, and engine options are given. For example, the Airbus A320 aircraft parameters are shown in Appendix B.1.
The unit for dimensions and height in the configuration files is the meter, while the unit for weight is the kilogram. The aircraft data were gathered based on public data from aircraft manufacturers and the literature—for example, in [17,18].
Performance data on around 400 different engines are presented in the OpenAP engine databases (available at /openap/openap/data/engine of the OpenAP repository). Each engine has 11 parameters that are related to its performance. These parameters are indicated in Table 1. The first eight parameters are available for all engines. They are derived based on the ICAO aircraft engine emissions databank [19]. The last three parameters are only available for some engines; they were obtained from [20].

4. Kinematic Performance

The kinematic model studies the motion of the aircraft without considering the force acting on the aircraft. In OpenAP, the kinematic performance database is based on the results of a data-driven statistical model (WRAP) which was proposed in our previous study [15].
The WRAP model divides the flight into seven flight phases. It models different performance parameters at each flight phase accordingly. These performance indicators are acceleration, speed, vertical rate, altitude, and distance. Sorted by the flight phase, the parameters for kinematic performance are listed in Table 2.
By combining all the parameters, the kinematic module can describe the trajectory from takeoff until landing for the aircraft types as listed in Table A1.
The trajectory of the aircraft can be constructed using a set of ordinary differential equations. Under the International Standard Atmosphere (ISA) condition and without wind, the differential equations are expressed as:
d x d t = V sin ψ
d y d t = V cos ψ
d h d t = V S
d V d t = a
where V represents the ground speed of the aircraft, which is the same as true airspeed without wind. It can be computed from either calibrated airspeed or Mach number depending on the flight phase.
The true airspeed can be computed from calibrated airspeed using the following equations:
V = 7 p ρ 1 + q c p 2 7 1
q c = p 0 1 + ρ 0 7 p 0 V cas 2 7 2 1
where q c represents the impact pressure. In cases where the Mach number is given, the true airspeed can be calculated using temperature ( τ ) and speed of sound (a) as:
V = a 0 M τ τ 0
where ρ , p, and τ can be obtained from the ISA model if one knows the altitude of the aircraft. For cases other than ISA, deviations from ISA conditions, such as temperature, pressure, and wind, are considered to compute the actual ground speed. It is worth noting that in real operations, pressure, temperature, and wind can be derived based on aircraft Enhanced Mode S Surveillance (EHS) data and ADS-B data, which is described in detail in [21].
Each parameter from the WRAP kinematic model is provided with a default value, minimum value, maximum value, and parametric statistical model. The minimum and maximum values provide the boundaries of the parameter, while the parametric statistical model can be used to sample values from a given probability density function (normal, gamma, or beta). With the OpenAP toolkit, all kinematic performance parameters can be queried using the functions defined in Appendix C.2. Each of the functions returns the default, minimum, maximum, and parameters to construct the probability density function that reflects the performance indicator. The model default value refers to the most common value for each parameter. The detail on obtaining these parameters can be found in [15].

5. Dynamic Performance

To further extend OpenAP capabilities, the dynamic module is included. In addition to speed, vertical rate, and distance, the dynamic module deals with more performance parameters, specifically, the mass and forces. The main challenge of constructing a complete dynamic model is the lack of open data on aircraft mass, thrust, and drag models. OpenAP accomplishes the goal by using models from the literature and open flight data. Another important part of the dynamic module is to express the fuel consumption of different engines during operation. To achieve this, the ICAO aircraft engine emissions databank was used to construct the fuel flow model.

5.1. Aircraft Dynamic Model

Aircraft motion in OpenAP is defined using a four-degrees-of-freedom point-mass model, which describes the aircraft translations in three perpendicular axes, and the roll rotation. In this point-mass model, the forces are assumed to be applied at the aircraft’s center of gravity. The model can also be expressed with a set of ordinary differential equations. Assuming the ISA and zero wind, these equations can be written as:
d x d t = V sin ψ cos γ
d y d t = V cos ψ cos γ
d h d t = V sin γ
d ψ d t = g tan ϕ V cos γ
d V d t = T D m g sin γ
d m d t = f fuel ( T , h )
The dynamic components introduced in these differential equations are mass, thrust, drag, and fuel flow. In Figure 2, forces acting on the aircraft in the dynamic model are illustrated.
On the left-hand side of the figure, different forces are viewed from the side view. The right-hand side of the figure shows the forces during the banking from the front view. F c refers to the centrifugal force, which is not explicitly expressed in the model.
The net thrust is expressed as the product throttle setting ( δ T ) and the maximum thrust. Based on an empirical model proposed by [22], the maximum thrust of the aircraft ( f thr ) is expressed as a function that is dependent on the aircraft altitude, speed, and vertical rate:
T = δ T f thr ( h , V , V S )
The drag force of the aircraft in Equation (12) can be calculated knowing the dynamic pressure (q), the wing surface (S), and the drag coefficient ( C D ):
D = C D q S
q = 1 2 ρ V 2
The fuel flow model used in Equation (13) is a function that is dependent on the net thrust of the aircraft’s engines. It is constructed using the fuel flow coefficients proposed in the engine performance database that is shown in Table 1. The details of the thrust, drag, and fuel flow models are explained in the rest of this section.

5.2. Thrust

The thrust model included in OpenAP can calculate maximum takeoff thrust and maximum thrust separately during the flight. The key parameters that determine the maximum thrust of the turbofan engine are the maximum static thrust at sea level ( T 0 ), the bypass ratio ( λ ), and the rated engine thrust at cruise. Most numerical coefficients in the thrust equations are obtained empirically from available performance data from multiple engines according to [22].

5.2.1. Takeoff Thrust

Considering the altitude of the runway, the takeoff thrust of an engine is modeled as:
T T 0 = A 0.377 ( 1 + λ ) ( 1 + 0.82 λ ) G 0 Z M + ( 0.23 + 0.19 λ ) X M 2
where the coefficient of the parameter is calculated as follows:
G 0 = 0.0606 λ + 0.6337
A = 0.4327 p p 0 2 + 1.3855 p p 0 + 0.0472
Z = 0.9106 p p 0 3 1.7736 p p 0 2 + 1.8697 p p 0
X = 0.1377 p p 0 3 0.4374 p p 0 2 + 1.3003 p p 0

5.2.2. Climb and Cruise Thrust

The climb is divided into three segments to compute the thrust. The segments are 0–10 k ft, 10–30 k ft, and 30–40 k ft. An additional key parameter is the engine thrust during the cruise at 30 k ft according to [22]. In OpenAP, a small modification is made so that the cruise altitude is not fixed at 30 k ft. Instead, the cruise altitude from the aircraft and engine property module is used.
(i)
For the en-route segment from 30 k ft to 40 k ft, the thrust ratio is modeled as follows:
T T cr = c 1 ln p p cr + c 2
where c 1 and c 2 are calculated as:
c 1 = 0.4204 M M cr + 1.0824 c 2 = M M cr 0.11
(ii)
For the segment from 10 k ft to 30 k ft, the thrust is derived similarly, with the exception that the reference calibrated airspeed is used instead of Mach number. The thrust can be approximated as:
T T cr = c 3 p p cr c 4
where the coefficients c 3 and c 4 are calculated as follows:
c 3 = V c a s V c a s , c r 0.1 c 4 = 0.335 V c a s V c a s , c r + c 5
In order to find the value of c 5 , a look-up table is used in [22]. To simplify the computation, a linear approximation for c 5 is adopted in OpenAP as follows:
c 5 = 2.667 × 10 5 V S + 0.8633
where the unit of V S is in m/s.
(iii)
For the climbing segment from takeoff up to 10 k ft, a linear model is used to approximate the thrust ratio, with respect to the thrust ratio at 30 k ft. The relationship is as follows:
T T cr = c 6 p p cr + T 10 T cr c 6 p 10 p cr
where T 10 is the thrust at 10k ft. It can be computed by first using Equation (24). Coefficient c 6 is introduced to incorporate the variations in speeds and vertical rates. In [22], a look-up table is also used to find the value of c 6 . In OpenAP, a bi-variate polynomial function is constructed to approximate this coefficient instead:
c 6 = 1.2043 × 10 1 V cas V cas , cr 8.8889 × 10 9 V S 2 + 2.4444 × 10 5 V S + 4.7379 × 10 1
where the units of V cas and V S are both in m/s.

5.2.3. Reference Cruise Thrust

One of the parameters used in the thrust model is the rated thrust at cruise altitude ( T cr ). However, this information is not always published by aircraft or engine manufacturers. Available engine reference data are included in the engine performance (shown in Table 1). When T cr is not available, we rely on the empirical model proposed in [20], where the cruise thrust model is constructed for the maximum static thrust as:
T cr = 0.2 T 0 + 890
where the units of T cr and T 0 are both in N.
Using the OpenAP toolkit, the maximum thrust of the aircraft during the flight can be conveniently computed following the example in Appendix C.3.

5.3. Drag

To compute the drag of aircraft, we first need to determine the drag coefficient. The drag coefficient is dependent on the drag polar and the lift. In our previous study [23,24], drag polar models for common aircraft types were estimated (data available at /openap/openap/data/dragpolar of the OpenAP repository).
When an aircraft is airborne, the equations to calculate the drag coefficient are expressed as follows:
C D = C D 0 + k C L 2
C L = L q S = m g cos γ q S
where the zero-lift drag coefficient ( C D 0 ) and lift-induced drag coefficient (k) are provided by OpenAP. In the OpenAP toolkit, these parameters at different flight phases are presented. An example of the drag polar model is shown in Appendix B.2.
Currently, the OpenAP model contains the drag polars for around 20 of the most common aircraft types. For illustration purposes, the drag polars for several common Airbus and Boeing aircraft types are visualized in Figure 3.

5.4. Flaps

In addition to the drag polar of clean configuration, the OpenAP toolkit provides the model to compute the increase in drag coefficient under different flaps configurations. Using an empirical model ([25], p.109), this increase in drag coefficient due to flap deflection can be computed as:
Δ C D , f = λ f c f c 1.38 S f S sin 2 δ f
where c f / c and S f / S are flap to wing chord ratio and flap to wing surface ratio respectively. δ f is the flap deflection angle. When exact c f / c and S f / S are not available, they are both assumed to be 0.15, which is an empirical approximation based on existing aircraft data. λ f is dependent on the type of flaps. According to [25], λ f is set to be 1.7 for plain and split flaps and 0.9 for slotted flaps.
Changes in lift-induced drag coefficient due to flaps can also be modeled. The deflection of flaps affects the Oswald efficiency factor (e). Based on data from several existing aircraft, a linear relationship was found by [26]. The model to calculate such an increase in e due to flaps (denoted as Δ e f ) is:
Δ e f = 0.0046 δ f ( for rear - mounted engines ) Δ e f = 0.0026 δ f ( for wing - mounted engines )

5.5. Compressibility

When an aircraft flies at a higher speed than critical Mach number, the compressibility effect should not be ignored. In OpenAP, the increase of drag coefficient due to wave drag Δ C D , w is modeled as [27]:
Δ C D , w = 0 M M crit 20 ( M M crit ) 4 M > M crit
where M crit is the critical Mach number which is given by OpenAP. In Figure 4, the compressibility effect on drag polar for one aircraft is shown.

5.6. Landing Gear

The landing gear adds a significant amount of drag to an aircraft when it is extended. It is retracted as soon as the aircraft becomes airborne and only extended shortly before landing. There are limited studies that quantify the drag coefficients of aircraft landing gear. In this paper, we adopted the model proposed by [28] to calculate the increased drag coefficient created by landing gear:
Δ C D , g = W S K uc m max 0.215
where W / S is the wing loading, m max refers to the maximum mass of an airplane, and K uc is a factor that relates to the flap deflection angle. In principle, the value of K uc is lower when more flap deflection is applied. This is because the flow velocity along the bottom of the wing decreases when flaps are deployed, which leads to a lower drag on the landing gear. For simplification, it is taken as 3.16 × 10 5 in this paper based on the data provided by [28].

5.7. Final Drag Polar Model

In summary, combining all the components discussed in this section, the zero-lift drag coefficient is calculated as:
C D 0 = C D 0 , c l e a n + Δ C D , f + Δ C D , g + Δ C D , w
Additionally, the lift-induced drag coefficient is calculated as:
k = 1 1 / k c l e a n + π A Δ e f
Knowing the aircraft mass, airspeed, altitude, and flight path angle, the drag of the aircraft can be computed following the example in Appendix C.4.

5.8. Fuel Flow

The engine fuel flow model was constructed based on the public data obtained from the ICAO aircraft engine emissions databank [19]. Fuel flow indicators for most turbofan engines are included in this database. It defines fuel flow under four different conditions, which are takeoff, climb-out, approach, and idle. The power settings of the engine are defined at 100%, 85%, 30%, and 7% of engine maximum power respectively. Under the static sea-level testing condition, engine fuel flow data were obtained and published.
In order to create a model that can compute actual fuel consumption under different thrust, these four data points are fitted with a 3rd-degree polynomial model. The coefficients for the polynomial function are defined as C ff 3 , C ff 2 , and C ff 1 (as shown in Table 1), with the unit of kg/s. The fuel flow profile defines the relationship between fuel flow and percentage of the maximum static thrust. Denoting f fuel , SL as the function representing fuel flow (kg/s) at sea level, the dynamic fuel flow model can be computed knowing the net thrust:
f fuel , SL ( T ) = C ff 3 T T 0 3 + C ff 2 T T 0 2 + C ff 1 T T 0
where all the coefficients and maximum static thrust T 0 of each engine are given in the engine database of OpenAP. For the same amount of thrust, fuel flow increases with altitude. This difference can be seen by the thrust’s specific fuel consumption (SFC) at sea-level and cruise conditions. In Figure 5, the differences for multiple engines are shown.
Based on the limited data on SFC at sea level and cruise altitude, we propose a simplified linear correction factor ( C ff , ch ) that takes into consideration the altitude effect. When SFC is available at the cruise altitude, the correction factor is calculated as:
C ff , ch = SFC CR SFC SL h CR = SFC CR f fuel , SL ( T 0 ) / T 0 h CR unit : k g s × k N × m
where the h CR is the cruise altitude for the corresponding SFC.
Figure 6 illustrates the coefficient for engines with available SFC CR . The mean value was found to be around 6.7 × 10 7 , which is used as a default value for engines where SFC CR is not available.
Combining the fuel flow at sea level and the fuel flow with altitude correction, the dynamic fuel flow can be computed. The final fuel flow model is expressed as:
f fuel ( T , h ) = f fuel , SL ( T ) + C ff , ch × T × h = C ff 3 T T 0 3 + C ff 2 T T 0 2 + C ff 1 T T 0 + C ff , ch × T × h
In OpenAP, the fuel flow can be computed under three conditions: (1) with a known net thrust of all engines; (2) during the takeoff with a known thrust setting and an unknown aircraft mass; (3) during the flight, knowing the mass, speed, altitude, and flight path angle. In general, when net thrust is not known, it can be calculated based on the dynamic model (Equation (12)). Examples of calculating the fuel flow are given in Appendix C.5.

6. Other Databases and Utility Libraries

Besides the core components explained in the earlier sections, OpenAP also provides several utility libraries to facilitate calculations related to aircraft performance.

6.1. Flight Phase

Based on our earlier research [29], the flight phase library enables the easy use of the fuzzy logic flight phase identification algorithm. Providing the trajectory (with time, altitude, speed, and vertical rate), one can obtain corresponding flight phases for the entire trajectory. The flight data are labeled with the ground, climb, cruise, descent, and leveling phases.
Functions in the flight phase library also enable the extraction of specific flight segments among all available flight phases, which are takeoff, initial climb, climb, cruise, descent, final approach, and landing. Examples are shown in Appendix C.6.

6.2. Aeronautical Calculations

Derived from the open-source BlueSky simulator, the aeronautical library provides common calculations related to aircraft performance. For example, this library provides the functions to compute distance and bearing. It is also able to calculate the standard atmospheric conditions at different flight levels. In addition, speed conversions among calibrated airspeed (CAS), true airspeed (TAS), and Mach number (e.g., Equations (5) and (7)) are easily made with this library.

6.3. Navigation Database

The navigation database provides information on airport and navigation data (available at /openap/openap/data/nav of the OpenAP repository). The data in the navigation database are based on the open data published by X-Plane [30]. The navigation library is designed to give easy access to these datasets. For example, the airport location can be queried using its ICAO code. One can also use this library to get the closest airport or fixes of a specific location. Examples are shown in Appendix C.7.

7. Analysis of OpenAP

In this section, analyses are conducted to examine the OpenAP model. Firstly, maximum thrust profiles computed using OpenAP and BADA 3 are compared. Then, using a test flight from the TU Delft Cessna Citation aircraft, both thrust and fuel flow from OpenAP are compared to the onboard data. In addition, the same values are computed from the BADA model to serve as a comparison.

7.1. Trajectory Generation

The OpenAP toolkit comes with a kinematic trajectory generator that can be used to quickly generate a large number of flight trajectories. The generator creates trajectories based on the WRAP kinematic model (Equations (1)–(4)). Users can specify the initial conditions and time step, or leave them to the program. When left to the program, the performance parameter values can be requested as the default values or random values to be drawn from the corresponding probability density function. When a complete trajectory needs to be generated, speed profiles of the climb, cruise, and descent phases are coupled based on the cruise altitude and Mach number. An example of this trajectory generation method is explained in Appendix C.8.
In the following use case, several simple flight trajectories are generated. In Figure 7 and Figure 8, the vertical profiles of a number of generated climbing and descent trajectories are shown. The default (most common) profile is indicated in red, while a set of randomly generated profiles is shown in gray.
Based on the noise characteristics from ADS-B, the trajectory generator also allows simulated observation noise to be added to generated trajectories. In Figure 9, one such example is shown as a complete trajectory with Gaussian noise added.

7.2. Comparison with BADA

7.2.1. Thrust Model

To demonstrate the difference between OpenAP and BADA, we computed the maximum thrust of an aircraft (Airbus A320 with V2500-A1 engines) under different flight conditions. The results are shown in Figure 10. The maximum thrust was computed using different combinations of altitude and speed. OpenAP and BADA results are illustrated in red and blue respectively.
A large difference is visible when the aircraft is at low altitude. The difference between OpenAP and BADA becomes smaller when the aircraft is flying at a higher altitude. One of the major reasons for the difference is that BADA 3 does not model thrust dynamic due to the change of airspeed. In contrast, OpenAP shows a clear nonlinear relationship between aircraft speed and thrust. The performance is more realistic for a lower altitude at a lower speed.

7.2.2. Drag Polar

Due to the restrictions associated with the BADA license, exposure of specific BADA coefficients is not permitted. Instead of showing the exact difference between BADA and our model for each aircraft type, the overall statistics for all available aircraft are shown in Figure 11. The mean absolute differences for C D 0 and k were both found to be around 0.007.
This gives a good indication of what the level of difference in the outcome of this study is, compared to well-established performance models. However, we should be cautious when interpreting this difference as the estimation accuracy. Since neither the method nor the data used for constructing BADA drag polar are published, it is hard to identify the uncertainties in the BADA model. Thus, the difference between the two models should not be directly used to quantify the accuracy of our model.

7.2.3. Fuel Flow Model

The main difference between OpenAP and BADA fuel flow models is the input parameters. The inputs for BADA fuel flow calculation are thrust and speed, while the inputs for OpenAP fuel flow calculation are thrust and altitude.
We can visually compare the inputs and outputs of both fuel flow models in Figure 12, which shows the different variability of the two fuel flow models regarding different input parameters.
It can be seen that the performances of both the fuel flow model are similar at a lower thrust (for example, during the cruise). However, while the aircraft is flying with a higher thrust (for example, during the climb), the OpenAP fuel flow model is corrected concerning the altitude of the aircraft. It is also worth emphasizing that the inputs for both models are different. Thus, a better way to evaluate fuel flow estimations has to be based on real flight trajectories, which is shown in the following section.

7.3. Analysis Based on Flight FMS Data

To further evaluate the thrust and fuel flow models, we used a real flight to examine the performance of OpenAP. The flight data were gathered from the TU Delft Cessna Citation II flight data recorder. The flight data contained states such as position, altitude, speed, vertical rate, acceleration, and fuel flow, and the takeoff mass of the aircraft.
Based on the onboard data, we could reconstruct the true net thrust of the engine during the flight based on drag and acceleration. This was to be used as a reference when examining the thrust model. In Figure 13, the maximum thrust computed from OpenAP and BADA are shown alongside the net thrust computed from flight data.
The flight recorder data also include the fan rotation speed (N1), which is expressed as a percentage of the maximum rotation speed. By combining the N1 value and the maximum thrust computed from OpenAP, we were able to derive the estimated net thrust during the flight. The same method was also applied to the BADA model to serve as a comparison. In Figure 14, the estimated net thrusts are shown against the true net thrust. The distribution of estimation error based on BADA and OpenAP is also shown in this figure.
It is noticeable that during the climb, the open thrust model can approximate the thrust with the same level accuracy or better than BADA. During the cruise, a relatively large difference existed for both models. It is important to note that this large difference could be due to the nonlinear relationship between the fan rotation speed and the actual throttle setting. It is also worth noting the difference between this practice flight and a normal passenger flight. Firstly, the aircraft was cruising at a lower altitude (around 10,000 ft) instead of the optimal altitude (commonly above 30,000 ft). Secondly, the flight procedure was designed to test the limits of flight performance. Thus, drastic changes in speed and altitude existed during the flight. These factors would contribute to the difference between true thrust and estimated thrust using either OpenAP or BADA. Nonetheless, we can see similar estimation results emerge using OpenAP and BADA.
Using the recorded engine fuel flow data, the fuel flow model was evaluated. In Figure 15, the fuel flow is shown based on the the net thrust calculated based on onboard data. Results from OpenAP and BADA are illustrated alongside the actual fuel flow. The estimation error distributions of fuel flow using BADA and OpenAP are also shown.
Overall, OpenAP displays slightly better accuracy than BADA. It is also noticeable that the difference is higher when thrust is higher (during the climb). This can be seen as a reflection of the result that has been found in Figure 12.

8. Discussions

The OpenAP model and its associated toolkit are still under development. In this section, we address the limitations and plans for this aircraft performance model.

8.1. Limitations

As mentioned in the earlier sections, the thrust model included in OpenAP is based on the studies of [20,22], where only turbofan engines are modeled. Hence, OpenAP does not yet cover aircraft that are equipped with other engine types.
The thrust and fuel models used in OpenAP are based on external sources. Hence, the uncertainty in these third-party models and data affects the accuracy of the OpenAP model. Limited access to accurate flight data from a wider range of aircraft types also limits the validation of OpenAP.
As we are relying on a Bayesian estimation method, this creates uncertainty in the drag polar values described in this paper. There is also a certain level of uncertainty inherited from the thrust models and data, which is explained in [23].
Currently, only the most common civil aircraft types are covered in OpenAP. This is due to the availability of flight data. Though the aircraft diversity may be a limiting factor for some applications, the data-driven approach used to construct OpenAP allows more aircraft to be included with the growing volume of flight data in the future.

8.2. Future Development

The current research plan for OpenAP focuses on enhancing the models and providing more functionalities that can be beneficial for air transport research. Our current research efforts include:
  • OpenAP Emission: Research is being conducted to incorporate an open emission model for emission and climate-related air transport studies.
  • OpenAP Optimization: Based on the dynamic model, a trajectory optimization model shall be developed. This will further enhance the trajectory generation capability of OpenAP, extending from kinematic models to dynamic models.
  • WRAP model: As more ADS-B data is collected, we plan to update the WRAP kinematic model every few years to include new aircraft types, as well as to improve models for less common aircraft types.

8.3. Sharing and Community Contributions

OpenAP model data and source code for the toolkit are published under the GNU GPL v3 license. This allows anyone to freely use (including commercial and private use), distribute, and change the content. The advantage of having such an open license is to allow easy access and encourage contributions from the air traffic management research community. The source code is published on GitHub, where anyone can take part in the future development of the model.
Part of OpenAP is derived from flight data based on our previous studies, for example, the drag polar and kinematic models. However, we welcome more accurate information to be submitted, as long as the data can be open and have been obtained from legitimate sources.
Currently, there are a limited number of flight test data included in the OpenAP repository as part of the open flight datasets. They are from the TU Delft Cessna Citation II aircraft. We welcome the input of flight test data from other aircraft types. The flight identifier can be anonymized. However, it would be ideal to maintain aircraft and engine types, airspeed, aircraft mass, and fuel flow information in the flight data.

9. Conclusions

In this paper, we explain the details of a new open aircraft performance model, OpenAP. The OpenAP model, which is the combined outcome of several of our previous studies, is aimed at providing the air traffic management research community an open alternative to current closed-source aircraft performance models. Accompanied by an off-the-shelf user library written in the Python programming language, the performance model consists of four major components, which are the aircraft and engine properties, kinematic performance, dynamic performance, and utility libraries.
The characteristics of 27 common aircraft and 400 turbofan engines have been included in the OpenAP properties library. The aircraft database provides basic information on aircraft dimensions, limits, and engine configurations. The engine database provides information such as maximum thrust, bypass ratio, cruise performance, and fuel flow coefficients for each engine type. The kinematic performance is produced by our previous data-driven model (WRAP). It describes parameters that are related to speed, vertical rate, distance, and height in seven distinct flight phases. The OpenAP toolkit enables easy access to these parameters. The dynamic performance module provides models that describe engine maximum thrust, fuel consumption, and drag polar. It allows OpenAP to be used independently for studies that require flight dynamics.
To provide more options for future air traffic management studies, future research on extending OpenAP will be focused on aircraft emission models and noise models. We also plan to include the trajectory optimization and prediction functionalities in the OpenAP toolkit. To promote open science and collaborations, all OpenAP model data and the toolkit source code are published on GitHub under the GNU GPL license, where future contributions and requests are welcomed.

Author Contributions

Conceptualization: J.S., J.E., J.M.H.; data curation: J.S.; methodology, software, and visualization: J.S.; supervision: J.M.H.; validation: J.S., J.E., J.M.H.; writing—original draft preparation: J.S.; writing—review and editing: J.S., J.E., J.M.H. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Conflicts of Interest

The authors declare no conflicts of interest.

Nomenclature

xdownrange position (m)
ycross-range position (m)
haltitude (m)
h cr reference cruise altitude (ft)
aacceleration (m/s 2 )
ggravitational acceleration (m/s 2 )
Vaircraft speed (m/s)
V S vertical speed (m/s)
ψ heading angle (deg)
γ flight path angle (deg)
ϕ bank angle (deg)
δ T thrust setting (-)
Tnet thrust (N)
T 0 maximum static thrust, sea level (N)
T 10 thrust at altitude of 10,000 feet (N)
T cr thrust at the top of climb (N)
Dtotal drag (N)
Ltotal lift (N)
maircraft mass (kg)
qdynamic pressure (Pa)
q c impact pressure (Pa)
p 0 pressure at sea level (Pa)
p 10 pressure at altitude of 10,000 feet (Pa)
ppressure (Pa)
p cr pressure at reference cruise altitude (Pa)
ρ air density (kg/m 3 )
ρ 0 air density at sea level (kg/m 3 )
τ air temperature (K)
τ 0 air temperature at sea level (K)
MMach number (-)
M c i r t critical Mach number (-)
M cr reference cruise Mach number (-)
C D drag coefficient (-)
C L lift coefficient (-)
C D 0 zero-lift drag coefficient (-)
C D , w wave drag coefficient (-)
C ff fuel flow coefficient (-)
klift-induced drag coefficient (-)
eOswald factor (-)
Swing area (m 2 )
λ bypass ratio (-)

Appendix A. Available Aircraft Types

Table A1. Current available aircraft types in OpenAP.
Table A1. Current available aircraft types in OpenAP.
TypeAircraft ModelEngine Options
A319Airbus A319CFM56-5B5, CFM56-5B6, CFM56-5A4, CFM56-5A5, CFM56-5B7, V2522-A5, V2524-A5, V2527M-A5
A320Airbus A320CFM56-5-A1, CFM56-5-A1, CFM56-5A3, CFM56-5B4, CFM56-5B5, CFM56-5B6, V2500-A1, V2527-A5, V2527E-A5
A321Airbus A321CFM56-5B1, CFM56-5B2, V2530-A5, CFM56-5B3, CFM56-5B1, CFM56-5B2, V2533-A5, V2530-A5
A332Airbus A330-200CF6-80E1A2, CF6-80E1A4, CF6-80E1A3, PW4168A, PW4170, Trent 772
A333Airbus A330-300CF6-80E1A2, CF6-80E1A4, CF6-80E1A3, PW4164, PW4168, PW4168A, Trent 768, Trent 772, Trent 772
A343Airbus A340-300CFM56-5C2, CFM56-5C3, CFM56-5C4
A359Airbus A350-900Trent XWB-84
A388Airbus A380-800Trent 970-84, Trent 972-84, GP7270
B734Boeing 737-400CFM56-3B-2, CFM56-3C-1
B737Boeing 737-700CFM56-7B20, CFM56-7B22, CFM56-7B24, CFM56-7B26, CFM56-7B27
B738Boeing 737-800CFM56-7B24, CFM56-7B26, CFM56-7B27
B739Boeing 737-900CFM56-7B24, CFM56-7B26, CFM56-7B27
B744Boeing 747-400PW4062, CF6-80C2B1F, RB211-524G
B748Boeing 747-8GEnx-2B67
B752Boeing 757-200PW2037, RB211-535E4
B763Boeing 767-300JT9D-7R4D, PW4056, CF6-80C2B2
B772Boeing 777-200ERGE90-94B, PW4077, Trent 895
B773Boeing 777-300GE90-110B1, PW4090, Trent 892
B77WBoeing 777-300ERGE90-115B
B788Boeing 787-8GEnx-1B70, GEnx-1B67, GEnx-1B64, Trent 1000-E2, Trent 1000-C2, Trent 1000-A1
B789Boeing 787-9GEnx-1B75, GEnx-1B74, Trent 1000-K2, Trent 1000-J2, Trent 1000-A2
C550Cessna Citation IIJT15D-4
E145Embraer ERJ145 (LR)AE3007A1
E170Embraer E170CF34-8E5, CF34-8E6
E190Embraer E190 (LR)CF34-10E5
E195Embraer E195 (LR)CF34-10E5
E75LEmbraer E175 (LR)CF34-8E5, CF34-8E6

Appendix B. OpenAP Sample Data

Appendix B.1. Aircraft Property Data Structure

Data location: /openap/openap/data/aircraft/a320.yml
Aerospace 07 00104 i001

Appendix B.2. Drag Polar Data Structure

Data location: /openap/openap/data/dragpolar/a320.yml:
Aerospace 07 00104 i002

Appendix C. OpenAP Python Library Programming Interface Examples

The example in this paper reflects only the current version of the OpenAP Python library. Changes can be expected in the future.

Appendix C.1. Access OpenAP Aircraft and Engines

Aerospace 07 00104 i003

Appendix C.2. Access WRAP Parameters

Aerospace 07 00104 i004

Appendix C.3. Calculate Aircraft Thrust

Aerospace 07 00104 i005
where the inputs of the function are true airspeed (in knots), altitude (in feet), and rate of climb (in feet/minute). The outputs are maximum thrust forces (in Newton).

Appendix C.4. Calculate Aircraft Drag

Aerospace 07 00104 i006
The inputs of these functions are mass (in kilogram), true airspeed (in knots), and altitude (in feet). The outputs are the drag force (in Newton).

Appendix C.5. Calculate Aircraft Fuel Flow

Aerospace 07 00104 i007
The inputs of these functions are thrust (in Newton), mass (in kilogram), true airspeed (in knots), altitude (in feet), flight path angle (in degrees), and throttle setting (between 0 and 1).

Appendix C.6. Inferring Flight Phase

Aerospace 07 00104 i008
where we first set the trajectory data. The last two functions produce the flight phase labels and the indices of the data point when a different flight phase starts.

Appendix C.7. Use of Navigation Library

Aerospace 07 00104 i009

Appendix C.8. Generation of Flight Trajectories

Aerospace 07 00104 i010

References

  1. Hoekstra, J.M.; Ellerbroek, J. BlueSky ATC Simulator Project: An Open Data and Open Source Approach. In Proceedings of the 7th International Conference on Research in Air Transportation, Philadelphia, PA, USA, 20–24 June 2016; pp. 1–8. [Google Scholar]
  2. Gallo, E.; Navarro, F.A.; Nuic, A.; Iagaru, M. Advanced aircraft performance modeling for ATM: BADA 4.0 results. In Proceedings of the 2006 IEEE/AIAA 25th Digital Avionics Systems Conference, Portland, OR, USA, 15–19 October 2006; pp. 1–12. [Google Scholar]
  3. Nuic, A.; Poles, D.; Mouillet, V. BADA: An advanced aircraft performance model for present and future ATM systems. Int. J. Adapt. Control Signal Process. 2010, 24, 850–866. [Google Scholar] [CrossRef]
  4. Calders, P. G.A.M.E. Aircraft Performance Model Description; DIS/ATD Unit, DOC.CoE-TP-02002; Eurocontrol: Brussels, Belgium, 2002. [Google Scholar]
  5. Rosenow, J.; Fricke, H. Flight Performance Modeling to Optimize Trajectories; Deutsche Gesellschaft für Luft-und Raumfahrt-Lilienthal-Oberth eV: Bonn, Germany, 2016. [Google Scholar]
  6. Airbus. Getting to grips with Aircraft Performance. Flight Oper. Support Line Assist. 2002, 2, 11–16. [Google Scholar]
  7. Simos, D. PIANO: PIANO User’s Guide Version 4.0; Lissys Limited: London, UK, 2004. [Google Scholar]
  8. Metz, I.; Hoekstra, J.; Ellerbroek, J.; Kügler, D. Aircraft performance for open air traffic simulations. In Proceedings of the AIAA Modeling and Simulation Technologies Conference, San Diego, CA, USA, 4–8 January 2016; p. 3522. [Google Scholar]
  9. Alligier, R.; Gianazza, D.; Durand, N. Ground-based estimation of the aircraft mass, adaptive vs. least squares method. In Proceedings of the ATM 2013, 10th USA/Europe Air Traffic Management Research and Development Seminar, Chicago, IL, USA, 10–13 June 2013; p. 1. [Google Scholar]
  10. Sun, J.; Ellerbroek, J.; Hoekstra, J. Aircraft initial mass estimation using Bayesian inference method. Transp. Res. Part Emerg. Technol. 2018, 90, 59–73. [Google Scholar] [CrossRef] [Green Version]
  11. Sun, J.; Blom, H.A.P.; Ellerbroek, J.; Hoekstra, J.M. Aircraft Mass and Thrust Estimation Using Recursive Bayesian Method. In Proceedings of the 8th International Conference on Research in Air Transportation, Barcelona, Spain, 26–29 June 2018. [Google Scholar]
  12. Chati, Y.S.; Balakrishnan, H. A Gaussian process regression approach to model aircraft engine fuel flow rate. In Proceedings of the ACM 8th International Conference on Cyber-Physical Systems, Pennsylvania, PA, USA, 18–20 April 2017; pp. 131–140. [Google Scholar]
  13. Hrastovec, M.; Solina, F. Prediction of aircraft performances based on data collected by air traffic control centers. Transp. Res. Part Emerg. Technol. 2016, 73, 167–182. [Google Scholar] [CrossRef]
  14. Sun, J.; Ellerbroek, J.; Hoekstra, J. Modeling aircraft performance parameters with open ads-b data. In Proceedings of the 12th USA/Europe Air Traffic Management Research and Development Seminar, Seattle, WA, USA, 27–30 June 2017. [Google Scholar]
  15. Sun, J.; Ellerbroek, J.; Hoekstra, J.M. WRAP: An open-source kinematic aircraft performance model. Transp. Res. Part Emerg. Technol. 2019, 98, 118–138. [Google Scholar] [CrossRef]
  16. Ben-Kiki, O.; Evans, C.; Ingerson, B. Yaml Ain’t Markup Language (YAML) Version 1.1. Tech. Rep; yaml.org. 2005, p. 23. Available online: https://yaml.org/spec/1.1/ (accessed on 1 October 2019).
  17. Jenkinson, L.R.; Simpkin, P.; Rhodes, D.; Jenkison, L.R.; Royce, R. Civil Jet Aircraft Design; Arnold: London, UK, 1999; Volume 338. [Google Scholar]
  18. Paul, J. Jane’s All The World’s Aircraft. 2004–2005; Jane’s Information Group Inc.: Alexandria, Egypt, 2005. [Google Scholar]
  19. ICAO. Aircraft Engine Emissions Databank; International Civil Aviation Organization: Montreal, QC, Canada, 2018. [Google Scholar]
  20. Svoboda, C. Turbofan engine database as a preliminary design tool. Aircr. Des. 2000, 3, 17–31. [Google Scholar] [CrossRef]
  21. Sun, J.; Vû, H.; Ellerbroek, J.; Hoekstra, J.M. Weather field reconstruction using aircraft surveillance data and a novel meteo-particle model. PLoS ONE 2018, 13, e0205029. [Google Scholar] [CrossRef] [PubMed]
  22. Bartel, M.; Young, T.M. Simplified Thrust and Fuel Consumption Models for Modern Two-Shaft Turbofan Engines. J. Aircr. 2008, 45, 1450–1456. [Google Scholar] [CrossRef]
  23. Sun, J.; Hoekstra, J.M.; Ellerbroek, J. Aircraft drag polar estimation based on a stochastic hierarchical model. In Proceedings of the SESAR Innov. Days 2018, Salzburg, Austria, 3–7 December 2018. [Google Scholar]
  24. Sun, J.; Hoekstra, J.M.; Ellerbroek, J. Estimating aircraft drag polar using open flight surveillance data and a stochastic total energy model. Transp. Res. Part Emerg. Technol. 2020, 114, 391–404. [Google Scholar] [CrossRef] [Green Version]
  25. McCormick, B.W. Aerodynamics, Aeronautics, and Flight Mechanics; Wiley: New York, NY, USA, 1995; Volume 2. [Google Scholar]
  26. Obert, E. Aerodynamic Design of Transport Aircraft; IOS Press: Amsterdam, The Netherlands, 2009. [Google Scholar]
  27. Gur, O.; Mason, W.H.; Schetz, J.A. Full-configuration drag estimation. J. Aircr. 2010, 47, 1356–1367. [Google Scholar] [CrossRef]
  28. Mair, W. Aircraft Performance; Cambridge University Press: Cambridge, UK, 1996; Volume 5. [Google Scholar]
  29. Sun, J.; Ellerbroek, J.; Hoekstra, J. Flight Extraction and Phase Identification for Large Automatic Dependent Surveillance–Broadcast Datasets. J. Aerosp. Inf. Syst. 2017, 14, 566–571. [Google Scholar] [CrossRef] [Green Version]
  30. Peel, R.A. Data Development Documentation. X-Plane Developer. 2019. Available online: https://developer.x-plane.com/docs/data-development-documentation/ (accessed on 1 October 2019).
Figure 1. The structure of OpenAP.
Figure 1. The structure of OpenAP.
Aerospace 07 00104 g001
Figure 2. Forces acting on the aircraft in the point-mass dynamic performance model.
Figure 2. Forces acting on the aircraft in the point-mass dynamic performance model.
Aerospace 07 00104 g002
Figure 3. Drag polar estimated for common Airbus and Boeing aircraft under clean configurations at low Mach number.
Figure 3. Drag polar estimated for common Airbus and Boeing aircraft under clean configurations at low Mach number.
Aerospace 07 00104 g003
Figure 4. Changes of drag polar due to compressibility (A320).
Figure 4. Changes of drag polar due to compressibility (A320).
Aerospace 07 00104 g004
Figure 5. Differences in specific fuel consumption at sea level and cruise altitude.
Figure 5. Differences in specific fuel consumption at sea level and cruise altitude.
Aerospace 07 00104 g005
Figure 6. Difference in specific fuel consumption at sea level and cruise altitude.
Figure 6. Difference in specific fuel consumption at sea level and cruise altitude.
Aerospace 07 00104 g006
Figure 7. Generated climbing trajectory (Airbus A320).
Figure 7. Generated climbing trajectory (Airbus A320).
Aerospace 07 00104 g007
Figure 8. Generated descent trajectory (Airbus A320).
Figure 8. Generated descent trajectory (Airbus A320).
Aerospace 07 00104 g008
Figure 9. Generated complete trajectory with noise added (Airbus A320).
Figure 9. Generated complete trajectory with noise added (Airbus A320).
Aerospace 07 00104 g009
Figure 10. A320 maximum thrust (V2500-A1 engine).
Figure 10. A320 maximum thrust (V2500-A1 engine).
Aerospace 07 00104 g010
Figure 11. Absolute difference of drag polar between BADA (3.12) and the model derived in this paper under clean configuration.
Figure 11. Absolute difference of drag polar between BADA (3.12) and the model derived in this paper under clean configuration.
Aerospace 07 00104 g011
Figure 12. A320 maximum thrust (V2500-A1 engine).
Figure 12. A320 maximum thrust (V2500-A1 engine).
Aerospace 07 00104 g012
Figure 13. Maximum thrust profile.
Figure 13. Maximum thrust profile.
Aerospace 07 00104 g013
Figure 14. Estimated net thrust based on maximum thrust profile and N1 settings.
Figure 14. Estimated net thrust based on maximum thrust profile and N1 settings.
Aerospace 07 00104 g014
Figure 15. Estimated fuel flow based on the net thrust.
Figure 15. Estimated fuel flow based on the net thrust.
Aerospace 07 00104 g015
Table 1. Engine performance parameters
Table 1. Engine performance parameters
ParameterNotationRemarks
name-engine common identifier
manufacture--
bpr λ bypass ratio
pr-pressure ratio
max_thrust T 0 maximum static thrust, sea level (unit: N)
fuel_c3 C ff 3 fuel flow coefficient, 3rd order term (unit: kg/s)
fuel_c2 C ff 2 fuel flow coefficient, 2nd order term (unit: kg/s)
fuel_c1 C ff 1 fuel flow coefficient, 1st order term (unit: kg/s)
cruise_thrust T cr thrust at the top of climb (unit: N)
cruise_mach M cr cruise Mach number for the thrust condition
cruise_alt h cr cruise Mach altitude for the thrust condition (unit: ft)
Table 2. Performance parameter in OpenAP kinematic model.
Table 2. Performance parameter in OpenAP kinematic model.
Takeoff V lof
d tof
a ¯ tof
liftoff speed
takeoff distance
mean takeoff acceleration
m/s
km
m/s 2
Initial climb V cas , ic
V S ic
calibrated airspeed
vertical rate
m/s
m/s
Climb R top , cl
h cas , cl
V cas , cl
V S cas , cl
h mach , cl
M cl
V S mach , cl
V S precas , cl
range to the top of climb
constant CAS crossover altitude
constant CAS
vertical rate during constant CAS climb
constant Mach climb crossover altitude
constant Mach number
vertical rate at constant Mach climb
vertical rate before constant CAS climb
km
km
m/s
m/s
km
-
m/s
m/s
Cruise R cr
h init , cr
h cr
M cr
cruise range
initial cruise altitude
cruise altitude
cruise Mach number
km
km
km
-
Descent R top , de
M de
h mach , de
V S mach , de
V cas , de
h cas , de
V S cas , de
V S postcas , de
range from the top of descent
constant Mach number
constant Mach descent crossover altitude
vertical rate at constant Mach descent
constant CAS
constant CAS crossover altitude
vertical rate at constant CAS descent
vertical rate after constant CAS descent
km
-
km
m/s
m/s
km
m/s
m/s
Final approach V cas , fa
V S fa
fa
calibrated airspeed
vertical rate
path angle
m/s
m/s
deg
Landing V t c d
d l n d
a ¯ l n d
touchdown speed
braking distance
mean braking deceleration
m/s
km
m/s 2

Share and Cite

MDPI and ACS Style

Sun, J.; Hoekstra, J.M.; Ellerbroek, J. OpenAP: An Open-Source Aircraft Performance Model for Air Transportation Studies and Simulations. Aerospace 2020, 7, 104. https://doi.org/10.3390/aerospace7080104

AMA Style

Sun J, Hoekstra JM, Ellerbroek J. OpenAP: An Open-Source Aircraft Performance Model for Air Transportation Studies and Simulations. Aerospace. 2020; 7(8):104. https://doi.org/10.3390/aerospace7080104

Chicago/Turabian Style

Sun, Junzi, Jacco M. Hoekstra, and Joost Ellerbroek. 2020. "OpenAP: An Open-Source Aircraft Performance Model for Air Transportation Studies and Simulations" Aerospace 7, no. 8: 104. https://doi.org/10.3390/aerospace7080104

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop