0
0
Raspberry-piConceptBeginner · 3 min read

Full Wave Rectifier: Definition, Working, and Uses

A 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.

python
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()
Output
A plot window showing two curves: a sine wave oscillating above and below zero (AC Input) and a wave that mirrors the sine wave above zero only (Full Wave Rectified Output).
🎯

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.

Key Takeaways

A full wave rectifier converts the entire AC waveform into DC output.
It uses diodes to conduct current during both positive and negative AC cycles.
This results in smoother and more efficient DC power than half wave rectifiers.
Full wave rectifiers are widely used in power supplies and charging circuits.