Power Mosfet P Channel



These P-channel power MOSFETs are optimized to meet a broad range of design requirements for load switch, linear regulator and automotive applications. They are available in a wide range of compact packages such as the D2PAK, DPAK, TO-220, SO-8, SOT-223, SOT23-6L and PowerFLAT 2x2. P-channel MOSFETs Discover our STripFET P-channel MOSFETs, available in very small form factor packages and recently enlarged with new trench-gate devices. The main features of our wide STPOWER MOSFET portfolio include: -100 to 1700 V breakdown voltage range. P-channel power MOSFETs reducing design complexity in medium and low power applications Infineon's P-channel enhancement mode power MOSFETs offer the designer a new option that can simplify circuitry while optimizing performance. The main advantage of a P-channel device is the reduction of design complexity in medium and low power applications. P-Channel NexFET™ Power MOSFETs Check for Samples: CSD25401Q3 1FEATURES Table 1. PRODUCT SUMMARY 2. Ultra Low Q g and Qgd. Low Thermal Resistance VDS Drain to Source Voltage –20 V Qg Gate Charge Total (4.5V) 8.8 nC. Low RDS(on) Qgd Gate Charge Gate to Drain 2.1 nC. Pb Free Terminal Plating V GS = –2.5V 13.5 m Ω.

  1. P Channel Power Mosfet Catalog
  2. High Power P Channel Mosfet
  3. Low Power P Channel Mosfet

Infineon is the market leader in highly efficient solutions for power generation, power supply and power consumption. The latest generation of Infineon’s MOSFET transistors were designed to ensure market leading performance, improve efficiency and to achieve better thermals in terms of the state of the art EMI behavior.

AC-DC applications requiring high-voltage blocking capability and fast switching with low losses take advantage of the revolutionary CoolMOS™ superjunction technology for more efficient power supplies. Infineon’s superjunction MOSFETs serve today's and especially tomorrow’s trends in different topologies, ranging from a simple flyback to TCM Totem Pole PFC. Designers benefit from a lower temperature, the improved form factor, and increased efficiency.

Power Mosfet P Channel

Connecting a P-Channel MOSFET to an Arduino can be a little trickier than an N-Channel MOSFET, but if you understand how it works, then it's not very complicated.

Power

The main thing to understand about P-Channel MOSFETs is that they activate when the voltage on the Gate terminal is lower than the Source. It means that the Source of the MOSFET must be connected to the 5V output of the Arduino. Then the Arduino output pin LOW can be lower than the Source.

Symbols for P-Channel MOSFETs:

To simplify things, I am giving all the examples for the more common Enhancement-Type ('Normally OFF') MOSFETs - these are not conducting electricity when the voltage between the Gate and the Source (Vgs) is zero. The alternative Depletion-Type ('Normally ON') MOSFETs are a logical inversion of that. You can apply all the same examples and rules for a Depletion-Type MOSFET. Just the ON/OFF status is reversed.

In this article, I am going to explain all the necessary connections (and related dangers) to create the following diagram. And how to then control the power of the motor with an Arduino output pin.

Required Components

Power mosfet p channel switch

Disclosure: Bear in mind that some of the links in this post are affiliate links and if you go through them to make a purchase I will earn a commission. Keep in mind that I link these companies and their products because of their quality and not because of the commission I receive from your purchases. The decision is yours, and whether or not you decide to buy something is completely up to you.

Video Tutorial

A step-by-step guide about using a P-Channel MOSFET with an Arduino to switch a 12V motor ON and OFF.

P-Channel MOSFET on the 12V (VCC) Side of the Load

Let's say you want to turn ON and OFF a 12V DC motor using an Arduino and a P-Channel MOSFET.

The most intuitive way to archive this goal is to wire the MOSFET on the VCC side of the load (the motor in this case).

You need to have two power sources - one for the Arduino, and a separate 12V power source for the motor.
You cannot connect the Arduino's barrel jack to the 12V! This will create a common ground between your Arduino and the 12V power supply. And it would fry the Arduino when you are creating the common VCC needed for this circuit. (With an N-Channel MOSFET you don't have this problem since you want to have a common ground between the power source and the Arduino)

1. First, you need to create a Common VCC by connecting the positive output of the 12V power source to the Arduino 5V pin. DO NOT CONNECT THE GROUNDS!

2. Then connect the Source pin of the MOSFET to the VCC and the Drain pin to the positive lead of the motor.

P Channel Power Mosfet Catalog

Usually, you have common Ground between devices. But in this case, we need the Arduino to be able to put -5V on the Gate terminal of the P-Channel MOSFET. Connecting the Arduino 5V pin to the VCC (and the Source) will achieve this since now the Arduino output HIGH will be 0V on the Gate, and output low will be -5V on the Gate.

3. Connect the negative lead of the motor to the negative output of the 12V power supply.

4. With inductive loads (devices that have coils in them) like a motor, you need to add a flyback diode. It's a diode that is connected across the load in a reverse direction of the normal current flow. During motor operation, it doesn't do anything. But when the MOSFET switches OFF, the coil inside the motor will continue pushing electrons forward and will create a voltage spike. This can damage your MOSFET. The flyback diode allows the excess induced current to flow back and circulate inside the motor until all the energy is dissipated.

High Power P Channel Mosfet

5. Add a 10k resistor between the Gate terminal and the VCC. It will ensure that the MOSFET is OFF while the Arduino pin is not initialized as OUTPUT yet, and is not actively driving the Gate (during startup, for example).

6. Finally, connect the Arduino digital output pin to the Gate via a 100-ohm resistor.

The 100-ohm resistor is necessary since the MOSFET will have a small internal capacitance. When you switch the digital output pin, it will start to charge/discharge, and it will create a current spike that can damage the Arduino Arduino pin, especially if you plan to do high-frequency switching.

P-Channel MOSFET on the Ground Side of the Load

I'll give this alternative connection diagram for educational purposes. Maybe it helps to understand the P-Channel MOSFET better.

You can also connect a P-Channel MOSFET below the load on the negative side of the power source. But here we don't have a common Ground nor a common VCC with the 12V power supply. Arduino 5V and GND pins are floating somewhere between the + and - outputs of the 12V power supply because there are no direct connections to them.

P-channel power mosfet switch tutorial

Since the MOSFET is activated or deactivated based on the voltage between the Gate and the Source, we need to make sure that the Arduino 5V pin is on the same level as the Source. So we need to connect the Source directly to the Arduino 5V pin.

Low Power P Channel Mosfet

It's the same case here that you cannot connect the grounds of the power supply and the Arduino! If you do that, you will apply more than five volts to the 5V pin (through the motor).

Power mosfet p channel datasheet

Arduino Code to Control the MOSFET

To drive a P-Channel MOSFET, you have to define one of the Arduino pins as OUTPUT and set it to HIGH to turn it OFF and set it to LOW to turn it ON.

HIGH state is OFF because the Source pin of the MOSFET is connected to the 5V output of the Arduino. It means that Vgs (voltage between the Gate and the Source) is 0V, and an Enhancement-Type MOSFET is turned OFF in this circumstance.

The following code will turn a motor ON and OFF every five seconds:

If you are controlling a motor or a lamp that can handle a PWM signal, then you can also use analog write command. For example, this will drive a motor at half the power or dim a LED light to 50 percent: