

An AC single phase motor is an electric motor that operates on a single-phase alternating current (AC) power supply. Manufactured by Songle with the part ID 11, this motor is widely used in household appliances and small machinery due to its simplicity, reliability, and efficiency. It is ideal for applications requiring moderate power output and consistent performance.








| Parameter | Value |
|---|---|
| Manufacturer | Songle |
| Part ID | 11 |
| Operating Voltage | 110V - 240V AC |
| Frequency | 50Hz / 60Hz |
| Power Output | 0.1 HP to 5 HP (varies by model) |
| Speed | 750 RPM to 3600 RPM |
| Starting Mechanism | Capacitor Start or Split Phase |
| Efficiency | 70% - 85% |
| Operating Temperature | -10°C to 50°C |
| Insulation Class | Class B or Class F |
AC single phase motors typically have two or more terminals for connection. Below is a general description of the terminals:
| Pin Name | Description |
|---|---|
| L (Live) | Connects to the live wire of the AC power supply. |
| N (Neutral) | Connects to the neutral wire of the AC power supply. |
| Start Winding | Terminal for the start winding, used during motor startup. |
| Run Winding | Terminal for the run winding, used for continuous operation. |
| Ground | Connects to the ground for safety and to prevent electrical shocks. |
Note: The exact pin configuration may vary depending on the specific motor model. Always refer to the datasheet provided by the manufacturer.
While AC motors are not directly controlled by microcontrollers like the Arduino UNO, you can use a relay module to switch the motor on and off. Below is an example code snippet:
// Example: Controlling an AC single phase motor with Arduino UNO
// This code uses a relay module to switch the motor on and off.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the motor
delay(5000); // Keep the motor running for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the motor
delay(5000); // Wait for 5 seconds before restarting
}
Note: Ensure the relay module is rated for the motor's voltage and current. Use proper isolation techniques to protect the Arduino from high-voltage AC.
| Issue | Possible Cause | Solution |
|---|---|---|
| Motor does not start | Faulty capacitor or wiring issue | Check and replace the capacitor; inspect wiring. |
| Motor overheats | Overload or poor ventilation | Reduce load; ensure proper ventilation. |
| Motor runs but with low speed | Insufficient voltage or damaged winding | Verify voltage supply; check windings. |
| Excessive noise or vibration | Misaligned load or worn bearings | Align load properly; replace bearings. |
| Motor trips circuit breaker | Overcurrent or short circuit | Check for overload; inspect wiring for shorts. |
Can I use this motor with a variable frequency drive (VFD)?
What type of capacitor should I use for a capacitor start motor?
How do I determine the correct wiring for my motor?
Can I reverse the direction of the motor?
By following this documentation, you can effectively use and troubleshoot the Songle AC single phase motor (Part ID: 11) in your applications.