Electronic – Simple fast short circuit protector for circuit

analogcircuit-designmicrocontrollermosfettransistors

I am trying to design a simple short circuit protector for the below circuit. Any short circuit simulated by switch SW1 turns off LED D2 only not LED D1. Currently both LEDs turn off and for safety with a fuse circuit is current limited for 100 mA.

An isolator should activate if the circuit draws more than 25mA. Normally when both LEDs are working the circuit draws only 18 mA.

The circuit total load current 18mA is monitored and tolereance of +/- 1 mA only allowed by other control circuits. If loaded current exceeds +/- 1mA limit it will register as fault by current monitoring circuit.

enter image description here

The below isolator circuit with MOSFET designed to isolate Led d1 in short circuit without power to Led d2. but not working as expected.

Any short at SW1 will turn off the MOSFET, as gate source voltage equals to zero and isolate LED D1 from LED2, and protect circuit total voltage dropping to zero from 9 v.

What's wrong with this approach?

enter image description here

Best Answer

Here is a re-drawn version of your "short circuit" protection circuit.

schematic

simulate this circuit – Schematic created using CircuitLab

First let's consider the switch open state (i.e. there is no short). There is no way for the gate voltage to be higher than the source voltage, so the mosfet will be in the cutoff mode, leaving D2 off (undesired).

Second, consider the switch closed state (i.e. there is a short). In this configuration, D2 is directly shorted out, so no current will flow through it. Similarly, there is still nothing driving the gate of the mosfet to a higher voltage voltage than the source, so the mosfet is still in cutoff mode (now it's indirectly being pulled down to ground via R2 in parallel with R3).

What's not clear is if you intended this "short circuit" to be a fault, or an actual intended mode of operation (i.e. the user pushing a button/toggling a switch). It seems you intend for the first case where this is an actual fault, but then I don't really understand why you're trying to use a MOSFET based design.

If it's the first case, you should probably consider designs which are intended for handling short circuit faults. For example, adding a fuse:

schematic

simulate this circuit

If you don't want to replace a physical blown fuse, there are of course other similar options such as resettable fuses ("PTC"), circuit breakers, etc.

If the short circuit case is a desired normal mode of operation, then you can re-arrange your mosfet setup to make it work as intended:

schematic

simulate this circuit

In this circuit, when the switch is open, the gate is driven to 9V through R3, while the source is tied to ground. This drives the mosfet into saturation mode, and turns on D2. When the switch is closed, the gate is forced to ground and forces the mosfet to be in cutoff mode.

Note that in this second circuit, when the switch is closed there is current flowing through the switch (albeit, relatively small), while in the circuit with the fuse current will not flow through the short circuit once the fuse blows. This is one of the key difference between these two circuit designs, and why what you intend can change your design.