0
0
Raspberry-piConceptBeginner ยท 3 min read

Single Phase Controlled Rectifier: Definition and Uses

A single phase controlled rectifier is an electronic circuit that converts alternating current (AC) to direct current (DC) by controlling the output voltage using devices like thyristors. It allows adjusting the output by changing the firing angle of the thyristors, unlike a simple diode rectifier which cannot control output voltage.
โš™๏ธ

How It Works

A single phase controlled rectifier uses special switches called thyristors to convert AC power into DC power. Imagine AC as water flowing back and forth in a pipe. The rectifier acts like a valve that opens only at certain times to let water flow in one direction, creating a steady stream.

By changing when the valve opens (called the firing angle), you control how much water flows through. Similarly, the rectifier controls the output voltage by delaying the moment the thyristor starts conducting in each AC cycle. This lets you adjust the power delivered to a device smoothly.

๐Ÿ’ป

Example

This example shows how to calculate the average output voltage of a single phase controlled rectifier given the input voltage and firing angle.

python
import math

def average_output_voltage(Vm, alpha_degrees):
    alpha = math.radians(alpha_degrees)
    # Vm is peak voltage, alpha is firing angle in radians
    Vdc = (Vm / math.pi) * (1 + math.cos(alpha))
    return Vdc

# Example: Peak voltage 325V (230V RMS), firing angle 60 degrees
Vm = 325
alpha = 60
output_voltage = average_output_voltage(Vm, alpha)
print(f"Average output voltage: {output_voltage:.2f} V")
Output
Average output voltage: 163.75 V
๐ŸŽฏ

When to Use

Single phase controlled rectifiers are used when you need to convert AC to DC with the ability to adjust the output voltage. This is useful in applications like:

  • Speed control of DC motors in small machines
  • Battery charging where voltage control is important
  • Power supplies that require variable DC voltage
  • Light dimming and heating control systems

They are preferred when smooth control of power is needed rather than just simple conversion.

โœ…

Key Points

  • Uses thyristors to control output voltage by adjusting firing angle.
  • Converts AC to DC with adjustable output, unlike diode rectifiers.
  • Common in motor speed control, battery charging, and power regulation.
  • Simple design but effective for controlling power in single phase systems.
โœ…

Key Takeaways

A single phase controlled rectifier converts AC to DC with adjustable output voltage using thyristors.
Output voltage is controlled by changing the firing angle of the thyristors in each AC cycle.
It is commonly used in motor control, battery charging, and power regulation applications.
This rectifier provides smooth control over power unlike simple diode rectifiers.