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

Common SCR Failure Modes and How to Diagnose Them

An SCR that misbehaves usually falls into one of a few recognizable patterns. Knowing what each looks like on the bench saves time chasing the wrong part of the circuit.

False triggering from dV/dt: A fast-rising voltage transient across the anode-cathode junction can trigger the SCR into conduction with no gate signal present. The rapid rate of voltage rise couples enough current through the device's internal junction capacitance to reach the triggering threshold on its own. This shows up as the load turning on at random times, often when other inductive loads (relays, motors) switch on the same supply. An RC snubber network across anode and cathode slows the rate of voltage rise and prevents this.

Thermal runaway: If the SCR is undersized for the load current it carries, or lacks adequate heatsinking for the ambient temperature and duty cycle, junction temperature climbs. A hotter junction lowers the device's effective triggering thresholds and raises leakage current, which drives temperature up further. Symptoms include an SCR that works fine when cold but misbehaves or fails after running for a while, with the case hot to the touch. The fix is to recheck the current rating against the actual load and add a heatsink sized for the required case-to-ambient thermal resistance.

Gate circuit failure: An open gate resistor or broken gate connection means the trigger pulse never reaches the gate, so the SCR never turns on no matter what the load is doing. A shorted or leaking gate-to-cathode path has the opposite problem -- it holds the gate near cathode potential, which can prevent triggering entirely or cause erratic triggering from noise. Checking gate-to-cathode voltage with a scope during the trigger pulse quickly narrows this down.

SCR fails shorted: Unlike many semiconductors, an SCR damaged by overvoltage or a current surge beyond its rating typically fails shorted rather than open. A shorted SCR conducts continuously regardless of gate signal, and the only way to stop conduction is to remove power from the circuit -- the gate has no effect on a shorted device.

Failure Mode What You See Likely Cause Typical Fix
False triggering Load turns on randomly with no gate signal Fast dV/dt transient on anode-cathode Add an RC snubber across anode-cathode
Thermal runaway Works cold, fails or misbehaves after warming up Undersized SCR or inadequate heatsinking Increase heatsink size, recheck current rating
Open gate circuit SCR never triggers Broken gate resistor or connection Check gate-cathode voltage with a scope
Leaky/shorted gate path Erratic or absent triggering Gate-cathode short or leakage Inspect gate wiring; replace SCR if internal
SCR fails shorted Load stays on permanently; gate has no effect Overvoltage or surge beyond device rating Remove power to stop conduction; replace SCR

Gate Resistor Sizing and Snubber Networks

Two protective components matter beyond the basic anode-cathode-gate wiring when you build an SCR circuit.

Sizing the gate resistor: The gate resistor limits gate current to the range specified on the datasheet. Too little resistance can exceed the maximum gate current or gate power dissipation rating and damage the gate junction. Too much resistance can leave gate current below the minimum needed to reliably trigger the device across temperature and part-to-part variation. Check the datasheet's gate trigger current and gate power dissipation limits, and size the resistor from those figures and your trigger source voltage rather than guessing.

RC snubber network: An RC snubber wired across the anode and cathode absorbs and slows fast voltage transients, keeping dV/dt below the level that causes false triggering, and it also softens voltage spikes from switching nearby inductive loads. The resistor limits peak discharge current when the SCR fires, and the capacitor bypasses fast transients around the device. Snubber values depend on the specific load and circuit layout, so simulate or bench-test with your actual load rather than reusing values from an unrelated design.

Why phase control instead of a simple switch: A plain switch is either fully on or fully off, so it can only deliver 0% or 100% of the load power. An SCR triggered at a chosen point in the AC cycle can fire anywhere from near the start of the half-cycle, delivering close to full power, to near the end, delivering very little. That continuously variable firing point is why SCRs and TRIACs, rather than simple switches, are the basis of dimmers and motor speed controls.

Key Takeaways

Scr Pin Diagram — circuit diagram showing component connectionspwrpin1pwr2pin2gndgndgnd_ingnd+-SourceTB1 Pin 1TB1 Pin 2TB1 Pin 3Device 1Device 2Harness / Connector PinoutTerminal blocks connect source to devices
Scr Pin Diagram — open the interactive version of this diagram to customise and export it.

Frequently asked questions

can an SCR be turned off by removing the gate signal

No. Once an SCR is triggered and anode current is above the latching current, it keeps conducting even if the gate signal is removed. It only turns off when anode current drops below the holding current, which happens naturally at an AC zero-crossing or must be forced in a DC circuit.

what is the difference between an SCR and a transistor

A transistor is a proportional device -- output current tracks the input drive continuously, and removing the input turns it off. An SCR is a latching device: a brief gate pulse triggers it into full conduction, and it stays on regardless of the gate until anode current falls below the holding current.

why does my SCR stay on after the trigger pulse ends

This is normal SCR behavior, not a fault. Once triggered with anode current above the latching current, the SCR self-sustains conduction without further gate drive. It will keep conducting until anode current drops below the holding current, so a momentary trigger pulse is enough to turn it on for as long as load current continues.

can an SCR control DC current

Yes, but turning it off is harder than in an AC circuit. There is no natural zero-crossing to drop anode current below the holding current, so a DC circuit needs forced commutation -- typically a capacitor discharge that momentarily reverse-biases the device -- or the circuit must be physically interrupted.

what happens if you exceed an SCR's voltage rating

Exceeding the forward or reverse voltage rating can cause the device to break over and conduct without a gate signal, or it can permanently damage the junction. SCRs typically fail shorted under overvoltage or surge conditions, after which they conduct continuously regardless of the gate until power is removed.

why is my SCR triggering without a gate signal

This is usually false triggering caused by a fast voltage transient (high dV/dt) across the anode-cathode junction, often from switching a nearby inductive load like a relay or motor. An RC snubber network wired across the anode and cathode slows the voltage rise and prevents this kind of unintended triggering.

Interactive diagrams for this guide

Related guides