How to calculate a mosfet’s maximum usable amperage based on a temperature

microcontrollermosfettemperature

With 3.3v at the gate & 12v at the drain, how many milliAmpere can i let flow trough this mosfet keeping it at a resonable temperature?

and

What is a resonable temperature ?

40,60,80 or more °C


I just salvaged 3
IRLL3303 n-type mosfets. And a friend asked me if i could make him a rgb led lamp (for free). I'm trying to figrue out how many amperes i could let flow trough those mosfets but also keeping a low temperature.

  1. i'm using a 3.3v mcu.
  2. the volatage for the led strips is 12v.
  3. everything should kept at a resonable temperature even in summer (max 37°C room temp).

I tried different calculations from various sites but i always get different values and most of the time i can't find all the variables needed in the datasheet.

I linked the datasheet but here is the important stuff:

RDS(on) 0.045Ω (VGS = 4.5V, ID = 2.3A) but i use 3.3v on the gate.

Power Dissipation (PCB Mount) 1.0 W

Linear Derating Factor (PCB Mount) 8.3 mW/°C

Junction and Storage Temperature Range -55 to + 150 °C

Junction-to-Amb. (PCB Mount, steady state) normal=93°C/W max=120°C/W

Best Answer

From the data sheet Fig. 2, you can see a curve at different VGS values. Using the lowest curve (3.0 V), you can see it crosses 2 A at 0.2 V (it's a log-log scale). Therefore the on-resistance is 0.2/2 = 0.1 ohm. This is at +150 C, which is also the maximum allowed junction temperature (this is quite hot and would burn your finger if you touched it). Note that this is actually a typical plot, not a guaranteed worst case value, but in practice FETs are within 20 % of this value. Therefore let's assume 0.12 ohm.

If you don't have a real heatsink, it might be reasonable to assume a thermal resistance of 100 deg/W (with it mounted on a large sheet of metal, it might be 30 deg/W or less). Assuming an ambient of 60 deg (also very warm), and allowing up to 150 C junction, you can have a temperature rise of 150-60 = 90 deg. At 100 deg/W, this allows 90/100 = 0.9 W dissipation.

Using P = I^2*R, and 0.12 ohm gives a current of sqrt(0.9/0.12), or just over 2 A.

The 12 V LED strip value doesn't directly matter (as long as the FET's max VDS rating exceeds this which it does).

In cases like this, it's always better to be on the safe side and round calculations to the 'safe' side.