What Is a Unipolar Junction Transistor (UJT) and Why Use It?

While frequently searched by hobbyists as the unipolar junction transistor, the correct industry and datasheet term is the Unijunction Transistor (UJT). The "unipolar" confusion stems from the fact that current conduction in the base relies primarily on majority carriers (electrons in an N-type base), similar to a JFET. However, structurally, it is defined by having exactly one PN junction, unlike a Bipolar Junction Transistor (BJT) which has two.

In 2026, you might wonder why we still use UJTs when a 5-cent microcontroller or a 555 timer can generate complex waveforms. The answer is noise immunity and negative resistance. In high-EMI environments like industrial motor drives or welding equipment, microcontrollers suffer from brownouts and 555 timers can false-trigger. A UJT relaxation oscillator relies on the physical avalanche of a PN junction; it ignores minor voltage sags and RF interference, delivering a sharp, high-current gate pulse directly to an SCR or TRIAC.

Safe Default Part Numbers:
  • 2N2646: The classic N-type UJT (TO-18 package). Max VB2B1 = 35V, IE = 50mA. Costs around $0.85.
  • 2N1671: Higher power UJT (TO-5 package) for heavier trigger loads. Costs around $2.50.
  • 2N6027 (PUT): The Programmable Unijunction Transistor. Replaces classic UJTs in modern designs by letting you set the standoff ratio with two external resistors. Costs ~$0.60.

Pinout, Symbol, and the Interbase Resistance

The UJT symbol consists of a circle with a straight bar representing the N-type silicon base. An arrow pointing inward at an angle represents the P-type Emitter (E). The ends of the bar are Base 1 (B1) and Base 2 (B2). B1 is your reference terminal and is almost always tied to ground.

For the standard 2N2646 in a TO-18 metal can, the pinout looking at the bottom (with the tab pointing towards you) is: Emitter (E) adjacent to the tab, Base 1 (B1) clockwise next, and Base 2 (B2) last. Always verify with your specific manufacturer's datasheet, as older Motorola and newer Central Semiconductor runs occasionally vary the TO-18 clocking.

The defining characteristic of the UJT is the Interbase Resistance (RBB), which typically measures between 4kΩ and 10kΩ between B1 and B2 when the emitter is open. This internal resistance acts as a voltage divider. The ratio of the resistance from B1 to the emitter junction versus the total RBB is called the intrinsic standoff ratio (η), usually factory-set between 0.5 and 0.8.

Operation Regions and Biasing for the Job

Biasing a UJT is entirely about managing the voltage across the timing capacitor connected to the Emitter. According to Electronics Tutorials, the UJT remains off until the emitter voltage exceeds the peak point voltage (VP).

Operation Region Emitter Voltage (VE) Emitter Current (IE) Device State & Behavior
Cut-Off VE < VP ~0 mA (leakage only) PN junction is reverse-biased. The capacitor is charging through the timing resistor.
Negative Resistance VP > VE > VV IP to IV (mA range) Junction fires. As current increases, voltage drops. This is the active oscillation phase.
Saturation VE < VV (Valley Voltage) > IV Device is fully on, acting like a closed switch. If the timing resistor supplies more current than IV, it latches here.

To bias it correctly, your timing resistor (RT) must be large enough to limit current below the Valley Current (IV, typically 2-5mA), but small enough to supply more than the Peak Current (IP, typically 2-5µA) to charge the capacitor.

Bench Walkthrough: 12V SCR Trigger Oscillator

Let’s build a practical relaxation oscillator to pulse a 12V LED strip via a 2N4441 SCR. This is a classic phase-control or strobe foundation.

The Circuit Values

  • Supply (VBB): 12V DC
  • UJT: 2N2646 (η ≈ 0.65)
  • RT (Timing Resistor): 10kΩ (Connects from VBB to Emitter)
  • CT (Timing Capacitor): 10µF Electrolytic (Connects from Emitter to Ground)
  • R2 (B2 Resistor): 470Ω (Connects from B2 to VBB - provides temperature compensation)
  • R3 (B1 Resistor): 100Ω (Connects from B1 to Ground - outputs the trigger pulse)

The Scenario: Setup, Numbers, and What Went Wrong

Setup: I wired the circuit on a breadboard to drive the gate of a 2N4441 SCR, which switched a 12V, 2A LED work light. The output pulse was taken across the 100Ω B1 resistor.

The Numbers: With VBB at 12V and η at 0.65, the Peak Voltage VP = (0.65 × 12V) + 0.7V (diode drop) = 8.5V. The 10µF capacitor charges through the 10kΩ resistor until it hits 8.5V, then dumps into the base. The time constant τ = R × C = 100ms. Factoring in the natural log of the standoff ratio, the theoretical frequency is roughly 9.5 Hz.

Outcome: The LED strip pulsed at a very pleasing 10 flashes per second. The pulse across the 100Ω resistor measured a sharp 3V spike, more than enough to reliably gate the SCR.

What Went Wrong (First Attempt): The first time I built this, I misread the color bands and used a 1kΩ resistor for RT instead of 10kΩ. When I applied power, the LED flashed exactly once and stayed dead. What happened? The 1kΩ resistor allowed a charging current of roughly 12mA (12V / 1kΩ). The 2N2646 has a Valley Current (IV) of about 4mA. Because the supply current (12mA) exceeded the valley current (4mA), the UJT fired, but the capacitor couldn't discharge enough to drop the current below IV. The UJT latched into the "Saturation" region and refused to turn off. Swapping to the 10kΩ resistor dropped the supply current to 1.2mA (well below the 4mA IV threshold), allowing the device to reset and oscillate properly.

How UJTs Fail and Multimeter Testing Steps

UJTs are rugged, but they fail from two main causes: thermal runaway (usually from omitting the B2 temperature-compensation resistor) or emitter junction blowout from a capacitor wired with reverse polarity or excessive VBB spikes.

You can diagnose a UJT on the bench using a standard digital multimeter (DMM). As detailed in the All About Circuits semiconductor guide, follow these steps:

  1. Remove the component from the circuit. In-circuit testing is useless because parallel resistors will skew the interbase resistance readings.
  2. Test the Emitter Junction (Diode Mode): Set your DMM to diode test. Place the red probe on the Emitter (E) and black on Base 1 (B1). You should read a standard silicon diode drop (0.5V to 0.7V). Reverse the probes; it should read "OL" (Open Loop). Repeat this between E and B2. If it reads short (0.00V) or open in both directions, the junction is blown.
  3. Test Interbase Resistance (Ohms Mode): Set the DMM to measure resistance. Place probes across B1 and B2. You should read between 4kΩ and 10kΩ. If it reads OL, the internal silicon bar has cracked from thermal stress. If it reads near 0Ω, the device is shorted internally.
Bench Tip: If your UJT passes the multimeter test but still won't oscillate on the board, check your timing capacitor for high Equivalent Series Resistance (ESR) or leakage. A leaky electrolytic cap will bleed off current before the emitter ever reaches VP.

UJT vs. PUT vs. 555 Timer: Choosing the Right Trigger

When designing a trigger circuit from scratch in 2026, you have three main paths. Here is how they stack up for power electronics and timing applications.

Criteria Classic UJT (2N2646) PUT (2N6027) 555 Timer (NE555)
Standoff Ratio (η) Fixed at factory (0.5 - 0.8) Programmable via 2 external resistors Fixed internally at 1/3 and 2/3 Vcc
Output Pulse Current High (up to 50mA peak) Very High (up to 1A peak) Moderate (200mA max, but sags)
Component Count Low (UJT + 3 resistors + cap) Medium (PUT + 5 resistors + cap) Medium (IC + 2 resistors + 2 caps)
EMI / Noise Immunity Excellent (Avalanche triggered) Excellent (Avalanche triggered) Poor (Susceptible to Vcc sag/glitches)
Availability in 2026 Low (Legacy / NOS stock) Moderate (Still in production) Ubiquitous (Every supplier)

Choose the Classic UJT when repairing legacy industrial equipment (like old GE or Allen-Bradley motor drives) where exact part replacement is required to match factory timing characteristics.

Choose the PUT (2N6027) for new high-power SCR/TRIAC triggering designs. The ability to dial in the exact firing voltage using a resistor divider on the gate, combined with its massive 1A peak pulse current, makes it the undisputed king of heavy-duty AC phase control.

Choose the 555 Timer only when you need precise, adjustable duty cycles (PWM) or complex astable/monostable timing for low-noise environments. Never use a 555 to directly drive an SCR gate in a noisy 240V AC environment without heavy opto-isolation; the UJT/PUT handles that noise natively.