A closed loop system is a control mechanism that uses continuous feedback from its output to automatically adjust its input and maintain a desired setpoint. If you are building power supplies, programming motor controllers, or designing HVAC automation, understanding this concept is the difference between a circuit that drifts under load and one that holds rock-steady. Unlike open-loop systems that blindly execute a command, a closed-loop design constantly measures the actual result, compares it to the target, and corrects the error in real time.

The Core Definition and the "Closed Circuit" Confusion

The most common mistake beginners make when studying the definition of a closed loop system is confusing it with a "closed electrical circuit." A closed circuit simply means there is a continuous conductive path for current to flow from the source, through the load, and back to the source. If a switch is turned on and a lightbulb illuminates, that is a closed circuit.

A closed loop system, however, refers to the logical or control architecture where the output signal is routed back to the input via a sensor or feedback network. It changes a dumb actuator into a smart regulator. Adding a feedback loop increases component count—requiring sensors, comparators, and error amplifiers—but it entirely eliminates the need for manual trimming when environmental conditions or loads change.

At the heart of every closed loop controller is the error amplifier, which continuously calculates the difference between what you want and what you are actually getting:

Error Signal = Setpoint - Measured Output

This error signal is then fed into a compensator (like a PID controller) that adjusts the drive signal to the plant (the load) to drive the error to zero.

Open vs. Closed Loop: Performance Data in Motor Control

To see what a feedback loop actually buys you on the bench, consider a 1/2 HP (373W) 12V DC brushed motor driving a variable mechanical load (0 to 2 Nm torque). Below is a direct comparison of running this motor with a simple open-loop PWM signal versus a closed-loop system using a magnetic encoder and a microcontroller-based PID algorithm.

Parameter Open-Loop (Direct PWM) Closed-Loop (Encoder + PID) Delta / Impact
No-Load Speed 1200 RPM 1200 RPM 0% (Identical baseline)
Full-Load Speed (2 Nm) 650 RPM 1195 RPM +83.8% speed recovery
Speed Regulation Error ±45% ±0.4% 112x more precise
Transient Response Time N/A (Passive droop) 12 ms Defined active recovery
Core Component Count 1 MOSFET, 1 Diode 1 H-Bridge, Encoder, MCU +3 major ICs required
Typical BOM Cost (2026) $4.50 $28.00 +$23.50 hardware premium

As noted in Texas Instruments' motor control design guides, the open-loop system suffers massive speed droop because the armature resistance causes a voltage drop as current increases to meet the 2 Nm torque demand. The closed-loop system detects the RPM drop via the encoder within milliseconds and increases the PWM duty cycle to compensate, holding the speed steady at the cost of higher BOM complexity.

Worked Numeric Example: Designing a Buck Converter Feedback Loop

Switch-mode power supplies are the most ubiquitous closed-loop systems on the workbench. Let us design the feedback resistor divider for a classic Texas Instruments LM2596 adjustable buck converter to step 12V down to a tight 5.0V logic rail.

The LM2596-ADJ internal error amplifier compares the voltage at the Feedback (FB) pin against an internal reference voltage (Vref = 1.23V). The output voltage is set by a resistor divider consisting of R1 (top resistor, between Vout and FB) and R2 (bottom resistor, between FB and GND).

The governing equation is:

Vout = Vref × (1 + R1 / R2)

Step 1: Choose R2. The datasheet recommends keeping the bias current through the divider high enough to swamp input leakage currents, but low enough to minimize quiescent draw. A 1.0 kΩ resistor for R2 yields a bias current of 1.23mA, which is ideal.

Step 2: Solve for R1.
5.0V = 1.23V × (1 + R1 / 1000Ω)
4.065 = 1 + (R1 / 1000)
3.065 = R1 / 1000
R1 = 3065 Ω

Step 3: Select a standard E96 (1%) resistor. The nearest 1% value is 3.09 kΩ (3090 Ω).

Step 4: Verify the actual output voltage.
Vout_actual = 1.23 × (1 + 3090 / 1000)
Vout_actual = 1.23 × 4.09 = 5.0307V

The resulting error is +0.61%, which is well within the ±2% tolerance required for 5V CMOS logic. When the 12V input sags to 9V, or the load suddenly draws an extra 500mA, the voltage at the FB pin momentarily dips below 1.23V. The internal error amplifier detects this, immediately increases the duty cycle of the internal switching transistor, and forces the output back to 5.03V. For modern high-frequency designs, engineers often migrate to parts like the TPS54331 family, which use similar feedback math but operate at higher switching frequencies to shrink the output inductor.

Where You Meet Closed-Loop Systems in Practice

Once you understand the definition of a closed loop system, you will start seeing them everywhere in electrical and electronic installations:

  • MPPT Solar Charge Controllers: Maximum Power Point Tracking controllers use a closed-loop perturb-and-observe algorithm. They constantly adjust the input impedance of the DC-DC converter, hunting for the exact voltage where the solar panel outputs maximum wattage, adjusting dynamically as clouds pass over the array.
  • Variable Frequency Drives (VFDs): In industrial 3-phase motor control, closed-loop flux vector drives use current sensors to measure stator current in real time. This allows the drive to maintain 100% rated torque even at zero RPM, which is critical for hoists and elevators.
  • 3D Printer Hotends: A PID controller reads a 100k NTC thermistor and pulses a 40W heater cartridge to hold the nozzle at exactly 205°C for PLA. The loop actively compensates for the massive thermal disturbance introduced when the part-cooling fan turns on.
  • Automotive Alternators: The internal voltage regulator measures the battery terminal voltage and adjusts the DC excitation current to the rotor winding, maintaining a steady 14.2V output regardless of engine RPM or headlight load.

FAQ: Troubleshooting Feedback Stability

Q: Why does my closed-loop power supply oscillate or ring on the oscilloscope?
A: This is phase margin degradation. It is usually caused by missing or degraded output capacitors (specifically, a rise in Equivalent Series Resistance, or ESR) altering the loop's zero/pole placement. It can also happen if you route the high-impedance feedback trace too close to the switching inductor, injecting magnetic noise directly into the error amplifier.

Q: Can a closed-loop system accidentally become an open-loop system?
A: Yes, and it is a catastrophic failure mode. If the sensor fails, the thermistor wire breaks, or the feedback PCB trace fractures, the controller reads zero output. Assuming the output is below the setpoint, the controller will drive the actuator to its maximum limit (100% duty cycle or full rail voltage).

Safety Warning: Because a broken feedback loop will cause a power supply to rail out and potentially deliver lethal or component-destroying overvoltage, always design a hardware crowbar circuit (an SCR or thyristor that shorts the output and blows the main fuse if voltage exceeds a safe threshold) independent of the primary control loop.

Q: What is the difference between closed-loop control and feedforward?
A: Feedforward measures the disturbance (like a sudden drop in input voltage or a known load step) and adjusts the output before the error occurs. Closed-loop measures the output and reacts after the error occurs. High-performance systems, like server motherboard VRMs, use both simultaneously to achieve microsecond transient response times.