

The 1N4001 is a general-purpose silicon rectifier diode designed for a wide range of applications. It is capable of handling a maximum reverse voltage of 50V and a forward current of 1A. This diode is commonly used in power supply circuits to convert alternating current (AC) to direct current (DC). Its robust design and reliability make it a popular choice for low-frequency rectification tasks in consumer electronics, automotive systems, and industrial equipment.








| Parameter | Value |
|---|---|
| Maximum Reverse Voltage | 50V |
| Maximum Forward Current | 1A |
| Peak Surge Current | 30A (8.3ms single half-sine) |
| Forward Voltage Drop | 1.1V (at 1A) |
| Reverse Current | 5µA (at 50V) |
| Operating Temperature | -65°C to +150°C |
| Package Type | DO-41 (300 mil) |
The 1N4001 diode has two terminals:
| Pin Name | Description |
|---|---|
| Anode | Positive terminal (current enters) |
| Cathode | Negative terminal (current exits) |
The cathode is marked with a silver or white band on the diode body.
The 1N4001 can be used to protect an Arduino UNO from reverse polarity or voltage spikes. Below is an example circuit and code for using the diode in a simple DC motor control setup.
// Arduino code for controlling a DC motor with reverse polarity protection
const int motorPin = 9; // PWM pin connected to motor driver
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
analogWrite(motorPin, 128); // Run motor at 50% speed
delay(5000); // Run for 5 seconds
analogWrite(motorPin, 0); // Stop motor
delay(2000); // Wait for 2 seconds
}
Note: The 1N4001 diode in this setup prevents damage to the Arduino by clamping voltage spikes generated when the motor is turned off.
Diode Overheating:
No Current Flow:
Circuit Not Working as Expected:
High Voltage Drop:
Q1: Can I use the 1N4001 for high-frequency applications?
A1: No, the 1N4001 is designed for low-frequency applications (up to 1kHz). For high-frequency circuits, use a fast-recovery or Schottky diode.
Q2: What happens if I exceed the reverse voltage rating?
A2: Exceeding the reverse voltage rating can cause the diode to break down and fail permanently.
Q3: Can I use the 1N4001 for AC voltage higher than 50V?
A3: No, the 1N4001 is rated for a maximum reverse voltage of 50V. For higher voltages, consider using the 1N4007, which can handle up to 1000V.
Q4: How do I test if my 1N4001 diode is working?
A4: Use a multimeter in diode mode. Connect the positive probe to the anode and the negative probe to the cathode. A forward voltage drop of ~0.7V indicates the diode is functional. Reverse the probes to check for no current flow in the reverse direction.
This concludes the documentation for the 1N4001 Rectifier Diode (300 mil).