# Predictive Maintenance of Energy Assets
A wind turbine gearbox 90 meters above the ground starts vibrating at a slightly wrong frequency. Nothing is visibly broken. The blades still turn. But a sensor picks up a faint change in the vibration signature, and a model flags it: a bearing is beginning to wear, and it will likely fail in roughly six weeks.
That early warning is the whole game. It is the difference between a planned repair during a low-wind window and a catastrophic failure that drops a multi-megawatt asset offline, possibly damaging the whole drivetrain.
This lesson explains how utilities are shifting from fixed maintenance calendars to condition-based maintenance driven by sensor data and AI.
For decades, energy assets were serviced on a schedule: inspect this transformertransformerA Transformer is a neural network architecture that uses self-attention to process sequences in parallel, powering most modern language and generative AI models.View full definition → every 12 months, overhaul that turbine every 24. Simple, but wasteful. You either service equipment that is still healthy (wasted labor and downtime) or you miss a fault that develops between inspections.
Telemetry is the stream of measurements sent from equipment back to a monitoring system. On a wind turbine, that includes vibration, temperature, oil quality, rotor speed, and power output. On a transformertransformerA Transformer is a neural network architecture that uses self-attention to process sequences in parallel, powering most modern language and generative AI models.View full definition →, it includes dissolved gas levels, oil temperature, and load.
The key insight: failures rarely happen instantly. They announce themselves. A bearing grinds before it seizes. TransformerTransformerA Transformer is a neural network architecture that uses self-attention to process sequences in parallel, powering most modern language and generative AI models.View full definition → oil produces specific gases as insulation degrades, a technique called dissolved gas analysis (DGA). The signal is there weeks in advance if you are listening.
A remaining-useful-life (RUL) model estimates how much operating time an asset has left before failure. It takes the telemetry and outputs something like: "This gearbox has an estimated 40 days of remaining life at current load."
RUL models are trained on historical data: many examples of assets that degraded and eventually failed, so the model learns what the run-up to failure looks like.
A digital twin is a live virtual model of a physical asset, fed continuously by its real sensor data. It lets engineers simulate "what if" scenarios: What happens to this transformertransformerA Transformer is a neural network architecture that uses self-attention to process sequences in parallel, powering most modern language and generative AI models.View full definition → if we push it to 110 percent load during a heat wave? The twin answers without risking the real asset.
For a good primer, see NASA's foundational Prognostics Data Repository, which hosts run-to-failure datasets used widely in RUL research.
Energy equipment has three traits that make PdM especially valuable.
High failure cost. A failed offshore turbine can mean weeks of lost generation plus an expensive vessel dispatch. A failed large power transformertransformerA Transformer is a neural network architecture that uses self-attention to process sequences in parallel, powering most modern language and generative AI models.View full definition → can take a year or more to replace because lead times are long and units are custom-built.
Continuous operation. These assets run constantly, generating a rich, continuous data stream. That is exactly what models need.
Remote and dangerous locations. Offshore wind, remote substations, and long pipelines are costly and hazardous to inspect manually. Sending data beats sending a technician on a helicopter.
Let's return to that gearbox. Vibration analysis often uses the frequency spectrum: a healthy bearing produces a known vibration pattern, and specific defects produce energy at predictable frequencies. A rising peak at a bearing's characteristic frequency is a red flag.
A simplified version of the anomaly logic:
# Compare current vibration spectrum against a healthy baseline
import numpy as np
def anomaly_score(current_spectrum, baseline_spectrum):
# Higher score = more deviation from healthy behavior
diff = np.abs(current_spectrum - baseline_spectrum)
return np.mean(diff)
score = anomaly_score(current_reading, healthy_baseline)
if score > ALERT_THRESHOLD:
flag_for_inspection() # trigger a work orderReal systems are far more sophisticated (they use machine learning to reduce false alarms and account for varying load and weather), but the core idea holds: learn what "normal" looks like, then flag deviations.
Transformers are the workhorses of the grid, stepping voltage up and down. The main failure driver is insulation degradation. DGA sensors track gases in the oil; a sudden rise in acetylene, for example, can indicate arcing inside the unit. Utilities increasingly move from periodic oil sampling to online DGA monitoring feeding a health model.
Beyond gearboxes, models monitor blade pitch systems, generators, and yaw motors. Because wind is variable, models must separate "the vibration changed because the wind gusted" from "the vibration changed because a component is failing." This is where machine learning earns its keep.
For gas and liquid pipelines, PdM focuses on leaks and corrosion. SCADA (Supervisory Control and Data Acquisition) systems, the industrial control networks that monitor pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.View full definition → flow and pressure, feed models that detect pressure anomalies suggesting a leak or blockage. Some operators combine this with inline inspection tools (devices sent through the pipepipeAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.View full definition → to measure wall thickness).
The business case is straightforward.
Avoided catastrophic failures. Catching a bearing fault early can turn a full drivetrain replacement into a single bearing swap.
Reduced unnecessary maintenance. If an asset is healthy, you skip the scheduled overhaul and keep it generating.
Better spare-parts planning. If you know a component will need replacing in six weeks, you order the part in advance instead of paying rush shipping.
Extended asset life. Running equipment within safe, data-informed limits can push out costly replacements.
A word of caution: vendors sometimes quote dramatic savings percentages. Treat specific figures as estimates unless they come from your own validated pilot. Results vary enormously by asset type, data qualitydata qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.View full definition →, and starting maintenance maturity.
Knowledge check
1. What is the fundamental logic shift when moving from scheduled maintenance to predictive maintenance (PdM)?
2. Why is scheduled (calendar-based) maintenance described as wasteful?
3. The lesson notes that a bearing 'grinds before it seizes' and transformer oil 'produces specific gases as insulation degrades.' What core principle do these examples illustrate?
4. Select ALL correct answers about telemetry in predictive maintenance.
Select all the correct answers.
5. Select ALL correct answers describing the value of an early failure warning, as in the wind turbine bearing example.
Select all the correct answers.
PdM is powerful but not plug-and-play. Three realities slow adoption.
Data quality. Sensors drift, disconnect, and fail. A model is only as good as its inputs. Many utilities discover that a large share of their historical data is unusable for training because it was never labeled with what actually failed and when.
Not enough failures to learn from. This sounds backward, but well-maintained assets rarely fail, so there are few failure examples to train on. Teams often start with anomaly detection (spot anything unusual) before they can build accurate RUL models, and they lean on physics-based models and digital twins to fill the gap.
False alarms erode trust. If the system cries wolf, technicians stop believing it. Tuning the alert threshold is a genuine tradeoff: too sensitive means wasted truck rolls, too relaxed means missed failures. Getting this balance right is as much organizational as technical.
Integration with work orders. An alert is useless if it does not flow into the maintenance workflow. The real value comes when a flagged anomaly automatically becomes a prioritized work order in the enterprise asset management system, with the right part and technician assigned.
The frontier is combining approaches: physics-based digital twins that understand the engineering, plus machine learning that captures messy real-world patterns, plus generative AI assistants that help technicians interpret alerts and pull up repair procedures in the field.
Regulators and grid operators are also pushing reliability harder as grids absorb more variable renewables and face more extreme weather. Knowing the true health of every asset is becoming a resilience requirement, not just a cost-saving nicety.