A voltage controlled amplifier (VCA) is an electronic circuit where the output signal's amplitude is scaled by a separate DC control voltage, allowing dynamic, real-time gain adjustment without altering the signal path's physical resistors. While a standard op-amp relies on fixed feedback networks to set a static gain, a VCA fundamentally changes how a circuit handles dynamic range, enabling automated compression, envelope shaping, and automatic gain control (AGC) on the fly. Beginners frequently confuse VCAs with digitally controlled amplifiers (which use SPI/I2C to switch discrete resistor ladders in stepped increments) or voltage controlled oscillators (VCOs, which change frequency rather than amplitude). Think of a VCA like a garden hose with a mechanical pressure regulator; the water (your AC audio or RF signal) flows through continuously, but a separate hand turning the dial (the DC control voltage) dictates exactly how much gets out the other side.

Terminology Clarification: While hobbyists often search for a "voltage controlled amplifier opamp," standard voltage-feedback op-amps (like the NE5532 or TL072) cannot natively function as VCAs. True VCA action requires either an Operational Transconductance Amplifier (OTA) or a dedicated VCA IC built on a Blackmer cell or log-antilog architecture. You will often see these dedicated ICs paired with standard op-amps in a circuit to handle impedance buffering.

Core Architecture: OTA vs. Dedicated VCA ICs

When designing a gain-scaling stage, you generally choose between an OTA (which converts input voltage to output current, controlled by a bias current) and a dedicated VCA IC (which takes a control voltage directly and outputs a scaled voltage). OTAs like the LM13700 are inexpensive and flexible but require external linearizing diodes to keep Total Harmonic Distortion (THD) acceptable. Dedicated VCAs like the THAT2180 use internally matched transistor arrays to achieve ultra-low distortion straight out of the chip, though they cost significantly more.

Below is a benchmark comparison of the most common ICs you will encounter on the bench in 2026, detailing their control mechanisms and real-world performance limits.

IC Part Number Architecture Type Control Mechanism Typical THD (1 kHz) Approx. Unit Price
LM13700 (Texas Instruments) Dual OTA $I_{ABC}$ (Bias Current) ~0.5% (w/ diodes) $1.60
THAT2180A (THAT Corp) Precision Blackmer VCA -30 mV/dB (Voltage) < 0.01% $6.50
V2164 (CoolAudio) Quad VCA (SSM2164 clone) -33 mV/dB (Voltage) ~0.05% $3.80
MAX9933 (Analog Devices) RF VCA / Detector Linear dB Voltage N/A (RF Envelope) $4.20

Worked Example: Calculating Control Voltage for Target Gain

Let's look at a concrete numeric example using the industry-standard THAT2180A, which has a precise control sensitivity of -30 mV/dB. This means for every -30 millivolts applied to the control pin, the gain increases by +1 dB.

Scenario: You are building an audio compressor and need the VCA to apply exactly +12 dB of make-up gain to a signal, and later attenuate the signal by -20 dB during a loud transient.

The Formula:
V_control (in Volts) = Target Gain (in dB) × Sensitivity (in V/dB)

Calculation 1: +12 dB Make-up Gain

  • V_control = 12 dB × (-0.030 V/dB)
  • V_control = -0.360 V (or -360 mV)
  • Bench Note: You must supply a negative 360 mV DC reference to the control pin to achieve this amplification.

Calculation 2: -20 dB Attenuation (Compression)

  • V_control = -20 dB × (-0.030 V/dB)
  • V_control = +0.600 V (or +600 mV)
  • Bench Note: A positive 600 mV DC signal will force the VCA to attenuate the passing AC audio signal by 20 dB.
Watch Your Polarity: With the THAT2180 and CoolAudio V2164, a negative control voltage yields positive gain, while a positive control voltage yields attenuation. Reversing this in your microcontroller's DAC code will result in a compressor that gets louder when the signal peaks, effectively turning your circuit into a noise pump.

Where You Meet This in Practice: Audio, RF, and Synth Modules

You will rarely see a VCA used as a simple static volume knob. Their true value emerges in systems that require continuous, automated feedback loops or modulation.

  • Audio Dynamics (Compressors/Limiters): In a studio compressor, the AC audio signal is tapped off and sent to a sidechain rectifier. This rectifier converts the audio peaks into a DC voltage. That DC voltage is then fed directly into the VCA's control pin. As the audio gets louder, the DC control voltage rises, automatically instructing the VCA to attenuate the main signal path. This is the literal definition of dynamic range compression.
  • Analog Synthesizers (Envelope Shaping): A raw oscillator produces a continuous, unending square or sawtooth wave. To make it sound like a plucked string or a piano key, the synth routes the oscillator through a VCA. An ADSR (Attack, Decay, Sustain, Release) envelope generator outputs a sweeping 0-5V DC control signal that rapidly opens and closes the VCA, shaping the amplitude of the note over time.
  • RF Automatic Gain Control (AGC): In software-defined radios (SDR) and receiver front-ends, a weak distant station might suddenly be overpowered by a strong local transmitter. An RF VCA (like the MAX9933) monitors the incoming signal strength and dynamically adjusts its attenuation to keep the voltage fed to the Analog-to-Digital Converter (ADC) perfectly within its clipping threshold, preventing digital aliasing and distortion.

Design Pitfalls and PCB Layout Rules

Why is there a DC offset at my VCA output?

This is known as Control Voltage Feedthrough. Because the control pin is highly sensitive to DC, any noise, ripple, or ground bounce on your control voltage line will capacitively couple into the AC signal path, manifesting as a thump or a DC offset at the output. Always low-pass filter your control voltage line (a simple 10kΩ resistor and 100nF capacitor to ground) before it hits the VCA pin, and use a dedicated, low-noise linear regulator for your control voltage reference.

My LM13700 OTA sounds terribly distorted. Did I wire it wrong?

Probably not. The LM13700 is a transconductance amplifier that inherently generates high harmonic distortion if the input signal exceeds a few millivolts. To fix this, you must use the internal linearizing diodes (pins 1 and 16 on the DIP package). You bias these diodes with a small DC current (typically 200µA to 1mA). This applies a logarithmic correction to the input stage, dropping the THD from an unusable 10% down to roughly 0.5%.

How do I handle grounding on a VCA PCB?

VCAs are notoriously unforgiving of poor grounding. You must use a star ground topology. The ground reference for your audio input, audio output, and the control voltage generator must all meet at a single physical point (usually the ground pin of the VCA IC or the decoupling capacitor). If the control voltage ground and the audio ground share a long, thin PCB trace, the heavy audio return currents will create a voltage drop across that trace, which the VCA will interpret as a control voltage modulation, resulting in severe signal-dependent distortion.