Every control system — thermostats, drones, shooter flywheels, cruise control — gets described in the same three-symbol picture language. Ten minutes here and you'll read a control diagram the way you read a wiring schematic.
Control systems are conversations between values: a target speed, a voltage, a measurement. Describing those conversations in sentences gets tangled fast — so engineers draw them instead. Every diagram on every page of every controls textbook is built from exactly these parts:
Arrows are signals — a number that exists over time: a setpoint in rad/s, a motor voltage, a sensor reading. Boxes are blocks — anything that turns its input signal into an output signal. A block can be code (a controller computing voltage from error) or physics (a motor turning voltage into motion); the notation deliberately doesn't care. Circles are summing junctions — each incoming arrow carries a + or −, and the output is the signed sum. The most famous junction in engineering computes setpoint − measurement, which has a name you'll use forever: the error.
Chain the symbols left to right and you get the simplest control structure there is. A setpoint enters, a controller block turns it into a control effort (for robots: voltage), the plant — the physical mechanism being controlled — turns voltage into motion, and the result exits stage right:
Drive one yourself. The widget below is a live open-loop diagram wired to a real simulated flywheel — you are the controller, and the numbers ride the wires:
Now add one path: measure the output with a sensor and route it back to a summing junction at the input, with a minus sign. The junction computes error = setpoint − measurement, and the controller acts on the error instead of the raw setpoint. This shape — the closed loop, or feedback loop — is the most drawn diagram in all of engineering:
One more standard citizen of these diagrams: the disturbance — an outside influence that shoves the plant without permission. It enters the picture as an extra arrow summing into the plant's input:
To read any diagram: find the plant (the physics box), find the setpoint (the arrow entering from the left), then follow the arrows — every path is a chain of cause and effect, and every loop is a system checking its own work. If you can trace one pulse all the way around a closed loop and say what each symbol did to it, you're literate.
arrow — a signal (a value over time)box — a block (transforms signals)circle — a summing junction (signed addition)plant — the physical mechanismsetpoint r — the goalerror e — r − measurementdisturbance — the world shoving backopen loop — no return pathclosed loop — output routed back to the input