

The AC 3 Phase Source is a power source that provides alternating current (AC) in three phases. Unlike single-phase power, which delivers power through a single alternating voltage, a three-phase source uses three alternating voltages that are 120 degrees out of phase with each other. This configuration ensures a constant power transfer, making it ideal for industrial and commercial applications.








The following table outlines the key technical details of a standard AC 3 Phase Source:
| Parameter | Specification |
|---|---|
| Voltage Range | 208V, 400V, 480V (common standards) |
| Frequency | 50 Hz or 60 Hz |
| Power Rating | Varies (commonly 1 kW to 1 MW) |
| Phase Angle Difference | 120° between each phase |
| Output Waveform | Sinusoidal |
| Efficiency | Typically >90% |
The AC 3 Phase Source typically has three live wires (phases) and one neutral wire. The table below describes the connections:
| Pin/Terminal | Description |
|---|---|
| L1 (Phase 1) | First phase of the AC power source |
| L2 (Phase 2) | Second phase of the AC power source |
| L3 (Phase 3) | Third phase of the AC power source |
| N (Neutral) | Neutral wire for return current |
| PE (Protective Earth) | Ground connection for safety |
Connection Setup:
Voltage and Frequency Matching:
Load Balancing:
Startup Procedure:
While an Arduino UNO cannot directly interface with an AC 3 Phase Source, it can monitor parameters like voltage or current using sensors. Below is an example of how to measure the current of one phase using a current sensor (e.g., ACS712):
// Example code to read current from one phase using ACS712 sensor
const int sensorPin = A0; // Analog pin connected to the current sensor
float sensitivity = 0.185; // Sensitivity of ACS712 (e.g., 185 mV/A for 5A model)
float offsetVoltage = 2.5; // Offset voltage at 0A (for 5V supply)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(sensorPin); // Read sensor value
float voltage = (sensorValue / 1023.0) * 5.0; // Convert to voltage
float current = (voltage - offsetVoltage) / sensitivity; // Calculate current
// Print the current value to the Serial Monitor
Serial.print("Current: ");
Serial.print(current);
Serial.println(" A");
delay(1000); // Wait for 1 second before the next reading
}
Note: Ensure proper isolation between the AC 3 Phase Source and the Arduino UNO to avoid damage.
Issue: Equipment does not start or operates erratically.
Issue: Overheating of wires or equipment.
Issue: Circuit breaker trips frequently.
Issue: High harmonic distortion.
Q: Can I use an AC 3 Phase Source for single-phase equipment?
Q: How do I measure the phase sequence?
Q: What happens if the load is unbalanced?
Q: Is it safe to work with an AC 3 Phase Source?