Probabilistic Aircraft Thrust & Airspeed Model
- The model integrates machine learning with the deterministic BADA simulator to estimate probabilistic thrust and airspeed profiles conditioned on contextual features.
- It employs functional PCA along with Gaussian Process regression and deep ensembles to generate physically plausible aircraft trajectories with quantified uncertainty.
- Performance improvements up to 35% in predictive skilfulness and robust rejection sampling demonstrate its practical impact in air traffic management.
A probabilistic model of aircraft thrust and airspeed provides a data-driven, uncertainty-aware framework for generating aircraft trajectories in which thrust and airspeed profiles are treated as random functions conditioned on contextual features. The central application is trajectory prediction (TP) in air traffic management, where operational uncertainty and variable meteorological conditions necessitate a model that can quantify both mean behavior and probabilistic deviations. Recent advancements leverage machine learning to estimate distributions over thrust and calibrated airspeed (CAS) profiles, enforcing physical plausibility by integrating data-driven corrections within the physics-based Base of Aircraft Data (BADA) trajectory simulator. This approach yields a hybrid, physics-informed, probabilistic modeling architecture with demonstrable improvements in predictive skilfulness (Hodgkin et al., 6 Jan 2026).
1. Hybrid Physics-Informed Learning Architecture
The core modeling framework is the Probabilistic–Physics-Informed Machine Learning (PIML) scheme, which augments the deterministic BADA model with a learned conditional distribution for aircraft thrust and CAS profiles. The pipeline comprises:
- BADA deterministic core: Governs trajectory integration via the energy-balance and aerodynamic relationships, requiring time-indexed thrust and CAS as inputs.
- Data-driven projection of profiles: True thrust and CAS profiles are projected onto orthonormal bases derived via functional principal component analysis (fPCA). The resulting low-dimensional "signature" consists of latent weights for thrust and for CAS. The joint latent variable is .
- Probabilistic conditioning: A machine-learning model estimates the conditional distribution , where encodes meteorology, operator, flight plan, and other contextual features.
At inference, samples are drawn from ; each sample yields reconstructed thrust and airspeed profiles via the fPCA basis, which are then passed to BADA for trajectory simulation. The resulting trajectories obey aerodynamics and energy constraints by construction.
2. Feature Selection and Conditioning Variables
The conditional model's feature vector encodes the operational and meteorological context. Features are selected via a random forest importance analysis, requiring at least a 2% improvement in held-out 0 for the dominant fPCA mode across several selection heuristics.
Key inputs include:
- Operator and origin airport: Capture airline-specific procedures and local air traffic control (ATCO) effects.
- Filed intent code and flight type: Reflect route intentions and associated gross weight differences.
- Flight level statistics (FL_min, FL_max, FL_range): Quantify altitude structure, impacting both thrust and CAS via ambient pressure and temperature dependence.
- Meteorological summaries: Mean, standard deviation, and time gradient of along-track wind and temperature deviation from International Standard Atmosphere (ISA) along each sub-trajectory.
Categorical features use K-fold target encoding (GP) or one-hot encoding (DE). Cyclic time features are handled via sin/cos transforms. All continuous features are unit-variance scaled.
3. Mathematical Structure of the Probabilistic Model
The probabilistic model treats the latent vector 1 as jointly distributed, but, after fPCA projection, the components are modeled as statistically independent:
2
where 3. The principal modeling options are:
- Gaussian Process (GP) regression: For each 4, 5, with mean and variance inferred via a Matérn 5/2 kernel and inducing-point sparse variational inference. Training scales to 6 using 7 inducing locations.
- Deep Ensemble (DE) of Multi-Layer Perceptrons: An ensemble of 8 MLPs, independently parameterized, each predicts 9 per 0. Neg. log-likelihood loss is minimized. At inference, mean and variance estimates are ensembled, decomposing uncertainty into aleatoric and epistemic components.
- Baseline multivariate Gaussian: Fits a single unconditional normal distribution over all 1 by expectation–maximization, serving as the unconditioned reference.
Given a sampled 2, reconstructed thrust and CAS profiles are generated as
3
4. Physical Constraints via BADA Dynamics
Trajectory generation is governed by the BADA energy balance, specifically the Total Energy Equation for climb/descent:
4
with 5 (propulsive thrust along the path), 6 (aerodynamic drag), 7 (true airspeed after Mach/CAS conversion), 8 (mass), 9 (gravity), and 0 (energy-share function).
All generated profiles are filtered through BADA's models for atmosphere, drag, and temperature correction (temperature correction factor set to 1; aircraft parameters per BADA tables), ensuring physical plausibility. A rejection test discards any trajectory where the simulated climb rate 1 drops below 500 ft/min at any epoch.
5. Training Data, fPCA Basis, and Model Fitting Procedures
The model is trained on 200,000 climb segments across 60 days, derived from Mode-S radar surveillance and meteorological forecasts interpolated at each radar blip. Meteorological variables are summarized as per-segment statistics.
Functional PCA is performed individually per aircraft type for 2, trimming bases to explain 80% of the variance, yielding latent vectors of 3–25 dimensions. Each climb segment is projected onto these bases via least-squares (ridge regularization with 4).
GP hyperparameters are optimized for predictive log-likelihood via stochastic variational inference (using GPyTorch). Deep Ensembles are implemented as 8 MLPs (hidden layers [128,256,128]), trained in TensorFlow with NLL objective and diversity ensured via random initialization and dropout. The EM-fitted Gaussian serves as the baseline.
Uncertainty in meteorology is handled implicitly: the learned model increases predictive variance in regions of high meteorological variability; explicit modeling of forecast errors is not carried out.
6. Evaluation Methodology and Results
Evaluation is conducted on a held-out 20% test split across ten aircraft types. Metrics comprise:
- Mean prediction error: RMSE for time-to-top-of-climb, mean rate of climb, and mean CAS.
- Probabilistic calibration: CRPS for each of the above, using Monte Carlo integration with 5 samples.
A comparative skilfulness metric 6 is reported, using either RMSE or CRPS as "Score."
Results indicate that, averaged over types and metrics, the GP achieves 7 skilfulness, while the DE attains 8. For high-sample types (e.g., B738, A320), DE slightly outperforms GP (up to 9 on mean ROC RMSE); for rare types, GP exhibits greater stability. Rejection sampling eliminates 2.8% of GP, 3.2% of DE, and 6.8% of unconditioned baseline samples.
7. Monte Carlo Generation and Sampling Algorithm
Probabilistic trajectory generation is carried out using the following algorithmic template:
1
Each trajectory 0 comprises time-indexed altitude, true airspeed, and associated physical variables at original radar timestamps. Post-processing allows computation of empirical quantiles or CRPS versus observed outcomes.