SCR Circuit Diagram: Silicon-Controlled Rectifier Explained

A silicon-controlled rectifier is a four-layer PNPN thyristor with three terminals: anode, cathode, and gate. The simplest description of its behavior: once triggered by a gate pulse, it conducts heavily from anode to cathode and keeps conducting until the current drops below a threshold -- even after the gate signal is removed. That self-sustaining behavior (latching) is what makes SCRs useful for AC power control and less suitable for simple on/off switching in DC circuits.

Understanding the SCR properly requires getting the latching and holding current concept right, because it defines every circuit that uses one.

SCR Terminal Identification

A typical through-hole SCR like the BT151-500R or C106D (TO-92 package, small loads) or the BT152 / 2N6509 (TO-220, higher current) has three terminals:

Pin assignment varies by package. For a BT151 in TO-220: when facing the heatsink tab side, pins left to right are Gate -- Cathode -- Anode. For a TYN612 in TO-220: Anode is the tab. Always check the datasheet -- tab-is-anode is common but not universal.

Latching Current and Holding Current

These two parameters define the SCR's behavior:

Latching current (I_L): The minimum anode current that must be flowing at the moment the gate pulse is removed for the SCR to remain conducting. If the load current is below I_L when the gate turns off, the SCR stops conducting immediately. For a BT151, I_L is typically 30--50mA.

Holding current (I_H): The minimum anode current required to keep the SCR conducting after it has latched. If anode current falls below I_H during operation, the SCR commutates off. I_H for the BT151 is typically 15mA.

This has a practical consequence: an SCR naturally turns off at every AC zero-crossing, because anode current briefly passes through zero. That is why SCRs are so well-suited to AC phase control -- the AC supply provides automatic commutation once per half-cycle.

In a DC circuit, the SCR must be turned off by forcing the current below I_H, which requires interrupting the circuit or using a forced commutation circuit (a capacitor discharge that momentarily reverse-biases the SCR).

Basic SCR Circuit: DC Switching

The simplest SCR circuit is a latching switch:

  1. Anode connects to positive supply through the load.
  2. Cathode connects to negative supply (ground).
  3. Gate connects to a trigger source through a gate resistor.

Component values for a 12V DC circuit, load R = 100Ω, using a BT151:

If the trigger is 5V from a microcontroller: Rgate = (5V - 1.2V) / 0.010A = 380Ω → use 390Ω or 470Ω

Once triggered, the SCR latches and the gate has no further effect. To turn it off, you must open the circuit or reduce load current below I_H (15mA for BT151).

AC Phase Control: The Classic SCR Application

Phase control is how an SCR dims a lamp or controls motor speed on an AC circuit. The idea: trigger the SCR at a variable point in each AC half-cycle. The later in the half-cycle you trigger it, the less energy reaches the load.

Circuit Description

Components:

How it works:

  1. Each AC half-cycle, the capacitor in the RC network charges toward the peak AC voltage.
  2. When the capacitor voltage reaches the diac's trigger voltage (~32V), the diac fires and dumps the capacitor charge into the SCR gate.
  3. The SCR fires and conducts for the remainder of that half-cycle.
  4. At the zero-crossing, the SCR commutates off naturally.
  5. Increasing the RC time constant (higher potentiometer resistance) delays the firing point, reducing average power to the load.

Safety Note

AC phase control circuits operate at mains voltage (120V or 230V AC). Every node in the circuit is at potentially lethal voltage. Use an enclosure with no exposed conductors. Do not probe a live circuit without proper isolation. Consider using an opto-isolator (MOC3021 or MOC3041) to isolate the low-voltage gate drive from the mains side -- the MOC3041 includes a zero-crossing detector that also reduces EMI. If you are new to mains circuits, simulate the circuit at a safe DC voltage first and have an experienced person review your layout before connecting to mains.

Gate Triggering with Opto-Isolation

For microcontroller-driven AC control, use an opto-TRIAC or opto-SCR driver:

  1. Arduino digital output → 330Ω resistor → MOC3041 input LED (pins 1, 2)
  2. MOC3041 output (pins 4, 6) drives the SCR gate through a gate resistor
  3. SCR is fully isolated from the microcontroller

The MOC3041 has a built-in zero-crossing circuit that only fires the SCR within a narrow window around the AC zero-crossing, which is cleaner than mid-cycle triggering.

SCR vs. TRIAC

A TRIAC (TRIode for Alternating Current) is effectively two SCRs in antiparallel on a single silicon chip. It conducts in both directions when triggered, making it more natural for AC load control. The BT136 (4A) and BT138 (12A) are common TO-220 TRIACs.

Use a TRIAC when:

Use an SCR when:

Simulating an SCR Circuit

Before building any SCR phase-control circuit -- especially one connected to mains -- sketch it in CircuitDiagramMaker and simulate at a safe DC or low-AC voltage. This lets you verify the gate timing, the diac firing point, and the expected voltage waveform across the load without any mains risk. Adjust the RC component values in the simulation to confirm the phase control range covers your load requirements.

Create Your Own SCR Circuit Diagram

CircuitDiagramMaker includes SCR and thyristor symbols. For a phase-control circuit:

Create your own SCR circuit diagram -- free

Key Takeaways