An integrator amplifier is an operational amplifier (op-amp) circuit that produces an output voltage proportional to the accumulated sum (integral) of the input voltage over time. In a real circuit, this changes a steady DC input into a continuously ramping voltage, or transforms a digital square wave into an analog triangle wave. Beginners commonly confuse it with a simple passive RC low-pass filter—which only approximates integration at high frequencies—or a differentiator amplifier, which does the exact opposite by outputting the rate of change rather than the accumulated sum.

The Water Tank Analogy: Think of the input voltage as water flowing through a pipe into a tank. The integrator amplifier is the tank itself. The output voltage is the water level. A constant flow (DC voltage) doesn't just maintain the level; it causes the water level (output voltage) to rise continuously over time until the tank overflows (the op-amp hits its supply rail).

The Core Math and a Worked Numeric Example

To understand how an integrator amplifier behaves on the bench, we need to look at the governing equation. The output voltage ($V_{out}$) is defined by the integral of the input voltage ($V_{in}$) over time, scaled by the feedback capacitor ($C_f$) and input resistor ($R_{in}$):

Vout(t) = - (1 / RinCf) ∫ Vin dt

The negative sign indicates phase inversion, a hallmark of the standard inverting op-amp topology. Let's run a concrete numeric example using real component values you would find in a typical waveform generator or analog computer build.

Worked Example: Calculating the Ramp Rate

  • Input Voltage ($V_{in}$): -1.5V DC (constant)
  • Input Resistor ($R_{in}$): 15 kΩ
  • Feedback Capacitor ($C_f$): 100 nF (0.1 μF)
  • Op-Amp: TL072 (powered by ±15V rails)

First, we calculate the rate of change of the output voltage ($dV_{out}/dt$):

dVout/dt = - Vin / (Rin × Cf)

dVout/dt = - (-1.5V) / (15,000Ω × 0.0000001F)

dVout/dt = 1.5 / 0.0015 = 1,000 V/s

The output will ramp upward at a rate of 1,000 volts per second (or 1 V/ms). If we apply this -1.5V input for exactly 5 milliseconds (0.005 seconds), the output voltage will be:

Vout = 1,000 V/s × 0.005 s = 5.0V

Because the op-amp is powered by ±15V rails, it has plenty of headroom to reach 5V without clipping. If you left the input connected for 14ms, the output would try to reach 14V, but the TL072's output swing limits (typically ~1.5V below the rail) would cause it to saturate around 13.5V.

Practical vs. Ideal: Fixing the DC Drift Problem

The math above assumes an ideal op-amp. In reality, if you build that exact circuit on a breadboard using a standard LM741 or TL072, you will likely see the output drift to the positive or negative supply rail within seconds, even if you ground the input.

This happens because real op-amps have input bias currents and input offset voltages. The bias current slowly charges the feedback capacitor, and because the capacitor blocks DC, the op-amp's open-loop DC gain is essentially infinite. It amplifies its own tiny internal errors until it saturates.

To fix this, we build a practical integrator by adding a large feedback resistor ($R_f$) in parallel with the capacitor. This resistor limits the DC gain to a manageable level (usually $-R_f / R_{in}$) while allowing the capacitor to handle the AC integration.

Characteristic Ideal Integrator Practical Integrator (with $R_f$)
Feedback Components Capacitor ($C_f$) only Capacitor ($C_f$) parallel with Resistor ($R_f$)
DC Gain Infinite (Open-loop) Finite ($-R_f / R_{in}$)
Low-Frequency Cutoff ($f_c$) 0 Hz (Integrates down to DC) $1 / (2πR_fC_f)$ (Acts as inverting amp below $f_c$)
Drift Susceptibility High (Saturates quickly) Low (Stable DC operating point)
Best Op-Amp Choice N/A (Theoretical) Zero-drift (e.g., ADA4522) or Precision (OP27)

Rule of thumb for $R_f$: Make $R_f$ at least 10 times larger than $R_{in}$. If $R_{in}$ is 15 kΩ, use a 150 kΩ or 220 kΩ resistor for $R_f$. This ensures the circuit integrates accurately at your target AC frequencies while preventing DC saturation. For deep-dive design parameters, the All About Circuits semiconductor textbook provides excellent baseline schematics for practical integrator biasing.

Where You Meet Integrator Amplifiers in Practice

You won't just find integrators in textbook problems; they are foundational building blocks in modern control systems and measurement hardware.

  • PID Controllers (The 'I' Term): In industrial motor drives and temperature controllers, the Proportional-Integral-Derivative (PID) algorithm uses an integrator to eliminate steady-state error. If a conveyor belt motor is consistently running 2% slower than the setpoint, the integrator continuously accumulates that 2% error over time, steadily increasing the drive voltage until the error is exactly zero.
  • Charge Amplifiers for Piezo Sensors: Piezoelectric accelerometers and force sensors output a tiny, high-impedance charge when physically deformed. An integrator amplifier (configured as a charge amplifier) converts this fleeting charge packet into a stable, measurable voltage proportional to the physical force, ignoring the cable capacitance. Analog Devices details how precision op-amps like the AD8605 are used in these high-impedance sensor front-ends.
  • Function Generators: If you need a triangle wave but only have a square wave oscillator (like a 555 timer), feeding that square wave into an integrator amplifier will yield a highly linear triangle wave. The constant high/low voltages of the square wave create the perfect constant-current charge/discharge cycles for the feedback capacitor.

Frequently Asked Questions

Why does my op-amp integrator circuit saturate at the supply rail?

Saturation is almost always caused by DC drift. Real op-amps have input bias currents that slowly charge the feedback capacitor. Because the capacitor blocks DC feedback, the op-amp amplifies its own internal offset voltage and bias errors with infinite open-loop gain. To fix this, add a large bleeder resistor (e.g., 100kΩ to 1MΩ) in parallel with the feedback capacitor to provide a DC feedback path, or use a chopper-stabilized (zero-drift) op-amp like the TI TLC2652.

What is the difference between an ideal and a practical integrator amplifier?

An ideal integrator uses only a capacitor in the feedback loop, meaning it integrates signals all the way down to 0 Hz (DC), but it is highly unstable in the real world due to op-amp imperfections. A practical integrator adds a resistor in parallel with the capacitor. This creates a low-frequency cutoff point; below this frequency, the circuit acts as a standard inverting amplifier rather than an integrator, which stabilizes the DC operating point and prevents rail saturation.

How do I reset an integrator amplifier circuit to zero volts?

In analog computing or sample-and-hold circuits, you often need to discharge the feedback capacitor to reset the output to 0V. You do this by placing an electronic switch in parallel with the capacitor. For low-frequency or DC applications, a small-signal MOSFET (like the 2N7000) or an analog switch IC (like the CD4066) works perfectly. When you pulse the gate high, the switch closes, shorting the capacitor and instantly resetting the integrator. Be sure to account for the switch's on-resistance and charge injection, which can introduce small voltage spikes during the reset phase.