The BJT
The bipolar junction transistor was the workhorse of electronics for three decades before CMOS took over digital circuits. It remains indispensable in analog design: operational amplifiers, voltage references, bandgap circuits, high-speed ECL logic, and RF front-ends all rely on BJTs.
Where the MOSFET is a voltage-controlled switch, the BJT is a current-controlled current amplifier. A small current into the base produces a much larger current between collector and emitter, with a gain (
Two flavors
NPN: Current flows from collector to emitter, controlled by base current. The emitter arrow points out of the device. This is the more common type.
PNP: Current flows from emitter to collector, controlled by base current. The emitter arrow points in. Complementary to NPN, like PMOS is to NMOS.
The BJT has three terminals: base (B), collector (C), and emitter (E). Unlike the MOSFET, the control terminal (base) draws significant current -- this is the fundamental difference between field-effect and bipolar devices.
The exponential law
The BJT's collector current follows an exponential relationship with base-emitter voltage:
where
This exponential relationship is extraordinarily precise -- it holds over many decades of current. It gives the BJT its transconductance:
At
The four operating regions
| Region | BE Junction | BC Junction | Behavior |
|---|---|---|---|
| Forward active | Forward biased | Reverse biased | Normal amplification |
| Reverse active | Reverse biased | Forward biased | Poor amplification (rarely used) |
| Saturation | Forward biased | Forward biased | Both junctions on, |
| Cutoff | Reverse biased | Reverse biased | Off |
Forward active is the amplification region -- where the collector current is
The Gummel-Poon Model
The Gummel-Poon model (1970) is to the BJT what BSIM3 is to the MOSFET: the standard model that every SPICE simulator implements.
The transport current
At the heart of the model is the transport current:
where:
| Parameter | Symbol | Typical NPN | Meaning |
|---|---|---|---|
| IS | Saturation current | ||
| NF | 1.0 | Forward emission coefficient | |
| NR | 1.0 | Reverse emission coefficient |
This is the Ebers-Moll transport equation. In forward active operation (
Forward and reverse beta
The base current is the sum of forward and reverse components:
where
Base charge modulation
The Gummel-Poon model's key innovation is the normalized base charge
The base charge factor is:
where:
The
Gummel plot
The Gummel plot shows
The parallel slopes on the log scale (both lines are straight with the same slope) confirm the exponential relationship. The vertical separation is the current gain
How the BJT stamps into MNA
The linearized BJT becomes a companion model for Newton-Raphson with key conductances:
-- transconductance -- output conductance (Early effect) -- input conductance -- reverse feedback
These stamp into the MNA matrix at the (collector, emitter), (base, emitter), and (base, collector) positions, along with equivalent current sources.
The exponential nonlinearity of the BJT makes Newton-Raphson convergence more challenging than for MOSFETs. A 26 mV change in
The Early Effect
In the ideal BJT, collector current depends only on
The physical picture
The collector-base junction has a depletion region. When
The Early voltage
If you extrapolate the
Output resistance
The Early effect gives the BJT a finite output resistance:
For a BJT biased at
The intrinsic gain is
Parasitics
A real BJT has parasitic elements that affect its high-frequency behavior: series resistances, junction capacitances, and transit times.
Series resistances
| Parameter | Symbol | Typical NPN | Meaning |
|---|---|---|---|
| RB | 10-100 |
Base resistance | |
| RE | 1-5 |
Emitter resistance | |
| RC | 10-50 |
Collector resistance |
Base resistance (RB) is the most important parasitic. It creates a voltage drop between the external base and the intrinsic junction, causing effective
Junction capacitances
Each PN junction has a depletion capacitance:
The base-collector capacitance
This Miller multiplication is the dominant bandwidth limitation in common-emitter amplifiers.
Transit times
When carriers traverse the base, a diffusion capacitance arises:
where
Typical
Amplifier Circuits
The BJT's high transconductance and well-controlled current gain make it the natural choice for analog amplifier design. The common-emitter configuration is the most widely used topology.
The common-emitter amplifier
This is the simplest form: a single NPN transistor with a collector resistor. The input voltage
DC operating point
With
The negative gain means the output is inverted relative to the input. A small increase in
The three BJT amplifier topologies
| Topology | Voltage gain | Input impedance | Output impedance | Use |
|---|---|---|---|---|
| Common-emitter | General amplification | |||
| Common-base | High-frequency, cascode | |||
| Common-collector | Impedance buffer |
Each topology has the same BJT, the same Gummel-Poon model, the same MNA stamps. What changes is the circuit around it -- which terminal is the input, which is the output, which is the AC ground. SPICE does not know or care about the topology; it simply solves the matrix.
Biased common-emitter amplifier
The simple circuit above has a serious problem: the DC operating point is extremely sensitive to
The voltage divider (R1, R2) sets the base voltage. The emitter resistor RE provides negative feedback: if
For AC amplification, RE is often bypassed with a capacitor to restore the full gain at signal frequencies while keeping the DC stabilization.
In spice-rs
The BJT device model lives in device/bjt.rs. It implements the Gummel-Poon model including transport current with forward and reverse components, base charge modulation (Early effect + high-injection), junction capacitances (depletion + diffusion), series resistances (RB, RE, RC), and transit times (TF, TR).
The BJT model is simpler than BSIM3/4 in parameter count but has its own subtleties, particularly in the treatment of base charge and the smooth transitions between operating regions.