Skip to content

Predictive Maintenance system utilizing XGBoost to estimate the Remaining Useful Life (RUL) of NASA Turbofan Engines (CMAPSS dataset) to prevent failures and optimize maintenance schedules.

Notifications You must be signed in to change notification settings

mohamedabdelaziz6174/Predictive-Maintenance-for-NASA-Turbofan-Engines

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

2 Commits
ย 
ย 
ย 
ย 

Repository files navigation

Zero Downtime: Predictive Maintenance for NASA Turbofan Engines โœˆ๏ธโš™๏ธ

๐Ÿ“Œ Project Overview

In the aviation industry, engine failure is not an option. Traditional maintenance strategies like Reactive (fix when broken) or Preventive (scheduled replacement) are either dangerous or costly.

This project implements a Predictive Maintenance (PdM) solution using Machine Learning to predict the Remaining Useful Life (RUL) of NASA turbofan engines. By analyzing sensor data, we can forecast exactly when an engine will fail, enabling "Zero Downtime" operations.

๐Ÿ“‚ The Dataset

This project utilizes the NASA CMAPSS (Commercial Modular Aero-Propulsion System Simulation) dataset.

  • Source: NASA C-MAPSS on Kaggle
  • Subset Used: FD001
  • Input: Multi-variate time-series data from 21 sensors (Temperature, Pressure, Fan Speeds, etc.).
  • Goal: Regression task to predict RUL (Remaining Useful Life).

๐Ÿ› ๏ธ Methodology & Approach

1. Data Cleaning & Preprocessing

  • Dead Sensor Removal: Identified and removed 7 sensors (e.g., T2, P2, epr, farB) that showed zero variance/constant values to reduce noise.
  • Data Integrity: Validated having no missing values (Nulls) and checked data types.

2. Feature Engineering

  • Piecewise Linear Degradation: Applied RUL Clipping (Threshold = 125 cycles). This assumes the engine operates normally for a period before degradation starts, preventing the model from learning noise during the healthy phase.

3. Model Selection

Benchmarked multiple regression algorithms to find the best performance:

  • Linear Regression (Baseline)
  • Support Vector Regressor (SVR)
  • Random Forest Regressor
  • XGBoost Regressor (Best Performer) ๐Ÿ†

๐Ÿš€ Results

The XGBoost model demonstrated superior ability to capture non-linear degradation trends compared to other models.

  • Evaluation Metric: Root Mean Squared Error (RMSE).
  • Simulation: The model successfully tracks the degradation path of unseen engines, clearly identifying the critical "Failure Zone" (last 30 cycles).

๐Ÿงฐ Technologies Used

  • Python
  • Data Manipulation: Pandas, NumPy
  • Visualization: Matplotlib, Seaborn
  • Machine Learning: Scikit-Learn, XGBoost

๐Ÿ”ฎ Future Work

  • Implement LSTM (Long Short-Term Memory) networks to better capture temporal dependencies in the time-series data.
  • Apply Hyperparameter Tuning using Optuna to further optimize the XGBoost model.

Created by: Mohamed AbdelAziz

About

Predictive Maintenance system utilizing XGBoost to estimate the Remaining Useful Life (RUL) of NASA Turbofan Engines (CMAPSS dataset) to prevent failures and optimize maintenance schedules.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published