2

Is it possible to have a high side MOSFET switch that will allow any direction of current? I was trying to design one but without the success. Or should I use a relay?

0___________
  • 2,458
  • 10
  • 25

1 Answers1

12

Fun fact: MOSFETs (JFETs too!) will conduct in either direction when Vgs is above threshold.

The issue with MOSFETs (3-terminal ones, with the body tied to source) is the parasitic body diode formed by the FET structure and body-source tie also conducts when the drain-source voltage is in the reverse direction, even if the FET gate is off.

More about that pesky body diode here: How should I understand the intrinsic body diode inside a MOSFET?

In other words:

  • FET 'on': conducts in both directions through drain-source channel with Rds(on) resistance
  • FET 'off': blocks forward drain-source, conducts reverse through body diode with one Vf drop.

Note that when 'on', the FET drain-source channel shorts out the body diode, so the large majority of the current flows through the normal drain-source path and not the parasitic diode.

The workaround is to tie two FETs in series, back-to-back, source-to-source or drain-to-drain. This allows each FET to block the other's parasitic body diode when 'off'.

More here: Does MOSFET let current flow through source to drain as it allows it from drain to source?

BONUS: A simulation showing high-side switches built with n-FETs in 3 different ways: 4-terminal, 3-terminal with body diode, and back-to-back 3-terminal.

Simulate it here

enter image description here

hacktastical
  • 49,832
  • 2
  • 47
  • 138
  • 1
    A couple of caveats: It can sometimes be tricky to bias the gate if the voltage you are switching is greater than the allowed gate to source voltage of the FET. Also there will be a significant amount of capacitance across the switch when in the off state. – Kevin White May 20 '21 at 17:44
  • Actually, it is very feasible to use a single MOSFET (e.g. n channel) to block bidirectional voltages. If the body is tied to VSS instead of the source, there will be two antiserial diodes in parallel to the channel and parasitic body conduction will not occur. Unfortunately 4-terminal MOSFETs are no longer sold as such, but some can still be found - labeled as NMOS analog switches. – tobalt May 20 '21 at 18:20