2

I would like to protect a circuit from overcurrent over 500 mA. The voltage in the circuit is only 5 V. Can I use higher voltage and lower current polyfuse, which results in same power flowing through the polyfuse?

Thinking in general, and looking at "how polyfuse works" PDF, I don't see them discussing voltage significance. My understanding of polyfuse is that it is a thermal device, when high current flows through it, crystalline composite heats up and breaks the circuit up to the moment it cools down enough to restore the flow of electrons. If it is a thermal device, then it should be dependent not only on current, but also on voltage, like P = U * I.

If it's correct, should polyfuse with 60 V 50 mA be equivalent to use 5 V 600 mA? Or my assumption is not correct?

EDIT: I'm sorry I didn't make it clear and now see people replies that U is the voltage drop on the fuse. I want to protect against shortcut between positive and negative terminals, which I believe will result in full voltage flow through the polyfuse.

zmechanic
  • 304
  • 2
  • 10
  • 3
    A 1 amp fuse will not block a short-lived surge of ten amps or one hundred amps so, what do you really want to happen? If you want to protect silicon; forget about fuses or polyfuses. Fuses protect infra-structure and not electronic circuits or elements of circuits. Your assumption is incorrect BTW. – Andy aka Feb 16 '22 at 15:40
  • Your 50mA fuse will trip about 50mA even on a 5V supply. –  Feb 16 '22 at 19:18
  • @Andyaka I want to protect power supply. It's either powered from external USB port/wall adapter or boost converter from 1S 1000ma LiPo battery. – zmechanic Feb 16 '22 at 21:53
  • The usb charger will trip well before the polyfuse! The battery should have it’s own protection. – Kartman Feb 17 '22 at 04:01

3 Answers3

3

The only voltage a fuse sees is the voltage across the fuse itself, not the supply voltage.

A 50mA fuse will trip at something over 50mA, regardless of the supply voltage.

The voltage rating of a fuse is the highest that it can safely break. So long as you are working below that, it's safe to use that fuse.

Simon B
  • 19,226
  • 1
  • 29
  • 56
2

Current depends on voltage. We need to take intrinsic property of the fuse - resistance - and use that for thermal calculation. It's current that goes through resistance that generate heat. Voltage is just a way to get current.

Q (heat energy) = I^2 R. Given its resistance is very low, voltage change won't change current through it (almost) at all, because I assume there is some circuit behind it that it's protecting and that has a few orders of magnitude more effective resistance.

So if you go with higher voltage but lower current polyfuse, you will have the same I^2 R heat on it and it will blow. Remember that when you calculate power dissipated on the resistor as U*I it's U across the resistor, not your supply voltage.

Ilya
  • 3,583
  • 10
  • 35
2

Can I use higher voltage and lower current polyfuse, which results in same power flowing through the polyfuse?

No. You should use a polyfuse with a rated IHOLD at least (and near) the maximum current that will flow thru the fuse in normal use, and a rated VMAX voltage at least the highest voltage that can be applied, including in reasonably likely fault situations, like plugging the wrong power adapter/charger (if you want assurance the polyfuse recovers from the mishap).

In most situations "the maximum current that will flow thru the fuse in normal use" does not need to account for transients like those occurring in the milliseconds of power-on, when capacitors load.

For low-voltage applications (like yours), the voltage loss on the polyfuse will typically be a significant fraction of the supply voltage, and should be accounted for. It typically subtracts from the DC power source's rated output voltage, and it's maximum value is evaluated per:
U = RMAX I

Parameters like IHOLD, VMAX, RMAX are to be taken from the polyfuse's data sheet (example).

My understanding of polyfuse is that it is a thermal device, when high current flows through it, crystalline composite heats up and breaks the circuit up to the moment it cools down enough to restore the flow of electrons. If it is a thermal device, then it should be dependent not only on current, but also on voltage, like P = U * I.

Yes, but the U is not the supply voltage. It's the voltage across the polyfuse. Polyfuses have a rated maximum voltage only so that they won't be damaged when there's a short circuit, and they get that voltage across their terminals. Fortunately, the voltage across them in normal (non-tripped) use is much lower. A more useful way to compute power dissipated in normal use is:
P = RMAX I2.


I want to protect against shortcut between positive and negative terminals, which I believe will result in full voltage flow through the polyfuse.

A short circuit will result in full voltage on the polyfuse except for some other current limitation (as there is in most switching power supplies) or significant series resistance. But that does not change the answer: you should select a polyfuse with rated IHOLD at least (and near) the maximum current in normal use (500 mA per the question). A 60 V 50 mA polyfuse does not suit the application at all: it will trip when the current exceeds some limit, at least 50 mA, probably less than 100 mA; and, for all models I know, it's series resistance will cause a prohibitively high voltage drop.

An RHEF050 (or 0808L050) would do (IHOLD = 500 mA), if the application can bear a voltage drop of up to 0.4 V (or 0.45 V) under the full 500 mA (likely more like half that when the polyfuse is new, but getting closer after the polyfuse did it's protection job and was let to cool down).

fgrieu
  • 1,670
  • 2
  • 15
  • 24
  • Thanks for detailed explanation. I made an edit to my question to make the intention clear. I want to protect against shortcut across terminals. – zmechanic Feb 16 '22 at 21:59