0
0
Raspberry-piConceptBeginner · 3 min read

Controlled Rectifier: Definition, Working, and Uses

A controlled rectifier is an electronic device that converts alternating current (AC) to direct current (DC) with the ability to control the output voltage by adjusting the firing angle of its gate signal. It uses semiconductor devices like thyristors to regulate power flow, unlike a simple diode rectifier which cannot be controlled.
⚙️

How It Works

A controlled rectifier works like a gatekeeper for electric current. Imagine a door that only opens when you tell it to, and you can decide exactly when to open it. In this case, the door is the semiconductor device called a thyristor, which stays off until it receives a small control signal called a gate pulse.

When the gate pulse is applied, the thyristor allows current to flow from AC to DC. By changing the timing of this gate pulse within each AC cycle, you can control how much power passes through. This is like opening the door earlier or later during a wave of people passing by, controlling how many get through.

This control over the timing is called the firing angle, and it lets you adjust the output voltage smoothly, making controlled rectifiers very useful in applications where variable DC voltage is needed.

💻

Example

This simple Python example simulates how changing the firing angle affects the output voltage of a controlled rectifier.

python
import math

def controlled_rectifier_output(firing_angle_deg, peak_voltage=100):
    # Convert firing angle to radians
    firing_angle_rad = math.radians(firing_angle_deg)
    # Calculate average output voltage for a single-phase controlled rectifier
    output_voltage = (peak_voltage / math.pi) * (1 + math.cos(firing_angle_rad))
    return output_voltage

# Example firing angles in degrees
angles = [0, 30, 60, 90, 120, 150]

for angle in angles:
    voltage = controlled_rectifier_output(angle)
    print(f"Firing angle: {angle}°, Output voltage: {voltage:.2f} V")
Output
Firing angle: 0°, Output voltage: 63.66 V Firing angle: 30°, Output voltage: 55.00 V Firing angle: 60°, Output voltage: 43.30 V Firing angle: 90°, Output voltage: 31.83 V Firing angle: 120°, Output voltage: 18.40 V Firing angle: 150°, Output voltage: 6.70 V
🎯

When to Use

Controlled rectifiers are used when you need to convert AC to DC but also want to control the output voltage or power. This is common in electric motor speed control, where varying the voltage changes the motor speed smoothly.

They are also used in power supplies for industrial equipment, battery charging systems, and light dimmers. Anywhere precise control of DC voltage from an AC source is needed, controlled rectifiers are a good choice.

Key Points

  • A controlled rectifier uses a thyristor to allow controlled conduction of current.
  • The output voltage is controlled by adjusting the firing angle of the gate signal.
  • It converts AC to DC with adjustable output, unlike simple diode rectifiers.
  • Commonly used in motor control, power supplies, and battery chargers.

Key Takeaways

A controlled rectifier converts AC to DC with adjustable output voltage using a thyristor.
The firing angle controls when the device allows current, regulating power flow.
It is essential for applications needing variable DC voltage like motor speed control.
Unlike simple rectifiers, it provides precise control over the output voltage.
Controlled rectifiers are widely used in industrial and power electronics systems.