0

I have a voltage divider that is driving the gate of a high side PMOS switch. The voltage divider turns the PMOS on once the NMOS is turned on by a 5v logic controller. The PMOS turns on instantaneously, but it takes 9 milliseconds for it to turn back off(9ms for Vout to reach 0v again). At first I thought it must be my resistor values so I changed them to R2=47 Ohms and R1=470 Ohms, but it was still taking 9 milliseconds for the PMOS to turn off.

I think my issue might be similar to this question: Slow PNP turn-off time, how to optimize it

But my R2 should be acting as a pull-up resistor already, so I'm not sure how to decrease the turn-off time of the PMOS. enter image description here

tinker102
  • 7
  • 2
  • 3
    *Active* pull up and pull down is what you need. A passive, resistive pull up isn't going to be as fast. – jonk Jun 24 '19 at 19:35
  • MOS gates act as capacitors. when turned off it will discharge through the resistor connected to Vcc at t=RC. – Iaka Noe Jun 24 '19 at 19:38
  • @iaka-noe that's why I thought reducing R2 to 47Ohms would help, but I didn't see any difference. – tinker102 Jun 24 '19 at 19:59
  • 1
    How long does it take the gate of M2 to rise to 80V when M1 is switched off? What is connected to Vout that would make the voltage ever go to ground? How fast does the Vout drop if you connect a fixed resistor, maybe a 1 kilohm, 1 watt, from Vout to ground instead of whatever is normally connected there? – Elliot Alderson Jun 24 '19 at 20:01
  • @jonk could you explain why. For another circuit when I had a pull-down resistor for NMOS gate, a resistor(15 Ohms) did a good job at closing the gate fast. It was this circuit here: https://electronics.stackexchange.com/questions/293039/controlling-nmos-gate-switch-with-pmos/293041#293041 . Although if active pull-up is the only way, I may have to look into it. – tinker102 Jun 24 '19 at 20:02
  • 1
    The RC response time depends on dV/dt=Ic/C neither these nor FET or cable are stated. – Tony Stewart EE75 Jun 24 '19 at 20:09
  • What is the part number for your PMOS? – evildemonic Jun 24 '19 at 20:28
  • 1
    @evildemonic I've updated the schematic with the FET components I was using. PMOS is IRF9540NPBF – tinker102 Jun 24 '19 at 20:33
  • @elliot-alderson I'll measure those values hopefully soon when I get to my equipments. That's a good point on having a fixed resistor at the Vout. Right now I was just using the oscilloscope probe at Vout. – tinker102 Jun 24 '19 at 20:35
  • 2
    If you have nothing but an oscilloscope probe connected at Vout then it is certainly going to take a long time to get to ground. What will normally be connected to Vout? – Elliot Alderson Jun 24 '19 at 21:12
  • An NE2 bulb may have a slow turn off time with a low negative resistance but we still don't know your load. A half bridge with 1us deadtime can certainly speed anything up over a single ended PFET – Tony Stewart EE75 Jun 24 '19 at 21:26
  • @elliot-alderson Vout would normally be attached to a 2200uF capacitor on the positive side and the negative side of capacitor is connected to ground. Isn't the gate of the PMOS that needs to get to ground faster for faster switching, not the drain? – tinker102 Jun 25 '19 at 00:06
  • 1
    @elliot-alderson you were right about the probe being the issue. I put the circuit on a perf board with Vout attached to the capacitor. When I probed it this time the channel closed instantaneously. Thanks for the advice! I like to test my circuit as I build each section, but it looks like I should be building the entire thing and then testing each section. – tinker102 Jun 25 '19 at 04:35
  • I'm glad we were able to help. I wrote this up as a short answer...if you "accept" the answer then it will be highlighted for any future readers that have a similar problem. – Elliot Alderson Jun 25 '19 at 11:08

2 Answers2

1

Companies that make MOSFET devices often publish useful papers called application notes (or white papers, or bench notes, etc.) to help engineers better understand these devices. Listed below are three examples. I also recommend an Internet search using keywords like "MOSFET switch capacitive load".


Texas Instruments
Application Report SLVA883
Timing of Load Switches
http://www.ti.com/lit/an/slva883/slva883.pdf

Vishay Siliconix
Device Application Note AN608A
Power MOSFET Basics: Understanding Gate Charge and Using it to Assess Switching Performance
https://www.vishay.com/docs/73217/an608a.pdf

ON Semiconductor
Application Note AND9093/D
Using MOSFETs in Load Switch Applications
https://www.onsemi.com/pub/Collateral/AND9093-D.PDF


And in addition to everyone else's comments, I suggest you also consider whether to manage the inrush current into the 2200 μF capacitance that's connected to node Vout. If you can, perform a SPICE simulation—e.g., LTspice, OrCAD, etc.—on this circuit with the capacitor initially discharged. You'll find that the 80 V power source, and PMOS transistor M2, and the 2200 μF capacitor must endure a sustained inrush current of about 23 A for about 8 ms when M2 turns on. Parasitic inductance in the PCB traces and in the capacitor should also be considered in circuit nodes where large transient currents are present. See also: negative temperature coefficient (NTC) thermistors; "soft start" circuits/ICs.

Jim Fischer
  • 2,984
  • 11
  • 14
1

To properly measure the fall time of Vout you need to connect something to that point that will pull the voltage down...the PMOS transistor can only pull Vout high. With just an oscilloscope probe connected to Vout the fall time will be very slow, because the oscilloscope probe is intentionally designed not to alter the circuit voltage.

If you just want to test your circuit without connecting the real load to Vout, you can temporarily connect a resistor between Vout and ground. In this case, a 1k\$\Omega\$, 1W, resistor might be a good choice.

Elliot Alderson
  • 31,192
  • 5
  • 29
  • 67