Full Wave Rectifier: Definition, Working, and Uses
full wave rectifier is an electronic circuit that converts the entire alternating current (AC) input into direct current (DC) output by using both halves of the AC waveform. It produces a smoother and more efficient DC output compared to a half wave rectifier.How It Works
A full wave rectifier works by flipping the negative half of an AC signal to positive, so the output current flows in only one direction. Imagine a water pump that pushes water forward no matter which way the handle is turned; similarly, the rectifier ensures current always flows forward.
It uses diodes arranged so that during the positive half cycle of AC, one set of diodes conducts, and during the negative half cycle, another set conducts. This way, both halves of the AC wave contribute to the output, making the DC output smoother and more continuous.
Example
This Python example simulates a full wave rectifier by converting an AC sine wave into a full wave rectified signal.
import numpy as np import matplotlib.pyplot as plt # Generate time values x = np.linspace(0, 2 * np.pi, 1000) # Simulate AC input as sine wave ac_signal = np.sin(x) # Full wave rectification: take absolute value full_wave_output = np.abs(ac_signal) # Plotting plt.plot(x, ac_signal, label='AC Input') plt.plot(x, full_wave_output, label='Full Wave Rectified Output') plt.title('Full Wave Rectifier Simulation') plt.xlabel('Time') plt.ylabel('Voltage') plt.legend() plt.grid(True) plt.show()
When to Use
Use a full wave rectifier when you need a steady and efficient DC power supply from an AC source. It is common in power adapters, battery chargers, and DC motor drives where smooth DC voltage is important.
Compared to half wave rectifiers, full wave rectifiers reduce power loss and provide better voltage regulation, making them ideal for most electronic devices that run on DC power.
Key Points
- Full wave rectifiers convert both halves of AC to DC.
- They use multiple diodes arranged in bridge or center-tap configurations.
- Output is smoother and more efficient than half wave rectifiers.
- Commonly used in power supplies and electronic devices.