Original title: Unknown
Article
The article explains how everyday elevator behavior depends on scheduling algorithms rather than indifference. It introduces SCAN, where a car runs from lobby to top before reversing, and LOOK, which reverses at the highest requested floor. For multiple cars, it describes centralized dispatch, initially assigning calls to the nearest car and then improving on that with Otis’ Relative System Response (RSR), which scores candidate cars using anti-bunching and idle-nearby rules and re-optimizes every five seconds. RSR can reroute riders when delays occur. Using queueing-style wait-time distributions, the author emphasizes percentile metrics such as p50 and p90 over averages, since rare long waits shape user perception. The piece notes that traffic patterns vary by time of day, with asymmetric peaks causing different wait profiles and making mornings especially difficult. Benchmarks showed LOOK can outperform RSR at high load and in smaller banks, where frequent full loads reduce the value of finer optimization. Destination dispatch, despite richer input, can be slower for waits in most cases because rigid pre-assignment reduces flexibility compared with adaptive reassignment. The article also points to journey time as a separate metric and concludes by suggesting that much of perceived unfairness is the consequence of algorithmic complexity and tradeoffs rather than negligence.
Commenters largely validate the article’s core model, connecting it to classic disk-scheduling and known dial-a-ride formulations and sharing links to simulators and prior elevator-control projects. Some argue destination dispatch can outperform simple systems in strong burst patterns where many users head to the same floor, while others report it being slower, confusing, and operationally inconvenient when users must hurry to the assigned car. Multiple comments raise practical constraints absent from the model, including car capacity, full-car rejection, uneven traffic assumptions, parking floor placement, and maintenance costs that can favor fewer repositioning moves over lower wait times. Several anecdotes from office, ships, and old manually operated systems show user behavior and operator practices can dominate outcomes, especially incorrect button usage and people ignoring guidance. Engineers and game designers echoed that adaptive algorithms must stay intuitive, noting that small improvements, fairness concerns, and game-like heuristics often beat theoretical optimality. Others highlight policy-level factors, from reserved VIP lanes and interview problems to sales-driven "smart" upgrades that may create complexity with limited benefit. Overall, the comment thread broadens the discussion from wait-time math to implementation, explainability, and socio-technical tradeoffs.