

The Diode (Output Rectifier), manufactured by John, is a semiconductor device designed to allow current to flow in one direction only. This component is primarily used in power supply circuits to convert alternating current (AC) into direct current (DC). Its rectification properties make it an essential component in various electronic applications, including power adapters, battery chargers, and DC power supplies.








Below are the key technical details for the John Diode (Output Rectifier):
| Parameter | Value |
|---|---|
| Maximum Reverse Voltage (VR) | 100V - 1000V (varies by model) |
| Forward Voltage Drop (VF) | 0.7V (Silicon) / 0.3V (Schottky) |
| Maximum Forward Current (IF) | 1A - 10A (varies by model) |
| Peak Surge Current (IFSM) | 30A - 150A (varies by model) |
| Reverse Recovery Time (trr) | 50ns - 200ns (varies by model) |
| Operating Temperature Range | -55°C to +150°C |
The diode has two terminals: Anode and Cathode. The following table describes the pin configuration:
| Pin | Description |
|---|---|
| Anode | Positive terminal where current enters the diode. |
| Cathode | Negative terminal where current exits the diode. |
The cathode is typically marked with a band or stripe on the diode body for easy identification.
The diode can be used to protect an Arduino UNO from reverse polarity. Below is an example circuit and code:
// Example code to blink an LED connected to pin 13
// Ensure the diode protects the Arduino from reverse polarity
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Diode Overheating:
No Current Flow:
Voltage Drop Too High:
Diode Failure:
Q: Can I use this diode for high-frequency applications?
A: Yes, but ensure the reverse recovery time (trr) is suitable for the operating frequency. Schottky diodes are recommended for high-frequency circuits.
Q: How do I test if a diode is working?
A: Use a multimeter in diode mode. A functional diode will show a low voltage drop (e.g., 0.7V for silicon) in the forward direction and no conduction in the reverse direction.
Q: Can this diode protect my circuit from reverse polarity?
A: Yes, place the diode in series with the power supply to block reverse current flow.
By following this documentation, you can effectively use the John Diode (Output Rectifier) in your electronic projects.