Coasterkidmwm wrote:
Does Six Flags allow bottom-tier ride ops to clear errors?
No, they can't even unlock the restraints when a trouble light happens. There are some ride specific exceptions to this policy but all of those involve unloaded units and a safety check procedure.
slosprint wrote:
Since what Mikey says is probably accurate, why don't rides simply save last known train positions on non-power reliant memory, like a hard drive, during a reset as an industry standard, or have sensor data not be reliant on the power cycle of the rest of the system? We are talking about less than 1 Kb of data here, and assuming the train had valleyd at the time of the reset, ride operators would have been told exactly what section the train was on, or what section had not picked up data, and been forced to count trains. Maybe I'm just being captain hindsight here, but it seems like an easy and inexpensive fix.
While this sounds like a solution that would be easy to implement, ride computers are not like your home PC. Think of a ride computer as a giant calculator. It's very good at giving you correct data reliably so long as the inputs are correct, but if you take the battery out, use the clear button then all the data you just entered is lost. PLCs are very simpleton, they have no persistent storage outside of a flash card that a working program is written. The PLC cannot write to this card, but it can output data to a separate storage for logging but it can't ready back data from the system it outputs to.
PLCs use lader logic as a programing language. The program is stored in flash and loaded when the PLC_START function is called. When a safe stop needs to occur, a PLC_STOP function is called. This unloads all data from memory. By default if power is removed, the PLC reverts to PLC_STOP until PLC_START is called in a start up sequence. There is no way to preserve the set values once a reset has commenced. You can only check against the existing values you have at start up.
I know this sounds like a limitation, but these controllers are designed to handled millions of cycles and do so with out fault or error. They have been trusted in service for over 35 years.