0
0
Raspberry-piHow-ToBeginner · 4 min read

How to Calculate Output Voltage of Rectifier: Simple Guide

To calculate the output voltage of a rectifier, use the formula based on the rectifier type. For a half-wave rectifier, output voltage is approximately Vdc = Vm / π, and for a full-wave rectifier, it is Vdc = 2Vm / π, where Vm is the peak input voltage.
📐

Syntax

The output voltage of a rectifier depends on its type and input voltage. The basic formulas are:

  • Half-wave rectifier: Vdc = Vm / π
  • Full-wave rectifier: Vdc = 2Vm / π
  • Bridge rectifier: Same as full-wave: Vdc = 2Vm / π

Here, Vm is the peak (maximum) voltage of the AC input signal.

These formulas give the average (DC) output voltage after rectification, assuming ideal diodes and no load.

plaintext
Vdc_half_wave = Vm / 3.1416
Vdc_full_wave = 2 * Vm / 3.1416
💻

Example

This example calculates the output voltage of a full-wave rectifier with a peak input voltage of 10 volts.

python
def calculate_rectifier_output(Vm, rectifier_type):
    import math
    if rectifier_type == 'half_wave':
        Vdc = Vm / math.pi
    elif rectifier_type == 'full_wave' or rectifier_type == 'bridge':
        Vdc = 2 * Vm / math.pi
    else:
        raise ValueError('Unknown rectifier type')
    return round(Vdc, 2)

peak_voltage = 10  # volts
output_voltage = calculate_rectifier_output(peak_voltage, 'full_wave')
print(f'Output DC voltage of full-wave rectifier: {output_voltage} V')
Output
Output DC voltage of full-wave rectifier: 6.37 V
⚠️

Common Pitfalls

Common mistakes when calculating rectifier output voltage include:

  • Using RMS voltage instead of peak voltage (Vm) in formulas.
  • Ignoring diode voltage drops, which reduce output voltage slightly in real circuits.
  • Assuming no load; actual output voltage drops under load due to internal resistance.
  • Confusing half-wave and full-wave formulas.

Always convert RMS input voltage to peak voltage by Vm = Vrms × √2 before calculation.

python
import math

# Wrong: Using RMS voltage directly
Vrms = 10
Vdc_wrong = Vrms / math.pi  # Incorrect

# Right: Convert RMS to peak first
Vm = Vrms * math.sqrt(2)
Vdc_right = Vm / math.pi  # Correct for half-wave

print(f'Wrong output voltage: {Vdc_wrong:.2f} V')
print(f'Correct output voltage: {Vdc_right:.2f} V')
Output
Wrong output voltage: 3.18 V Correct output voltage: 4.50 V
📊

Quick Reference

Rectifier TypeOutput Voltage FormulaNotes
Half-waveVdc = Vm / πSimplest, lower output voltage
Full-waveVdc = 2Vm / πHigher output voltage, uses both halves of AC
BridgeVdc = 2Vm / πFull-wave type with 4 diodes
VmPeak voltageVm = Vrms × √2

Key Takeaways

Always use peak voltage (Vm), not RMS, in rectifier output voltage formulas.
Half-wave rectifiers produce lower average output voltage than full-wave types.
Real output voltage is slightly less due to diode drops and load effects.
Convert RMS to peak voltage using Vm = Vrms × √2 before calculations.
Use the formula Vdc = 2Vm / π for full-wave and bridge rectifiers.