I've been considering replacing a 2N3904 and TIP31C with a TIP102 in one of my circuits (PWM LED dimmer), and have noticed in the TIP102 schematic resistors leading from each of the bases to the emitters. My current circuit doesn't have these, and I was wondering what purpose they serve and if my circuit should have them regardless.
-
1possible duplicate of [Which configuration is better for pulling down an NPN transistor's base?](http://electronics.stackexchange.com/questions/30017/which-configuration-is-better-for-pulling-down-an-npn-transistors-base) While the question there is asking which version of a pull down is better, the answers are very detailed in what the pulldowns do and why you should or should not have them. – Passerby Jul 31 '13 at 04:20
-
1I don't agree to the close votes for this question. While resistors across a BJT's B-E have been discussed (http://electronics.stackexchange.com/questions/56010/why-pull-base-of-bjt-switch, http://electronics.stackexchange.com/questions/30017/which-configuration-is-better-for-pulling-down-an-npn-transistors-base) the _internal_ resistor across a darlington's lower BE is special, because it is not accessible from the outside, so it is either on the die already or it can never be added. – zebonaut Jul 31 '13 at 07:40
-
@zebonaut that makes no practical difference, when the end question is if OP's discrete, non-packaged darlington pair should have the b-e resistor. – Passerby Jul 31 '13 at 12:10
-
Though your question seems to be primarily about these resistors in Darlington pairs, for the application you mention you might consider using a MOSFET instead, which will probably be cheaper and more efficient. – Phil Frost Jul 31 '13 at 14:15
-
@PhilFrost: Another good consideration for rev B. As it is, I finished assembling the circuit and it works perfectly. – Ignacio Vazquez-Abrams Jul 31 '13 at 18:49
3 Answers
Those resistors are to speed turn-off. The base-emitter junction has some capacitance, which is made apparently larger in an inverting amplifier configuration by the Miller effect. To turn the transistor off, this capacitance must be discharged.
When the base drive is removed, there is no path to discharge this capacitance of the right transistor, because the reversed-biased base-emitter of the left transistor prevents it. These resistors provide a path for this discharge current.
If you are making a discrete Darlington pair, including at least R2 isn't a bad idea. If you don't require switching to be too fast, then you may find the transistor switches off fast enough without it, but I'd include R2 unless I was trying to shave every penny from the cost.
There are no hard and fast rules for calculating what these resistors should be, but the example you provided gives some typical values. If you make them smaller, turn-off will be faster. If you make them too much smaller, all the input current will go through the resistors, leaving none to drive the transistors.
The voltage across R2 is limited to 0.65V by the forward biased base-emitter junction, so current will be:
$$ I_{R2} = \frac{0.65V}{R_2} $$
and you can get some idea (just an idea; for an accurate model I'd simulate or build and measure) of how fast turn-off is affected by calculating the time constant formed by R2 and the right transistor's input capacitance:
$$ \tau = R_2 \cdot C_{eb} $$
The calculations for R1 are largely the same. However, it should be larger, for two reasons. Firstly, the left transistor doesn't need as much help to turn off, because its base capacitance can be discharged by whatever is driving the transistor; there is no diode in the way as with the right transistor.
Secondly, making R1 smaller shunts more current away from the left transistor's base, where it would be multiplied by both transistors. Thus, decreasing R1 decreases gain, because more of the input current is multiplied just by \$\beta\$ instead of \$\beta\cdot\beta\$.

- 56,804
- 17
- 141
- 262
-
Went digging for a bit, found [this](http://gyrator.org/circuitry-composite-transistor) for calculating R2. Nothing yet for R1 though. – Ignacio Vazquez-Abrams Jul 31 '13 at 06:44
-
-
1I put a 100 ohm resistor for R2, and I'm glad I did since just *touching* the base of Q1 is enough to get Q2 to conduct (not that it will ever get touched in the enclosure it's in). – Ignacio Vazquez-Abrams Jul 31 '13 at 18:51
There are various reasons for the resistors. The two already mentioned are to speed turn-off and to guarantee the device stays off when not driven.
Another reason is to overcome internal leakage. Generally the leakage of a single transistor is low enough to ignore. However, the leakage of the first transistor is multiplied by the gain of the second, which could make it significant in some applications, especially at high temperature where leakage is higher. The resistor around the second transistor causes the first transistor to produce some minimum current before the second will turn on. This can be adjusted to exceed the worst case leakage of the first transistor.
Note also that for low output currents, the second transistor could turn on just from the current thru the first resistor. In this case, the B-E voltage and the C-E voltage of the overall device will be lower than for a pure darlington.

- 310,974
- 36
- 428
- 915
There are two purposes to those resistors. As Phil has mentioned, one is to aid in fast shutoff of the transistor.
The other is two ensure the pin state incase the base pin is not being driven. It removes a floating state. Like if a microcontroller pin is in a high-impedence mode.
Which configuration is better for pulling down an NPN transistor's base? has a very long discussion on the use of pull-down resistors on a transistor base.