hmnshudhmn24/igbt-accelerated-aging-nasa
β‘ IGBT Accelerated Aging Dataset β NASA A NASA prognostics dataset tracking accelerated thermal aging of Insulated Gate Bipolar Transistors (IGBTs) β for fault detection, remaining useful life prediction, and power electronics research. π§ Overview This dataset contains experimental data from accelerated thermal aging of IGBTs (Insulated Gate Bipolar Transistors) under various stress conditions. Collected by NASA's Prognostics Center of Excellence, it isβ¦ See the full description on the dataset page: https://huggingface.co/datasets/hmnshudhmn24/igbt-accelerated-aging-nasa.
β‘ IGBT Accelerated Aging Dataset β NASA
A NASA prognostics dataset tracking accelerated thermal aging of Insulated Gate Bipolar Transistors (IGBTs) β for fault detection, remaining useful life prediction, and power electronics research.
π§ Overview
This dataset contains experimental data from accelerated thermal aging of IGBTs (Insulated Gate Bipolar Transistors) under various stress conditions. Collected by NASA's Prognostics Center of Excellence, it is widely used in:
- Predictive maintenance research
- Remaining Useful Life (RUL) estimation
- Power electronics fault detection
- Prognostics & Health Management (PHM)
π Dataset Folders
π Parameters Measured
π¬ Devices Covered
β‘ Quick Start
import pandas as pd
import scipy.io as sio
import os
# Load SMU characterization data (if .csv)
df = pd.read_csv("smu_data.csv")
print(df.head())
# Load MATLAB .mat files (if applicable)
data = sio.loadmat("igbt_aging_data.mat")
print(data.keys())π‘ Suggested Use Cases
- Remaining Useful Life (RUL) Prediction β Predict how many cycles before device failure
- Fault Detection & Classification β Detect latch-up and other failure modes early
- Anomaly Detection β Identify abnormal tail current behavior as failure precursor
- Degradation Modeling β Track electrical parameter drift over aging cycles
- Transfer Learning β Use pristine SMU data as baseline for domain adaptation
- Predictive Maintenance β Build real-world PHM pipelines for power electronics
