Electronic – Need help choosing H bridge driver

h-bridge

I am trying to decide on what H-bridge driver (for MOSFET) I should pick. I am completely new to this field so I might say something wrong.

So I decided to make a full H-bridge using 4 N-Channel MOSFETs, IRF1405. In order to do this I need an H-bridge driver to turn on the high side.

I found one full H bridge drive IRS2453(1)D(S) that can drive both sides and has internal bootstrap FET.

But I also saw IRS2001, but this is a half bridge driver (so I assume I need to get 2 of these for a full H-bridge driver) and it also requires bootstrap which I'm not sure how to pick which capacitor and diode to use.

So can someone help me choose, or if there is any other alternative I'll gladly hear your suggestion.

Best Answer

Your first concern in selecting a gate driver is to find one that can drive enough current to switch your selected MOSFETs fast enough for your application. As a rough estimation, you can divide the total gate charge of your MOSFET by the current the driver can sink/supply.

$$ t_{on}=\frac{Q_g}{I_g}$$

Using the worst-case values for IRF1405 and the slower of your two gate drivers, IRS4253:

$$ \require{cancel} \begin{align} t_{on} &= \frac{260 \cdot 10^{-9} C}{180 \cdot 10^{-3}A} \\ &= \frac{260 \cdot 10^{-6} \cancel{C}}{180 \cdot \cancel{C}/s} \\ &= 1.44 \mu s \end{align} $$

Off is faster, because this driver (which is typical) can sink more current than it can source:

$$ \require{cancel} \begin{align} t_{on} &= \frac{260 \cdot 10^{-9} C}{260 \cdot 10^{-3}A} \\ &= 1 \mu s \end{align} $$

If your switching frequency is 10kHz, each switch period is \$1/10000 = 100\mu s\$ and you will spend \$ (1.44\mu s + 1\mu s) / 100\mu s = 2.44\%\$ of that time switching. Probably acceptable, but you should calculate your switching losses and check.

Also, keep in mind this calculation is an approximation. The current specified in the gate driver datasheet is current into a short circuit, but a MOSFET gate isn't that. Unlike a short circuit, the gate voltage rises as it is charged, which will reduce the current the driver can provide. Also, your layout may introduce more inductance and resistance than there was in the test circuit the manufacturer used, further reducing current. Consequently, your actual switching losses may be higher than this calculation suggests.

In selecting the bootstrap capacitor, you want to make sure it's significantly bigger than the gate capacitance it will be charging, so that the bootstrap voltage doesn't sag appreciably when you switch. It also needs to supply whatever leakage current there is as long as you keep the high-side switched on. You can calculate these leakage currents, or just make the bootstrap capacitor way bigger to be safe. 100 times bigger than the gate capacitance should be good, so at least \$26\mu F\$. Bigger doesn't hurt much, so round up to a standard value or whatever you already have in the BOM or stock.

Since this capacitor is the power supply for the high-side gate current, you also want it to be very low impedance. It wouldn't hurt to parallel your big capacitor with some smaller \$100nF\$ decoupling capacitors very near the gate driver(s).

Selecting a bootstrap diode isn't terribly difficult. It needs to be able to withstand the reverse voltage when the H-bridge is switched high. Also keep in mind that you will lose the diode's voltage drop from the gate voltage. A Schottky diode might be nice for this reason, but depending on your circuit, you may not find one that can take the reverse voltage. A simple 1N4148 can take reverse voltage up to \$100V\$.

The reverse recovery time of the diode can also be relevant if your are switching very fast; 1N4148 has a reverse recovery time of \$4ns\$, so you will have to have the H-bridge switched low for significantly longer than that for the bootstrap capacitor to have time to recharge between cycles.