

Adjustable Frequency Drives (AFDs), also known as Variable Frequency Drives (VFDs), are devices designed to control the speed and torque of electric motors by varying the frequency and voltage of the power supplied to the motor. The Eaton MVX9000 series is a robust and versatile AFD, suitable for a wide range of industrial and commercial applications. These drives are particularly effective in optimizing energy consumption, improving motor performance, and extending the lifespan of motor systems.








The Eaton MVX9000 series is designed to meet the demands of modern motor control applications. Below are the key technical specifications:
| Parameter | Value |
|---|---|
| Input Voltage Range | 200-240V AC (Single/Three-phase) |
| Output Voltage Range | 0-240V AC |
| Frequency Range | 0.1 Hz to 400 Hz |
| Power Ratings | 0.5 HP to 30 HP |
| Control Method | V/Hz (Volts per Hertz), Sensorless Vector |
| Efficiency | >95% |
| Operating Temperature | -10°C to 50°C |
| Protection Rating | IP20 (Standard) |
The MVX9000 series features a terminal block for control and power connections. Below is the pin configuration:
| Pin No. | Label | Description |
|---|---|---|
| 1 | +24V | 24V DC supply for external devices |
| 2 | COM | Common ground for control signals |
| 3 | FWD | Forward run command input |
| 4 | REV | Reverse run command input |
| 5 | AI1 | Analog input 1 (0-10V DC or 4-20mA) |
| 6 | AO1 | Analog output 1 (0-10V DC, proportional to speed) |
| 7 | DI1 | Digital input 1 (programmable) |
| 8 | DI2 | Digital input 2 (programmable) |
| 9 | DO1 | Digital output 1 (programmable relay) |
| Pin No. | Label | Description |
|---|---|---|
| L1, L2, L3 | Input | AC power input terminals (Single/Three-phase) |
| U, V, W | Output | Motor connection terminals |
| PE | Ground | Protective earth terminal |
Wiring the Drive:
Configuring the Drive:
Testing the System:
Programming with an Arduino UNO (Optional):
// Arduino code to control Eaton MVX9000 via PWM signal
const int pwmPin = 9; // PWM output pin connected to AI1 on MVX9000
void setup() {
pinMode(pwmPin, OUTPUT); // Set PWM pin as output
}
void loop() {
int speed = 128; // Set motor speed (0-255, where 255 is max speed)
analogWrite(pwmPin, speed); // Send PWM signal to control motor speed
delay(1000); // Wait for 1 second
}
Issue: Drive does not power on.
Issue: Motor does not start or runs erratically.
Issue: Overcurrent or overvoltage fault.
Issue: Excessive noise or vibration in the motor.
Q1: Can the MVX9000 be used with single-phase motors?
A1: The MVX9000 is primarily designed for three-phase motors, but it can support single-phase input for certain models. Refer to the specific model's datasheet for compatibility.
Q2: What is the maximum cable length between the drive and the motor?
A2: The maximum cable length depends on the motor's power rating and the cable type. Typically, it is recommended to keep the cable length below 50 meters to minimize voltage drop and EMI.
Q3: Can I use the MVX9000 for regenerative braking?
A3: Yes, the MVX9000 supports regenerative braking with the addition of an external braking resistor.
Q4: How do I reset the drive to factory settings?
A4: Access the drive's menu via the keypad or software and select the "Factory Reset" option under the system settings.
By following this documentation, users can effectively utilize the Eaton MVX9000 Adjustable Frequency Drive for their motor control applications.