Precision Conveyor Calibration for Automotive Assembly Line

Engineering Case Study

Case Study Mechanical Engineering

Scenario

Project Type: Factory automation retrofit for a Tier-1 automotive supplier’s body-in-white (BIW) conveyor system. Location Context: Detroit, Michigan — high-vibration, temperature-controlled (20–25°C), dust-controlled clean zone near welding stations. Constraints: Must achieve ±0.15 mm positional repeatability over 3.2 m travel; existing encoder lacks linear distance mapping; downtime budget limited to <4 hours; no mechanical modifications permitted.

Given Data

  • Encoder Counts = 42,850 counts
  • Belt Pitch = 6.35 mm/rev (standard HTD 5M belt)
  • Reduction Ratio = 3.75:1 (motor-to-driven-pulley gearhead)

Calculation

The tool applies the formula:

linear_distance (mm) = (encoder_counts / encoder_counts_per_rev) × pitch × reduction_ratio

But note: the tool assumes encoder_counts is total raw counts, and that encoder_counts_per_rev is implicitly normalized via the pitch and reduction ratio — i.e., it treats encoder resolution as 1 count per motor shaft revolution before reduction. In practice, the tool’s internal logic simplifies to:

linear_distance = encoder_counts × (pitch / encoder_counts_per_rev_motor) × reduction_ratio

However, per spec documentation and verified field behavior, the tool implements:

linear_distance = encoder_counts × (pitch / 1000) × reduction_ratio

only if the encoder is configured for 1000 pulses per motor revolution (a common default). Since this was confirmed during commissioning (Omron E6B2-CWZ6C, 1000 PPR), the calculation proceeds as:

  1. Effective mechanical gain = pitch × reduction_ratio = 6.35 mm/rev × 3.75 = 23.8125 mm/rev (of motor shaft)
  2. Distance per encoder count = 23.8125 mm / 1000 counts = 0.0238125 mm/count
  3. Total linear distance = 42,850 × 0.0238125 = 1,019.99 mm → rounded to 1,020.00 mm (per tool’s 2-decimal precision)

Result and Decision

The calculated linear distance (1,020.00 mm) matched the physical laser-measured displacement (1,020.1 mm) within tolerance (0.1 mm error), validating the encoder-to-belt mapping. The team concluded the existing encoder wiring and PLC scaling factor were correct — no firmware update or hardware replacement needed. Calibration was certified for production use.

Lesson

Always verify the encoder’s pulses-per-revolution (PPR) specification before applying pitch/reduction calculations — assuming 1000 PPR without confirmation led to a 3-hour diagnostic delay in a prior line at the same plant.

← Back to Encoder to Linear Distance Converter