

The 1N4004 is a general-purpose silicon rectifier diode designed for applications requiring reliable rectification of AC to DC. It is capable of handling a maximum reverse voltage of 400V and a forward current of 1A. This diode is widely used in power supply circuits, voltage rectifiers, and protection circuits due to its robust design and ease of use.








The following table outlines the key technical details of the 1N4004 rectifier diode:
| Parameter | Value |
|---|---|
| Maximum Reverse Voltage | 400V |
| 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 25°C, 400V) |
| Operating Temperature | -65°C to +150°C |
| Package Type | DO-41 |
The 1N4004 diode has two terminals:
| Pin | 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.
Below is an example of using the 1N4004 diode in a full-wave rectifier circuit with an Arduino UNO:
// This code reads the DC voltage from the rectifier circuit using an Arduino UNO.
// The voltage is measured on analog pin A0 and displayed via the Serial Monitor.
const int analogPin = A0; // Pin connected to the rectifier output
float voltage = 0.0; // Variable to store the measured voltage
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog input
voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage (5V reference)
// Print the voltage to the Serial Monitor
Serial.print("Measured Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Excessive Heat:
Voltage Drop Too High:
Diode Failure:
Q1: Can I use the 1N4004 for high-frequency applications?
A1: No, the 1N4004 is not suitable for high-frequency applications due to its slow recovery time. Use a fast recovery or Schottky diode instead.
Q2: What is the difference between the 1N4004 and 1N4007?
A2: The primary difference is the maximum reverse voltage rating. The 1N4004 is rated for 400V, while the 1N4007 is rated for 1000V. Both have the same forward current rating of 1A.
Q3: Can I use the 1N4004 in a bridge rectifier configuration?
A3: Yes, you can use four 1N4004 diodes to create a full-wave bridge rectifier for AC to DC conversion.
Q4: How do I test if the 1N4004 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 approximately 0.7V indicates the diode is functional. Reverse the probes to check for no conduction in the reverse direction.
By following this documentation, you can effectively use the 1N4004 rectifier diode in your electronic projects.