Emitter-follower: Lab 4.2
24 January 2011 Leave a comment
This lab covers the basics of the emitter-follower configuration of the BJT transistor. The lab is based on the circuit in Student Manual for the Art of Electronics Lab 4-2. Note that the emitter-follower is also known as the common-collector. The output is taken at the emitter, the input is provided at the base, and the voltage gain is roughly equal to one (Vemitter / Vin). Note that in this circuit, the input resistance is much smaller than the output resistance. This is what the authors of the book decided on, but in most practical circuits the emitter-follower is used to bridge a high-impedance input to a lower impedance load. According to Horrowitz and Hill, “…the emitter follower is useful for changing impedances of signals or loads. To put it bluntly, that’s the whole point of the emitter follower.”
The following Spice model represents the circuit from the lab, and the Spice syntax is that of MacSpice.
* Emitter Follower Lab
Vcc 3 0 DC 15
Vin 1 0 SIN(0 5 60)
R1 1 2 270
R4 4 0 3.3k
Q1 3 2 4 generic
.model generic npn
.control
tran 1ms 60ms
plot v(1) v(4)
.endc
.end
The resulting output: v(1) is the input and v(4) is the output at the emitter
The signal Vin at the base is expected to be the same at the emitter. The amplitude of the signal on the emitter should be 0.6V different from the base signal due to the base-emitter junction voltage drop. As shown above, the Vin is 5 V and the emitter amplitude is around 4.3 V. However, when the signal swings below zero the output is clipped. Why is that?
The reason is that when Vin swings below 0.6/0.7 V, the base-emitter voltage difference falls below the threshold and goes into to cutoff mode due to the reverse bias of the junction. When the input voltage at the base rises above 0.6V again the transistor is enabled and passes the signal to the emitter.
One way to pass the negative part of the input signal is to have the input within the range of the trainsistors supply, Vcc – Ground (15 V – 0). This can be done by having the input source centered around a DC offset greater than 5 V or by providing a bias network at the base of the transistor to bring the original signal up. For simulating just modify the Spice model so that Vin is centered around 7.5 V DC rather than 0 V DC. Just modify the first parameter of the SIN function as follows:
Vin 1 0 SIN(7.5 5 60)
The resulting output: v(1) is the input and v(4) is the output at the emitter
Now the output looks like the input, minus the small voltage drop caused by the base-emitter junction.
The lab also asks us to hook up the emitter to a negative supply (-15V) instead of ground. The SPICE model below presents just such a circuit.
* Emitter Follower Lab with Negative Supply Vee
Vcc 3 0 DC 15
Vee 0 5 DC 15
Vin 1 0 SIN(0 5 60)
R1 1 2 270
R4 4 5 3.3k
Q1 3 2 4 generic
.model generic npn
.control
tran 1ms 60ms
plot v(1) v(4)
.endc
.end
The resulting output: v(1) is the input and v(4) is the output at the emitter
The output in this case is the same as the centered input. The difference is that in practical circuits, one often doesn’t have control over the DC offset of the input signal. In such cases, either a negative supply is needed to catch the negative swing of the input signal, or a bias network is needed at the base. Such a bias network is reviewed in Lab 4.4.





