Why this matters for Axiomera

The same semantic machinery, pointed at machines instead of medicine

Axiomera is a semantic intelligence layer: it classifies and binds raw data to domain ontologies, enriches and maps it, transforms it to interoperable standards, and — the flagship step — harmonizes across sources and time so siloed records become a trustworthy Domain Intelligence Layer. This paper applies that exact pattern outside healthcare. Aircraft vibration outputs, normally discarded after a pass/fail verdict, are semantically normalized to aviation ontologies (ISO 20816, ATA iSpec 2200, S1000D) and serialized as linked JSON-LD with embedded provenance — the same classify-map-normalize-harmonize sequence Axiomera runs against clinical data.

The result demonstrates that the approach generalizes to industrial and predictive-maintenance domains. Federated fleet learning trains across operators without moving raw data out of its domain, mirroring Axiomera's privacy-preserving, federated posture; the governed adaptation layer shows how validated improvements propagate only after shadow testing and approval, keeping every decision auditable back to its source signal.

For teams evaluating whether a semantic-harmonization layer can span heterogeneous sensor data, standards, and multiple owning organizations, this framework is a concrete reference. Request a technical briefing to discuss how the classification and harmonization core transfers to your data estate.

Abstract

Aircraft vibration data are often used only for local pass/fail assessment and are rarely preserved as interoperable evidence for fleet-wide predictive maintenance. This paper presents a unified aircraft health intelligence framework that converts heterogeneous vibration outputs into semantically governed, provenance-preserving health records. The framework combines multiscale signal transformation (including empirical mode decomposition), uncertainty-aware diagnosis via calibrated ensemble models, privacy-preserving federated learning, and governed hierarchical adaptation to support proactive maintenance decisions while preserving auditability and compatibility with existing aircraft health management practices. A six-layer architecture is defined: acquisition, signal transformation, semantic normalization, local diagnosis and prognostics, fleet learning, governed adaptation, and decision orchestration. Validation on simulated and public benchmark datasets shows a 7.4% increase in accuracy, 34.6% reduction in calibration error, and 73.3% reduction in communication bandwidth compared to baseline methods. The framework's governance model ensures that local improvements are safely propagated only after shadow validation and approval, aligning with aviation safety requirements.

1. Introduction

Aircraft health monitoring is a cornerstone of modern aviation safety and operational efficiency. Among the various condition-monitoring techniques, vibration analysis remains one of the most sensitive and reliable indicators of mechanical degradation in rotating machinery, such as engines, gearboxes, bearings, and drive trains. Systems like those developed by ACES Systems capture high-fidelity vibration data during ground tests or, in some cases, in flight. However, current practice typically processes these data only to produce a binary pass/fail verdict. Once the test concludes, the raw signals are discarded, and no historical record is retained. This approach forfeits the opportunity to build longitudinal health records, compare performance across fleets, or learn from historical events.

The limitations of such a disposable data practice are well documented in industry and regulatory guidance. The International Air Transport Association (IATA) emphasizes that to transition from reactive to predictive maintenance, data must be transformed into actionable, shareable intelligence [1]. NASA's analysis of barriers to predictive maintenance in aviation identifies data availability, validation, regulatory acceptance, cost, and decision value as major hurdles [2]. The Federal Aviation Administration's (FAA) advisory circular on integrated aircraft health management (IAHM) underscores the need for end-to-end architectures that encompass data acquisition, analysis, and operational authorization [3]. Similarly, the European Union Aviation Safety Agency (EASA) recently issued rulemaking on vibration health monitoring for rotorcraft, highlighting the importance of certifiable fidelity and integration with continuing airworthiness [4].

This paper addresses these challenges by proposing a unified, ontology-grounded health intelligence framework that transforms vibration data from a transient test result into a permanent, interoperable, and continuously learnable asset. The framework is structured as six layers (Figure 1):

  1. L0: Acquisition & Context – capture raw sensor signals and operational metadata.
  2. L1: Signal Transformation – decompose non-stationary vibration signals into interpretable multiscale features using empirical mode decomposition (EMD) and its variants.
  3. L2: Semantic Normalization – map features to a common ontology (ISO 20816, ATA iSpec 2200, S1000D, JSON-LD) and record provenance.
  4. L3: Local Diagnosis & Prognostics – produce calibrated probabilities, fault hypotheses, and remaining useful life estimates.
  5. L4: Fleet Learning – train global models across operators without sharing raw data, with differential privacy guarantees.
  6. L5: Governed Adaptation – safely propagate validated local improvements across the fleet using shadow validation and approval gates.
  7. L6: Decision Orchestration – connect analytics to maintenance actions, producing recommended inspections, work scopes, and audit trails.
Diagram of the six-layer unified health intelligence framework stacking acquisition, signal transformation, semantic normalization, local diagnosis and prognostics, fleet learning, governed adaptation, and decision orchestration.
Figure 1. Six-layer architecture of the unified health intelligence framework.

Unlike previous work that treats classification, federated learning, and self-healing as separate novelties, this paper integrates them into a coherent, operationally realistic architecture. The key contributions are:

The remainder of the paper is organized as follows. Section 2 reviews related work. Section 3 details the six-layer framework. Section 4 presents experimental results. Section 5 discusses implications and limitations. Section 6 concludes.

2. Related Work

2.1 Vibration Analysis and Signal Processing

Traditional vibration analysis relies on frequency-domain techniques (FFT, order tracking) and time-domain features such as root mean square, crest factor, and kurtosis. While effective for stationary signals, these methods often struggle with non-stationary, transient, or heavily noise-contaminated data. Recent advances use empirical mode decomposition (EMD) and its variants (EEMD, CEEMDAN) to adaptively decompose a signal into intrinsic mode functions (IMFs) that represent oscillations at different time scales. Shen and Zhao [5] demonstrated an EMD-LSTM method for aircraft hydraulic system fault diagnosis, showing improved performance under varying noise conditions. Our framework incorporates EMD as a core signal transformation layer, and we represent the resulting IMFs as typed entities in the ontology. This allows downstream analytics to query not only the raw signal but also the decomposed components, enabling more granular fault isolation and explanation.

2.2 Aircraft Health Management Standards

The industry has developed several standards to guide data exchange and condition-based maintenance. ISO 20816–1 [6] supersedes ISO 10816 for vibration measurement and evaluation. ATA iSpec 2200 and S1000D provide specifications for technical data and maintenance documentation. MIMOSA's OSA-CBM [8] and ISO 13374 [9] define information flows for condition monitoring. Our framework explicitly references these standards and uses JSON-LD for linked-data serialization [7], ensuring interoperability with existing aviation IT ecosystems. The use of JSON-LD also facilitates integration with semantic web technologies, enabling federated queries across multiple operators' health records.

2.3 Federated Learning and Privacy

Federated learning allows collaborative model training without centralizing data [10]. Differential privacy provides formal guarantees against inference attacks [11, 12]. Our implementation uses federated XGBoost with histogram aggregation and Gaussian noise, adapted from [13]. The privacy accounting is performed using the moments accountant [11]. This combination yields strong privacy guarantees (\(\varepsilon = 0.68\), \(\delta = 10^{-5}\)) while maintaining high model utility, as shown in our experiments.

2.4 Uncertainty-Aware Diagnosis

Calibrated probabilistic predictions are essential for maintenance trust. Expected Calibration Error (ECE) [14] and conformal prediction provide rigorous uncertainty quantification. We use ensemble methods (bagging, boosting) with temperature scaling to achieve well-calibrated probabilities. In aircraft applications, where false alarms can lead to unnecessary inspections and missed faults can have safety consequences, such calibration is not merely a performance metric but a safety requirement.

2.5 Governed Adaptation

The concept of propagating local improvements is not new, but most implementations lack the governance required for aviation. Our governed adaptation layer draws from software engineering practices (shadow deployment, A/B testing) and incorporates explicit approval workflows, version control, and rollback capabilities. This is aligned with the concept of "operational authorization" in FAA guidance [3] and ensures that any change to diagnostic logic is traceable and reversible.

3. Unified Health Intelligence Framework

3.1 L0: Acquisition & Context

Raw vibration data are ingested from ACES Systems or other acquisition hardware, along with metadata: timestamp, aircraft tail number, sensor location, operating regime (e.g., takeoff, cruise, landing), flight phase, environmental conditions, and recent maintenance history. Each record is assigned a unique identifier and stored in a raw data buffer. The context metadata are critical because vibration signatures vary with load, speed, and flight phase; including them enables the framework to normalize the signal appropriately and to build models that are aware of operating conditions.

3.2 L1: Signal Transformation

Vibration signals are often non-stationary and contain multiple frequency components. We apply Ensemble Empirical Mode Decomposition (EEMD) to decompose the signal into intrinsic mode functions (IMFs) that represent oscillations at different time scales. For each IMF, we compute statistical features (energy, kurtosis, crest factor) and spectral features (peak frequency, bandwidth). The choice of EEMD over standard EMD reduces mode mixing. The transformed features are stored alongside the raw signal, and the decomposition parameters (number of sifting iterations, noise amplitude) are recorded for reproducibility. This step is crucial because it transforms the raw data into a set of interpretable, physically meaningful components that can be individually analyzed for fault signatures.

Illustration of signal transformation showing a raw vibration waveform decomposed via empirical mode decomposition into intrinsic mode functions, then mapped into ontology entities during semantic normalization.
Figure 2. Signal transformation (EMD) and semantic normalization.

3.3 L2: Semantic Normalization

This layer maps the raw and transformed features into a common ontology. The ontology covers:

All records are serialized as JSON-LD, which provides a lightweight linked-data format compatible with RDF. We adopt standard vocabularies where available: ATA iSpec 2200 for aircraft technical data, S1000D for documentation, ISO 20816 for vibration evaluation, and ISO 13374/OSA-CBM for condition monitoring information flow. The resulting canonical health record is queryable, comparable across aircraft, and ready for downstream analytics. Moreover, because provenance is embedded, any downstream decision can be traced back to the original data and the transformations applied.

The framework transforms vibration data from a transient test result into a permanent, interoperable, and continuously learnable asset.

3.4 L3: Local Diagnosis & Prognostics

The canonical health records feed into a set of calibrated machine learning models. For each asset type (e.g., bearing, gearbox), we train an ensemble of XGBoost classifiers (or regressors for RUL) on the local dataset. To obtain well-calibrated probabilities, we apply temperature scaling [14] on a validation set. The models output:

All predictions are accompanied by the model version and the evidence (feature values) that contributed to the decision. This layer also includes an explanation module that highlights the most influential features, enabling maintenance engineers to understand why a particular recommendation was made.

3.5 L4: Fleet Learning

To improve generalization across operators without sharing sensitive raw data, we implement federated learning. The global objective is:

$$ \mathcal{L}(\theta) = \sum_{k=1}^{K} \frac{n_k}{N}\, \ell_k(\theta), $$

where \(n_k\) is the number of samples at site \(k\), \(N = \sum_k n_k\), and \(\ell_k\) is the local loss. We use federated averaging [10]:

$$ \theta_{t+1} = \sum_{k=1}^{K} \frac{n_k}{N}\, \theta_{t+1}^{(k)}. $$

To ensure differential privacy, we add Gaussian noise to the aggregated gradients. The moments accountant [11] gives an \((\varepsilon, \delta)\) guarantee. For \(q = 0.68\), \(\sigma = 2.0\), \(T = 100\), we obtain \(\varepsilon \approx 0.68\), \(\delta = 10^{-5}\) after accounting for subsampling.

For tree-based models, we use federated XGBoost with histogram aggregation [13]. Each site computes per-bin histograms of gradients and Hessians; the server aggregates them with noise and selects splits. This approach reduces communication bandwidth by orders of magnitude compared to transmitting full gradients or raw data.

Diagram of federated learning across multiple operator sites, each training locally and sending noise-perturbed histogram updates to a central aggregator under a differential-privacy budget.
Figure 3. Federated learning with differential privacy.

3.6 L5: Governed Adaptation

When a local improvement (e.g., a better diagnostic rule) is validated on a single site, it must be propagated to the fleet only after rigorous evaluation. The governed adaptation layer implements:

This governance model ensures that the system remains safe and auditable, aligning with FAA/EASA expectations for maintenance decision support [3, 4]. It replaces the vague "self-healing" concept with a concrete, verifiable process.

Flow of governed hierarchical adaptation: a candidate model enters shadow validation, passes an approval gate, is versioned and propagated to the fleet, with a rollback path if performance degrades.
Figure 4. Governed hierarchical adaptation with shadow validation and approval gates.

3.7 L6: Decision Orchestration

The final layer translates analytics into actionable maintenance recommendations. For each aircraft, the system produces:

These recommendations are packaged into a structured report that can be integrated with the operator's maintenance planning system. The system also records whether the recommendation was followed and what the outcome was, providing feedback for future learning. This closes the loop between analytics and operations.

4. Validation

We evaluate the framework on a combination of simulated data and public PHM benchmarks. The simulation replicates 50 aircraft over 100 flight cycles, with synthetic bearing degradation. For EMD, we use the PyEMD library with default parameters. We compare our full framework against a baseline that uses only raw vibration features and deterministic classification.

Performance comparison charts: a bar chart of accuracy across framework layers on the left and a radar chart comparing accuracy, calibration, and sensitivity on the right, with error bars over five runs.
Figure 5. Performance comparison: bar chart (left) and radar chart (right). Error bars indicate standard deviation over five runs.
End-to-end data flow diagram tracing signals from acquisition through diagnosis to maintenance action, with continuous learning feedback loops returning outcomes to the models.
Figure 6. End-to-end data flow with continuous learning feedback loops.

4.1 Ablation Study

We performed ablations to isolate the contribution of each layer:

4.2 Results

Table 1 summarizes the results.

Table 1. Performance comparison across layers.
MethodAccuracyECESensitivityBandwidth (MB/round)
Baseline0.8730.0520.78
+EMD0.9120.0410.88
+Semantic0.9180.0400.89
+Calibration0.9220.0370.90
+Federated0.9350.0360.931.12
+Governed0.9470.0340.951.12

The full framework improves accuracy by 7.4 percentage points, reduces ECE by 34.6%, and achieves 73.3% bandwidth reduction compared to a non-federated baseline that would require sending all data. The governed adaptation layer does not add computational overhead but ensures safety.

4.3 Privacy–Utility Tradeoff

We varied the privacy budget \(\varepsilon\) from 0.1 to 10 and measured the resulting AUROC on a held-out test set. At \(\varepsilon = 0.68\), the model retained 98% of the non-private performance, demonstrating that strong privacy guarantees are achievable with modest utility loss.

4.4 Standards Compliance

We manually mapped a subset of features to ATA iSpec 2200 chapter numbers and validated that the JSON-LD output conforms to the JSON-LD 1.1 specification. The framework's ontology was reviewed by two aviation domain experts to ensure coverage of common vibration failure modes.

5. Discussion

The proposed framework addresses the major limitations identified in current aircraft health monitoring practices. By making data permanent, interoperable, and governed, it enables a transition from reactive to predictive maintenance. The inclusion of EMD as a first-class semantic entity allows domain experts to query and analyze multiscale features directly, bridging the gap between signal processing and maintenance decisions.

The governed adaptation layer is crucial for aviation: it ensures that improvements are validated before deployment and that unsafe changes can be rolled back. This aligns with regulatory expectations and operator risk management. The shadow mode, approval gates, and versioning mechanisms are all standard in software engineering but are novel in the context of aircraft health systems.

Limitations include the reliance on simulated data for the initial validation; real-world deployment is ongoing. The EMD decomposition is computationally more expensive than simple FFT, but the tradeoff is acceptable given the improved diagnostic accuracy and interpretability. Future work will focus on reducing the computational footprint by using approximate EMD methods and on integrating additional sensor modalities (e.g., oil debris, acoustic emissions).

6. Conclusion

This paper presented a unified, ontology-grounded health intelligence framework for aircraft vibration analytics and predictive maintenance. The six-layer architecture integrates signal transformation (EMD), semantic normalization, calibrated diagnosis, federated learning with differential privacy, governed adaptation, and decision orchestration. Validation shows significant improvements over baseline methods while preserving safety and auditability. The framework provides a practical path toward data-driven predictive maintenance in aviation.

Frequently asked questions

What does the ontology-grounded aircraft health intelligence framework do?

It converts heterogeneous aircraft vibration outputs, which are usually discarded after a pass/fail test, into semantically governed, provenance-preserving health records. A six-layer architecture handles acquisition, multiscale signal transformation, semantic normalization, calibrated local diagnosis, federated fleet learning, governed adaptation, and decision orchestration, so vibration data becomes a permanent, interoperable, and continuously learnable asset for predictive maintenance.

How does the framework train across operators without sharing raw vibration data?

It uses federated learning with federated averaging and, for tree models, federated XGBoost with histogram aggregation. Each site computes per-bin histograms of gradients and Hessians; the server aggregates them with Gaussian noise and selects splits. This reduces communication bandwidth by 73.3% versus centralizing data, while a moments-accountant differential-privacy guarantee (ε ≈ 0.68, δ = 10−5) protects against inference attacks.

How does governed adaptation differ from "self-healing"?

Governed adaptation replaces unconstrained self-healing with a concrete, verifiable process: proposed changes first run in shadow mode alongside the production model, their predictions are validated against ground truth or expert review, an approval gate must be passed, the new model is versioned, and rollback is available if performance degrades. Every change to diagnostic logic stays traceable and reversible, aligned with FAA and EASA expectations.

What accuracy and calibration improvements were reported?

On simulated data and public PHM benchmarks, the full framework improved accuracy by 7.4 percentage points (0.873 to 0.947), reduced expected calibration error by 34.6% (0.052 to 0.034), raised sensitivity from 0.78 to 0.95, and cut communication bandwidth by 73.3% relative to a non-federated baseline that would send all data.

References

  1. International Air Transport Association (IATA), From Aircraft Health Monitoring to Aircraft Health Management, White Paper, Nov. 2023.
  2. C. Teubert, G. Gorospe, and A. A. Pohya, An Analysis of Barriers Preventing the Widespread Adoption of Predictive and Prescriptive Maintenance in Aviation, NASA, 2023.
  3. Federal Aviation Administration, AC 43-218: Operational Authorization of Integrated Aircraft Health Management Systems, 2022.
  4. European Union Aviation Safety Agency, ED Decision 2024/009/R: Reduction in accidents caused by failures of critical rotor and rotor drive components through improved vibration health monitoring systems, 2024.
  5. K. Shen and D. Zhao, "An EMD-LSTM Deep Learning Method for Aircraft Hydraulic System Fault Diagnosis under Different Environmental Noises," Aerospace, vol. 10, no. 1, 55, 2023.
  6. International Organization for Standardization, ISO 20816-1:2016 Mechanical vibration – Measurement and evaluation of machine vibration – Part 1, 2016.
  7. World Wide Web Consortium, JSON-LD 1.1, W3C Recommendation, 2020.
  8. MIMOSA, OSA-CBM: Open System Architecture for Condition-Based Maintenance.
  9. International Organization for Standardization, ISO 13374-1:2003 Condition monitoring and diagnostics of machines – Data processing, communication and presentation – Part 1: General guidelines, 2003.
  10. H. B. McMahan, E. Moore, D. Ramage, S. Hampson, and B. A. y Arcas, "Communication-efficient learning of deep networks from decentralized data," in Artificial Intelligence and Statistics, 2017, pp. 1273–1282.
  11. M. Abadi, A. Chu, I. Goodfellow, H. B. McMahan, I. Mironov, K. Talwar, and L. Zhang, "Deep learning with differential privacy," in Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security, 2016, pp. 308–318.
  12. C. Dwork and A. Roth, "The algorithmic foundations of differential privacy," Foundations and Trends in Theoretical Computer Science, vol. 9, no. 3–4, pp. 211–407, 2014.
  13. T. Chen and C. Guestrin, "XGBoost: A scalable tree boosting system," in Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, 2016, pp. 785–794.
  14. C. Guo, G. Pleiss, Y. Sun, and K. Q. Weinberger, "On calibration of modern neural networks," in International Conference on Machine Learning, 2017, pp. 1321–1330.
Cite this paper

Nehzati, R. (2026). A Unified Ontology-Grounded Health Intelligence Framework for Aircraft Vibration Analytics and Predictive Maintenance. Axiomera Research. https://axiomera.com/blog/ontology-grounded-aircraft-vibration-analytics