2
\$\begingroup\$

I have recently put together a trivial low-voltage interlock circuit to prevent over-discharge of a 9v battery pack. I use a Potential divider of 1600 / 5600 ohm to produce 4.7v when Vcc is 7.2. I have a reverse biased 4.7V Zener going from the middle of the Potential Divider to the base of an NPN transistor (2n222). The emitter is connected to gnd and the collector is the gnd for a load. Vcc to collector gives me the + and - for my load.

R3/R5 is the potential divider. R4 is the nominal load. U1 is 1N4732 Zener

(R3/R5 is the potential divider. R4 is the nominal load. U1 is 1N4732 Zener)

The problem is that emulation (on TinkerCAD) says that Vcc below 7.2v reduces current to the load down to about 1mA. But breadboarding it produces real world behaviour where the load is able to draw 10+mA down to Vcc=4.5

Somehow this 4.7v Zener is not blocking current even when the voltage it is opposing is only 3v.

Presumably I am missing some fundamental point - so if someone can explain to me why a reverse biased Zener triggering an NPN transistor is not a viable low voltage cutoff I would be most grateful. (I realise that it will only kill the majority of the load and the Potential Divider itself will continue to discharge the battery - but at a tiny fraction of the rate.

New contributor
mbdmbd is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct.
\$\endgroup\$
4
  • 1
    \$\begingroup\$ Your zener has 10 uA of leakage with 1 V across it. What's the beta of your transistor? With a few volts across the zener and a high beta transistor you could get some mA of collector current. You might try a base-emitter resistor so that the leakage isn't directly becoming base current. \$\endgroup\$
    – John D
    Commented Jul 5 at 0:21
  • \$\begingroup\$ I think your arithmetic is a little off: (5600 / (5600 + 1600)) * 7.2 is 5.6V, not 4.7, \$\endgroup\$
    – jonathanjo
    Commented Jul 5 at 1:06
  • \$\begingroup\$ How would you prevent over-discharge when R3 and R5 are continuously discharging the battery? \$\endgroup\$
    – kaosad
    Commented Jul 5 at 3:56
  • \$\begingroup\$ What should the exact cutoff be to prevent over-discharge? How much current compliance is required just prior to that cutoff voltage? What's the current compliance (if different) when the battery is fully charged? \$\endgroup\$ Commented Jul 5 at 4:08

1 Answer 1

5
\$\begingroup\$

Your design is easier to read when drawn like this:

schematic

simulate this circuit – Schematic created using CircuitLab

There are a few problems. R4 is so small, that collector current will be huge if this transistor were switched on. To switch it on would require tens or hundreds of milliamps of base current, which must come via R3, and R3 is too large to accommodate that.

R5 is only required to switch the transistor off, and can be significantly larger than 5.6kΩ. Additionally, there is a current path via R3 and R5, directly across the battery. That path is responsible for a milliamp or so of battery current, regardless of the conduction state of D1. To remove that path, it is sufficient to move the diode:

schematic

simulate this circuit

Now current only flows via R3 when the diode begins to conduct, which happens when battery voltage approaches 6.8V. Until then it's only microamps, due to D1 leakage.

This is battery current, as voltage rises:

Design 1 performance

That design will work up to 500mA or so, but your load (10mΩ) will try to draw many amperes of current, and base current will have to be a significant portion of that, perhaps one-hundredth, depending on transistor \$\beta\$. That will require a prohibitively low value for R3. To overcome this, it might be better to employ a second transistor:

schematic

simulate this circuit

I've reduced load resistance R4, which would draw 4A with 8V across it, requiring a beefier Q1. These two cascaded transistor stages have a combined current gain in the thousands, requiring much less base current for Q2, and R3 can be kilohms.

Battery current still drops to near zero, and transition of Q1 from off to on is quicker now:

Design 2 performance

\$\endgroup\$

Not the answer you're looking for? Browse other questions tagged or ask your own question.