Home > Warehouse Automation > Calibration

How to calibrate autonomous forklift LiDAR in multi-level mezzanine setups?

We recently deployed three autonomous Raymond reach-truck systems equipped with SICK microScan3 LiDAR arrays inside a multi-level steel mezzanine facility. The problem is that when the forklifts transition from the concrete ground slabs onto the steel-plate mezzanine platforms, structural floor vibration throws off the elevation reference by about 12-18mm. This is causing safety-stop false triggers at the dock door transitions.

Is anyone running adaptive thresholding on their LIDAR arrays, or are you physically decoupling the mount assemblies to damp out the high frequency vibration?

// SICK Scanner parameter excerpt
{
  "safety_field": {
    "detection_range_mm": 1800,
    "tolerance_offset_z": 12,
    "structural_filter": "high_rigidity"
  }
}
18
Posted: July 12, 2026
✔ VERIFIED SOLUTION BY USER & ADMINS

You are fighting a classic structural frequency matching problem. There are two solutions, and we had to apply both at our Rotterdam logistics facility:

  1. Physical Damping: Do not hard-mount the LiDAR scanner bracket to the chassis. Install 4x silicone silent block damper rings (Shore hardness 45A) between the mount arm and the vehicle frame. This dampens structural frequencies above 15Hz.
  2. Parameter Adjustment: Change your structural_filter from "high_rigidity" to "dynamic_mezzanine_mesh". This increases the internal integration window from 30ms to 90ms. Here is the correct raw config script:
// Resolved parameter mapping configuration
{
  "safety_field": {
    "detection_range_mm": 1800,
    "tolerance_offset_z": 24,
    "structural_filter": "dynamic_mezzanine_mesh",
    "integration_window_ms": 90
  }
}
42
Posted: July 13, 2026

Excellent advice from Helmut there. Note that if you change the integration window parameters to 90ms, you must recalculate your safe stopping distances under standard regulatory guidelines (e.g., ISO 13849-1). Since the vehicle response time will increase by 60ms, ensure that your braking zone safety envelopes are scaled outwards by approximately 8-12cm depending on max travel velocity.

7
Posted: July 13, 2026

Post Your Technical Response

Please keep responses concise and constructive according to Guidelines.