

The IRLZ34N is an N-channel MOSFET (Metal-Oxide-Semiconductor Field-Effect Transistor) designed for high-speed switching applications. It is known for its low on-resistance (RDS(on)), which ensures efficient power management and minimal energy loss. This component is widely used in circuits requiring high current handling and fast switching capabilities.








Below are the key technical details of the IRLZ34N MOSFET:
| Parameter | Value |
|---|---|
| Type | N-Channel MOSFET |
| Maximum Drain-Source Voltage (VDS) | 55V |
| Maximum Gate-Source Voltage (VGS) | ±16V |
| Continuous Drain Current (ID) @ 25°C | 30A |
| Pulsed Drain Current (IDM) | 110A |
| On-Resistance (RDS(on)) @ VGS = 5V | 0.035Ω |
| Total Gate Charge (Qg) | 67nC |
| Power Dissipation (PD) | 68W |
| Operating Temperature Range | -55°C to +175°C |
| Package Type | TO-220 |
The IRLZ34N is housed in a TO-220 package with three pins. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Gate (G) | Controls the MOSFET's switching state |
| 2 | Drain (D) | Current flows into this pin |
| 3 | Source (S) | Current flows out of this pin |
The IRLZ34N can be used to control a DC motor with an Arduino UNO. Below is an example circuit and code:
// Example code to control a DC motor using the IRLZ34N MOSFET
// The motor is connected to pin D9 of the Arduino UNO
const int motorPin = 9; // Define the pin connected to the MOSFET Gate
void setup() {
pinMode(motorPin, OUTPUT); // Set the motor pin as an output
}
void loop() {
analogWrite(motorPin, 128); // Set motor speed to 50% (PWM value: 128)
delay(5000); // Run motor for 5 seconds
analogWrite(motorPin, 0); // Turn off the motor
delay(5000); // Wait for 5 seconds
}
MOSFET Not Turning On
Excessive Heat
Motor Not Running
MOSFET Damage
Q: Can the IRLZ34N be used with 3.3V logic?
A: The IRLZ34N is optimized for 5V logic levels. While it may partially turn on with 3.3V, it is recommended to use a logic-level MOSFET specifically designed for 3.3V operation.
Q: What is the purpose of the flyback diode?
A: The flyback diode protects the MOSFET from voltage spikes generated by inductive loads, such as motors or relays, during switching.
Q: Can I use the IRLZ34N for AC applications?
A: The IRLZ34N is primarily designed for DC applications. For AC applications, consider using a TRIAC or other suitable components.
Q: How do I calculate the required heatsink size?
A: Use the formula P = I2 × RDS(on) to calculate power dissipation, then select a heatsink with adequate thermal resistance to maintain safe operating temperatures.