

A 3 phase supply is an electrical power system that uses three alternating currents, each phase offset by 120 degrees. This configuration provides a more efficient and stable power distribution compared to single-phase systems. It is widely used in industrial and commercial applications due to its ability to deliver consistent power to heavy machinery and equipment.








Below are the key technical details of a standard 3 phase supply system:
| Parameter | Description |
|---|---|
| Voltage Levels | Commonly 208V, 400V, or 480V (varies by region and application) |
| Frequency | 50 Hz or 60 Hz (depending on the country) |
| Phase Angle | 120° phase shift between each phase |
| Power Rating | Typically ranges from a few kW to several MW |
| Connection Types | Star (Wye) or Delta configurations |
| Neutral Line | Present in Star configuration; absent in Delta configuration |
| Current Rating | Depends on the load and system design |
For a 3 phase supply, the connections are typically as follows:
| Pin Name | Description |
|---|---|
| L1 | Phase 1 (Line 1) |
| L2 | Phase 2 (Line 2) |
| L3 | Phase 3 (Line 3) |
| N | Neutral (optional, used for single-phase loads or unbalanced systems) |
| PE | Protective Earth (ground connection for safety) |
| Pin Name | Description |
|---|---|
| L1 | Phase 1 (Line 1) |
| L2 | Phase 2 (Line 2) |
| L3 | Phase 3 (Line 3) |
| PE | Protective Earth (ground connection for safety) |
While an Arduino UNO cannot directly handle a 3 phase supply, it can control a 3 phase motor via a motor driver. Below is an example code snippet for controlling a 3 phase motor using an Arduino UNO and a motor driver:
// Example: Controlling a 3 phase motor with Arduino UNO
// Ensure the motor driver is compatible with the 3 phase motor and supply
const int pwmPin1 = 9; // PWM signal for Phase 1
const int pwmPin2 = 10; // PWM signal for Phase 2
const int pwmPin3 = 11; // PWM signal for Phase 3
void setup() {
pinMode(pwmPin1, OUTPUT); // Set Phase 1 pin as output
pinMode(pwmPin2, OUTPUT); // Set Phase 2 pin as output
pinMode(pwmPin3, OUTPUT); // Set Phase 3 pin as output
}
void loop() {
// Generate PWM signals for the 3 phases
analogWrite(pwmPin1, 128); // 50% duty cycle for Phase 1
analogWrite(pwmPin2, 192); // 75% duty cycle for Phase 2
analogWrite(pwmPin3, 64); // 25% duty cycle for Phase 3
delay(1000); // Wait for 1 second
}
Note: This is a simplified example. In real-world applications, you would use a dedicated motor driver or inverter to handle the 3 phase supply and motor control.
Q: Can I use a 3 phase supply for single-phase equipment?
A: Yes, in a Star configuration, you can use one phase and the Neutral line to power single-phase equipment.
Q: What happens if one phase fails?
A: This is called a "single phasing" condition. It can cause equipment to malfunction or overheat. Install phase failure relays to protect against this.
Q: How do I measure the power in a 3 phase system?
A: Use a 3 phase power meter to measure voltage, current, and power for each phase.
Q: Can I convert a 3 phase supply to single-phase?
A: Yes, using a phase converter or by connecting to one phase and Neutral in a Star configuration. However, this reduces the available power.
Q: Is a Neutral line always required?
A: No, Neutral is only required for unbalanced loads or single-phase equipment in a Star configuration. Delta configurations do not use a Neutral line.