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:
- Anode (A): Where current enters (positive terminal in normal forward operation).
- Cathode (K): Where current exits.
- Gate (G): Control terminal. A positive pulse here (relative to cathode) triggers the SCR into conduction.
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:
- Anode connects to positive supply through the load.
- Cathode connects to negative supply (ground).
- Gate connects to a trigger source through a gate resistor.
Component values for a 12V DC circuit, load R = 100Ω, using a BT151:
- Load current = 12V / 100Ω = 120mA (well above I_L of ~40mA)
- Gate trigger current for BT151: I_GT = 5--15mA typically
- Gate trigger voltage V_GT ≈ 1.0--1.5V
- Gate resistor = (V_trigger - V_GT) / I_GT
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:
- BT151 (500V, 7.5A) or equivalent
- Diac (DB3, triggers at ~32V) for gate triggering
- RC phase-shift network: 47kΩ potentiometer + 47nF capacitor
- 1N4007 snubber diode across the load (for inductive loads)
How it works:
- Each AC half-cycle, the capacitor in the RC network charges toward the peak AC voltage.
- When the capacitor voltage reaches the diac's trigger voltage (~32V), the diac fires and dumps the capacitor charge into the SCR gate.
- The SCR fires and conducts for the remainder of that half-cycle.
- At the zero-crossing, the SCR commutates off naturally.
- 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:
- Arduino digital output → 330Ω resistor → MOC3041 input LED (pins 1, 2)
- MOC3041 output (pins 4, 6) drives the SCR gate through a gate resistor
- 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:
- Load is AC and you want symmetrical conduction on both half-cycles
- Simplified gate drive is needed (one trigger per cycle rather than separate triggers per half-cycle)
Use an SCR when:
- You need half-wave control (rectified output)
- Higher voltage or current requirements exceed what TRIACs offer
- You need the SCR's asymmetric conduction (e.g., crowbar protection circuits)
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:
- Place SCR symbol with labeled anode, cathode, and gate terminals
- Add the RC phase-shift network and diac
- Include the load and AC source
- Add MOC3041 isolation stage for safe microcontroller integration
- Simulate at reduced voltage to verify gate trigger timing before building
Create your own SCR circuit diagram -- free
Key Takeaways
- An SCR has three terminals: anode, cathode, gate. A positive gate pulse triggers conduction; the SCR latches on and stays conducting until anode current drops below the holding current (I_H).
- Latching current (I_L) is the minimum current at turn-on for the gate to release control; holding current (I_H) is the minimum to sustain conduction.
- SCRs turn off naturally at AC zero-crossings, which is why AC phase control is the dominant application.
- DC SCR circuits require forced commutation to turn off -- more complex than AC circuits.
- For microcontroller-driven AC control, use an opto-isolator (MOC3021/MOC3041) between the logic circuit and the mains-connected SCR.
- Use a TRIAC for simpler full-wave AC control; use an SCR for half-wave, crowbar protection, or when TRIAC ratings are insufficient.
- Never work on mains-connected SCR circuits without proper enclosure and isolation -- every node in a phase-control circuit may be at full mains voltage.
Originally published at https://circuitdiagrammaker.app/blog/scr-circuit-diagram.
Top comments (0)