

A bridge rectifier is an electrical circuit designed to convert alternating current (AC) into direct current (DC). It achieves this by using four diodes arranged in a bridge configuration, which allows current to flow in both directions while rectifying the AC input into a usable DC output. Bridge rectifiers are widely used in power supplies, battery charging circuits, and other applications requiring DC power derived from an AC source.








Below are the general technical specifications for a typical bridge rectifier. Note that specific values may vary depending on the model and manufacturer.
The bridge rectifier typically has four terminals: two for the AC input and two for the DC output. The pin configuration is as follows:
| Pin Name | Description |
|---|---|
| AC Input (AC1) | First AC input terminal |
| AC Input (AC2) | Second AC input terminal |
| DC Output (+) | Positive DC output terminal |
| DC Output (-) | Negative DC output terminal (ground) |
The following diagram illustrates the pin configuration and internal diode arrangement:
~ AC1 ~ AC2
| |
| |
[D1] [D2]
| |
+-----------+---- + DC Output
| |
[D3] [D4]
| |
+-----------+---- - DC Output
If you are powering an Arduino UNO from an AC source, you can use a bridge rectifier to convert the AC to DC. Below is an example circuit and code to read the rectified voltage:
// This code reads the rectified voltage using an analog pin on the Arduino UNO.
// Ensure the voltage divider reduces the input voltage to within 0-5V range.
const int voltagePin = A0; // Analog pin connected to the voltage divider
float voltage = 0.0; // Variable to store the measured voltage
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(voltagePin); // Read the analog input
voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage (0-5V range)
// Print the measured voltage to the Serial Monitor
Serial.print("Rectified Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Excessive Heat:
High Ripple Voltage:
Damaged Diodes:
Q: Can I use a bridge rectifier with a DC input?
A: No, a bridge rectifier is designed for AC input. Using a DC input may result in improper operation or damage.
Q: How do I calculate the required filter capacitor value?
A: Use the formula:
[
C = \frac{I}{f \cdot V_{ripple}}
]
Where (I) is the load current, (f) is the AC frequency, and (V_{ripple}) is the allowable ripple voltage.
Q: Can I use a bridge rectifier for high-frequency AC signals?
A: Standard bridge rectifiers are not suitable for high-frequency signals. Use fast-recovery or Schottky diodes for such applications.