Stufin
Home Quick Cart Profile

220V 4000W SCR Voltage Regulator

Buy Now on Stufin

Input Current

18A RMS max

Output Current

18A RMS max

Frequency Response

50/60 Hz

Ripple and Noise

<2% of the output voltage

Response Time

<10 ms

Applications

The 220V 4000W SCR Voltage Regulator is suitable for a wide range of industrial and commercial applications, including

Industrial power supplies

Motor control systems

Lighting control systems

Heating and cooling systems

Medical equipment

Telecommunication equipment

Safety Precautions

Ensure proper ventilation to prevent overheating

Avoid overloading the regulator to prevent damage

Use proper electrical connections and wiring to prevent electrical shock

Follow proper installation and maintenance procedures to ensure reliable operation

By providing a stable and regulated output voltage, the 220V 4000W SCR Voltage Regulator is an ideal component for a wide range of industrial and commercial applications that require high power and reliability.

Pin Configuration

  • 220V 4000W SCR Voltage Regulator Documentation
  • Pinout Explanation
  • The 220V 4000W SCR Voltage Regulator module has a total of 6 pins, which are used to control and regulate the output voltage. Below is a detailed explanation of each pin:
  • Pin 1: GND (Ground)
  • Function: Provides a common ground reference point for the module
  • Connection: Connect to the negative terminal of the power supply or the system ground
  • Importance: Ensures stable operation and prevents electrical noise interference
  • Pin 2: VCC (Input Voltage)
  • Function: Supplies the input voltage to the regulator
  • Connection: Connect to the positive terminal of the 220V AC power supply
  • Importance: Provides the necessary voltage to the regulator for operation
  • Pin 3: CTRL (Control Signal)
  • Function: Receives the control signal from the microcontroller or other control devices
  • Connection: Connect to the output of the control device (e.g., microcontroller, potentiometer)
  • Importance: Regulates the output voltage based on the control signal input
  • Pin 4: OUT+ (Output Voltage Positive)
  • Function: Provides the regulated output voltage
  • Connection: Connect to the load (e.g., motor, light, or other devices) requiring regulated voltage
  • Importance: Supplies the stable and controlled output voltage to the load
  • Pin 5: OUT- (Output Voltage Negative)
  • Function: Completes the output voltage circuit
  • Connection: Connect to the negative terminal of the load
  • Importance: Ensures a complete circuit for the output voltage and load operation
  • Pin 6: VREF (Reference Voltage)
  • Function: Provides a stable reference voltage for the regulator
  • Connection: Typically connected to a voltage divider or a zener diode for voltage stabilization
  • Importance: Maintains a stable reference voltage for accurate output voltage regulation
  • Connection Structure
  • To connect the pins, follow this structure:
  • 1. Connect Pin 1 (GND) to the system ground or the negative terminal of the power supply.
  • 2. Connect Pin 2 (VCC) to the positive terminal of the 220V AC power supply.
  • 3. Connect Pin 3 (CTRL) to the output of the control device (e.g., microcontroller, potentiometer).
  • 4. Connect Pin 4 (OUT+) to the positive terminal of the load.
  • 5. Connect Pin 5 (OUT-) to the negative terminal of the load.
  • 6. Connect Pin 6 (VREF) to a voltage divider or a zener diode for voltage stabilization.
  • Important Notes
  • Ensure the input voltage does not exceed 220V AC to prevent damage to the module.
  • Use appropriate heat sinks and thermal management for the SCR and other components to prevent overheating.
  • Implement proper electrical isolation and safety measures when working with high-voltage AC power supplies.
  • By following this documentation and connection structure, you can successfully integrate the 220V 4000W SCR Voltage Regulator into your IoT project or application.

Code Examples

220V 4000W SCR Voltage Regulator Documentation
Overview
The 220V 4000W SCR Voltage Regulator is a high-power voltage regulator module designed to regulate AC voltage output from 0-220V. It features a high-power SCR (Silicon-Controlled Rectifier) as the control element, allowing for precise voltage regulation and high output current capability. This module is suitable for a wide range of applications, including industrial control systems, motor control, and power supplies.
Technical Specifications
Input Voltage: 220V AC
 Output Voltage: 0-220V AC (adjustable)
 Output Power: 4000W
 SCR Type: Silicon-Controlled Rectifier
 Regulation Accuracy: 5%
 Response Time: 10ms
 Operating Temperature: -40C to +85C
Pinout
IN+: Input voltage (220V AC)
 IN-: Input voltage (220V AC)
 OUT+: Output voltage (regulated)
 OUT-: Output voltage (regulated)
 ADJ: Voltage adjustment pin (0-5V DC)
Code Examples
### Example 1: Basic Voltage Regulation using Arduino
This example demonstrates how to use the 220V 4000W SCR Voltage Regulator module with an Arduino board to regulate the output voltage.
```c++
const int adjPin = A0; // ADJ pin connected to Arduino Analog Input 0
const int outputVoltage = 150; // Desired output voltage (150V AC)
void setup() {
  pinMode(adjPin, OUTPUT);
  analogWrite(adjPin, map(outputVoltage, 0, 220, 0, 255)); // Set output voltage using PWM
}
void loop() {
  // No code required in the loop, as the output voltage is set in the setup function
}
```
In this example, the ADJ pin is connected to an Arduino analog output. The `analogWrite()` function is used to set the output voltage by generating a PWM signal. The `map()` function is used to scale the desired output voltage (150V AC) to a corresponding PWM value.
### Example 2: Motor Speed Control using Raspberry Pi
This example demonstrates how to use the 220V 4000W SCR Voltage Regulator module with a Raspberry Pi to control the speed of a motor.
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define ADJ pin as output
adj_pin = 17
GPIO.setup(adj_pin, GPIO.OUT)
try:
    while True:
        # Set output voltage to 100V AC (50% PWM duty cycle)
        GPIO.PWM(adj_pin, 50).start(50)
        time.sleep(1)
# Set output voltage to 150V AC (75% PWM duty cycle)
        GPIO.PWM(adj_pin, 50).start(75)
        time.sleep(1)
except KeyboardInterrupt:
    GPIO.cleanup()
```
In this example, the ADJ pin is connected to a Raspberry Pi GPIO output. The `RPi.GPIO` library is used to set up the GPIO mode and define the ADJ pin as an output. The `GPIO.PWM()` function is used to generate a PWM signal to control the output voltage. The motor speed is changed by adjusting the PWM duty cycle.
Safety Precautions
Handle the module with care, as it operates at high voltages and can cause electrical shock or injury.
 Ensure proper heat dissipation to prevent overheating and damage to the module.
 Follow proper safety guidelines when working with high-voltage AC power.