8

I built the following circuit

schematic

simulate this circuit – Schematic created using CircuitLab

The clock has an amplitude of approx. 5 VDC. It's provided by a 555. I used two different values of R2 for my tests. The first test was R2 = 6 ohms. The second test was R2 = 10000 ohms.

I used my oscilloscope to record the clock signal and the base voltage. The blue graph is the base voltage, the yellow graph is the clock voltage. This is the result of the first test.

enter image description here

This is the result of the second test

enter image description here

As you can see the base voltage returns to 0 in the first test almost immediately.

In the second test, the base voltage takes approximately 30 microseconds to return to zero. During this time, the transistor continues to conduct. Why does this only happen when the collector-emitter current is low?

Test of solution provided below

I located a SR306 diode. Datasheet here:

http://pdf.datasheetcatalog.com/datasheet/diodes/ds23025.pdf

This diode is a poor choice for this application, but still applicable.

I set R2 = 10000 ohms for this test. R1 is still 100 ohms. Here is the waveform again with the existing circuit.

enter image description here

The switching of the transistor still lags behind the clock.

Here is the waveform with the diode connected from the base to the collector

enter image description here

The transistor follows the waveform faithfully now. Here is a closer view of the switching transition

enter image description here

It still takes around 2000 nanoseconds for the transistor to turn off, but this agrees with datasheet.

Interestingly there is some oscillation on the base, but it is not significant. It has an amplitude of only 100 millivolts.

enter image description here

Eric Urban
  • 1,249
  • 12
  • 28
  • 2
    Don't forget to mention which channel is which signal on your scope shots – ThreePhaseEel May 25 '16 at 01:27
  • Here's one possible solution http://electronics.stackexchange.com/questions/55073/schottky-transistor-not-sure-i-understand-it/55090#55090 –  May 25 '16 at 11:19

2 Answers2

11

You're over-saturating the transistor. In this context, saturation means \$V_{BE}>V_{CE} \$. If you imagine your NPN transistor as two diodes back-to-back as the image below shows, you can see that if you drive your base hard enough, \$V_{CE}\$ will drop to a very low voltage (e.g. 0.1 V). Since we are driving our base very hard, \$V_{BE}\$ might be about 0.75V. That gives us a \$V_{BC}\$ of 0.65 V, and that diode will begin conducting.

schematic

simulate this circuit – Schematic created using CircuitLab

The problem with this diode saturating is that it will suffer from reverse-recovery. It will not stop conducting until all the charges are drawn out of the diode, which feeds the base voltage through the collector.

The waveforms you gave provide good evidence that this is the case. Consider that your base current is around 50mA (Using this instead of the actual 43mA because there are curves on the datasheet for 50mA). With an approximately 2 A load, you will have a \$V_{CE}\$ of about 0.18 V. Your second test using a 10kΩ resistor would have a \$V_{CE}\$ near 0 V. Because of that, more current is flowing from the base to the emitter through the base-collector diode with the lighter load. However, both cases are over-saturated as both have a small notch in the voltage waveform immediately after turn-off begins.

Another factor is that with the 6Ω resistor, you can exit the reverse-recovery mode of the base-emitter diode faster because you can get rid of the extra carriers faster. This is probably the main reason for the turn-off time differences.

Ultimately, this will be difficult to tackle from the base drive side, as you need that base resistor. A possible work-around is to put a diode in parallel with the base resistor to provide better drive during turn-off. This was a common problem in old TTL logic, and Schottky diodes were placed in the circuit to prevent saturation (and speed up the logic). This showed up in so-called Schottky transistors that implemented a Baker clamp. It's important to use Schottky diodes for this purpose as they have a much lower forward voltage than the internal diode structures (0.25V for the Schottky compared to 0.6V for a standard silicon diode). Otherwise you will have two saturated diodes fighting your base signal.

schematic

simulate this circuit

W5VO
  • 18,303
  • 7
  • 63
  • 94
  • Why don't you decrease R3 to accelerate draining the base? 1k should be high enough to not drain too much drive current while turned on, but could accelerate turn-off up to a factor of 10. – Michael Karcher May 25 '16 at 06:51
  • 2
    @MichaelKarcher That might be true if there was no pull-down drive strength, like when you drive it with only a PNP. Because R1 is driven both high *and* low, both R1 and R3 are effectively in parallel. That makes R3 insignificant during turn-off for reasonable values. – W5VO May 25 '16 at 12:53
-2

Your R2 selection are not optimal, typically I would use a 1k to 4.7k resistor. The capacitance in the transistor is probably accounts for the delay using the 10k resistor. I assumed he was looking for some other value between 6 ohm and 10k. If you read the second part of the question he was using a 10k ohm collector resistor which was way too high."http" ://ecee.colorado.edu/~bart/book/book/chapter5/ch5_6."htm" Chapter 5: Bipolar Junction Transistors When saturate, as long as significant charge is still stored in the base region, the collector current will continue to exist. Only after this excess charge is removed, will the base-emitter junction capacitor be discharged and the BJT be turned off. The removal of the excess charge can take a significant delay time Again we can calculate the time evolution of the excess charge and calculate the collector current from it. To first order the delay time

user66377
  • 570
  • 2
  • 11
  • 2
    His values are right on. A 6 ohm load with 12 volts gives a collector current of 500 mA. Driving a BJT to saturation implies a gain of about 10, for a base drive of 50 mA. The circuit as shown will provide about 40 mA, and that's close enough. your 1k simply won't work. – WhatRoughBeast May 25 '16 at 02:20
  • If you read the second part of the question he was using a 10k ohm collector resistor which was way too high. If saturate, as long as significant charge is still stored in the base region, the collector current will continue to exist. Only after this excess charge is removed, will the base-emitter junction capacitor be discharged and the BJT be turned off. The removal of the excess charge can take a significant delay time Again we can calculate the time evolution of the excess charge and calculate the collector current from it. To first order the delay time http://ecee.colorado.edu/ – user66377 May 26 '16 at 04:33