Back to guides
3
7 min

Sensor Data Analysis

Making Sense of Vibration, Temperature & Multi-Parameter Data

The Language Machines Speak

Every running machine vibrates, generates heat, draws current, and produces sound. These are not random — they are signals. A healthy bearing produces a specific vibration signature. A misaligned shaft creates a distinct pattern. A degrading motor winding draws current in a characteristic way. Learning to read these signals — or more precisely, teaching AI to read them — is the foundation of modern condition monitoring.

This chapter focuses on the two most common and valuable types of sensor data: vibration and temperature. Together, they cover 70-80% of all detectable mechanical faults. You will learn what the numbers mean, how to interpret them, and how AI processes them to predict failures weeks or months in advance.

Vibration Analysis: The ISO 10816 Standard

Vibration analysis is the single most powerful tool for monitoring rotating machinery — motors, pumps, fans, compressors, turbines, and gearboxes. The international standard ISO 10816 (now largely superseded by ISO 20816, but still widely referenced) defines vibration severity zones for different classes of machines.

Machine Classification

ISO 10816 groups machines into four classes based on size and mounting:

ClassDescriptionExamples
Class ISmall machines up to 15 kWWorkshop motors, small pumps, bench grinders
Class IIMedium machines 15-75 kWProduction line motors, HVAC fans, process pumps
Class IIILarge machines on rigid foundationsLarge pumps, compressors, generators >75 kW
Class IVLarge machines on flexible foundationsTurbines, large fans, centrifugal compressors

Severity Zones

For each class, vibration velocity (measured in mm/s RMS or in/s peak) falls into four zones:

ZoneMeaningAction
**Zone A** (Good)Newly commissioned or excellent conditionNo action needed
**Zone B** (Acceptable)Normal long-term operationContinue monitoring at standard intervals
**Zone C** (Alert)Machine is approaching limitsIncrease monitoring frequency, plan maintenance
**Zone D** (Danger)Damage is occurring or imminentStop machine as soon as safely possible

For a typical Class III machine (large pump or compressor), the thresholds are approximately:

  • Zone A: below 2.8 mm/s (0.11 in/s)
  • Zone B: 2.8-7.1 mm/s (0.11-0.28 in/s)
  • Zone C: 7.1-11.2 mm/s (0.28-0.44 in/s)
  • Zone D: above 11.2 mm/s (above 0.44 in/s)
  • Common Vibration Fault Patterns

    Different faults produce vibration at different frequencies relative to the machine's running speed (1X = shaft speed):

    FaultDominant FrequencyCharacteristics
    Imbalance1XHigh radial vibration, proportional to speed squared
    Misalignment1X, 2XHigh axial vibration, 2X often dominant
    Bearing wear (outer race)BPFO (3-5X typical)Multiple harmonics, modulated by 1X
    Bearing wear (inner race)BPFI (5-7X typical)Higher frequency, amplitude modulated
    Looseness0.5X, 1X, harmonicsSub-harmonic at half running speed, many harmonics
    Gear meshGMF (teeth x RPM)Sidebands around gear mesh frequency

    Open data/vibration-data.csv in the code panel. You will find time-series vibration data from a 50 HP centrifugal pump over 60 days. The data includes overall velocity (mm/s RMS) and dominant frequency ratios. Watch how the 1X component stays stable while the BPFO component gradually increases — this is a classic outer race bearing defect developing over time.

    FFT: Turning Time into Frequency

    Raw vibration data is a waveform — amplitude changing over time. This is useful but limited. The real diagnostic power comes from FFT (Fast Fourier Transform), which converts the time-domain signal into a frequency-domain spectrum.

    What FFT Tells You

    Think of it like music. A time-domain waveform is the overall sound. FFT separates it into individual notes — each frequency component with its own amplitude. In machine vibration:

  • A spike at 1X running speed means something is wrong with the shaft (imbalance or misalignment)
  • A spike at bearing defect frequencies means the bearing is degrading
  • Sidebands around a main peak suggest modulation — often a sign of variable-speed faults
  • AI Advantage Over Manual FFT Analysis

    A trained vibration analyst can read an FFT spectrum and diagnose faults. But this takes years of experience, and even experts can only review one machine at a time. AI processes FFT spectra from hundreds of machines simultaneously, comparing current spectra to historical baselines, detecting subtle changes that would take a human analyst hours to spot, and trending those changes to predict when they will reach actionable levels.

    Temperature Monitoring

    Temperature is the second most valuable parameter for machine health. While vibration detects mechanical faults, temperature catches thermal issues — overheating bearings, electrical faults, cooling system failures, and process anomalies.

    Key Temperature Monitoring Points

    ComponentNormal RangeAlert ThresholdCommon Causes of Overheating
    Motor bearings40-70C (104-158F)85C (185F)Over-lubrication, contamination, misalignment
    Motor windings60-90C (140-194F)Insulation class ratingOverload, voltage imbalance, poor ventilation
    Gearbox oil40-65C (104-149F)80C (176F)Low oil level, gear wear, excessive load
    Pump mechanical sealAmbient +10-20CAmbient +40CDry running, misalignment, worn faces
    Electrical connectionsAmbient +5-10CAmbient +30CLoose connection, corrosion, overload

    Infrared Thermography

    Handheld or fixed IR cameras are standard in North American and European plants for:

  • Electrical panels — finding hot spots from loose connections or overloaded circuits (NFPA 70B recommends annual IR surveys)
  • Motor housings — detecting winding hot spots or cooling blockages
  • Steam systems — finding failed steam traps (US DOE estimates 15-30% of steam traps fail in any given year)
  • Refractory — monitoring kiln or furnace lining integrity
  • Open data/temperature-logs.csv in the code panel. You will find 90 days of temperature data from 8 critical motors in a process plant. Two of the motors show gradual temperature increases starting around Day 45 — one from a failing bearing and one from reduced cooling airflow. The AI model flags both, but only the bearing issue requires immediate attention. This is where multi-parameter correlation becomes essential.

    Multi-Parameter Correlation

    The real power of AI-driven monitoring is combining multiple data streams. A single parameter change might be noise. Two or three parameters changing together is almost always a real fault developing.

    Correlation Examples

    Vibration ChangeTemperature ChangeCurrent ChangeLikely Diagnosis
    1X increaseBearing temp upCurrent stableMechanical imbalance or misalignment
    BPFO increaseBearing temp upCurrent slight increaseBearing defect — plan replacement
    Overall increaseMotor winding temp upCurrent increaseMechanical overload — check driven equipment
    No changeConnection temp upCurrent fluctuatingElectrical fault — check connections
    2X increase, axialCoupling temp upCurrent stableMisalignment — realign at next opportunity

    Why AI Outperforms Rule-Based Alarms

    Traditional monitoring uses simple thresholds: if vibration exceeds 7 mm/s, trigger an alarm. This produces false alarms (a cold start might briefly exceed 7 mm/s) and missed faults (a slow increase from 2 to 5 mm/s might not trigger the alarm but is clearly trending toward failure).

    AI models learn the normal relationship between parameters for each specific machine under different operating conditions (load, speed, ambient temperature). They detect when that relationship changes, even if no single parameter has exceeded its absolute threshold. This is why AI-based monitoring catches 30-40% more faults than rule-based systems, with 60-70% fewer false alarms.

    Key Takeaways

  • ISO 10816/20816 gives you the framework for vibration severity assessment. Know your machine class and the zone boundaries. Anything in Zone C needs attention; Zone D needs immediate action.
  • FFT is the diagnostic X-ray of vibration analysis. It separates the overall vibration into frequency components that map directly to specific fault types. AI automates this analysis across hundreds of machines simultaneously.
  • Temperature confirms and complements vibration. A vibration increase plus a temperature increase is far more diagnostic than either alone. Always correlate multiple parameters before making maintenance decisions.
  • AI beats thresholds. Simple alarm limits produce false alarms and miss slow-developing faults. AI models learn what is normal for each machine and detect deviations in the relationships between parameters — catching faults earlier and more reliably.
  • Start with vibration on your critical rotating equipment. Add temperature monitoring on bearings and electrical connections. That combination covers the majority of detectable mechanical and electrical faults.
  • This is chapter 3 of AI for Engineers (Global).

    Get the full hands-on course — free during early access. Build the complete system. Your projects become your portfolio.

    View course details