The Movitrac LTE-B+ is a versatile frequency inverter manufactured by SEW (Part ID: MCLTEB0015-2B1-4-00). It is designed for controlling three-phase AC motors, offering advanced features such as energy efficiency, precise speed control, and robust communication options. This component is ideal for applications requiring reliable motor control in industrial environments.
Parameter | Value |
---|---|
Input Voltage Range | 1-phase: 200–240 V AC ±10% |
Output Voltage Range | 3-phase: 0–240 V AC |
Output Frequency Range | 0–120 Hz |
Rated Power | 1.5 kW |
Rated Current | 7.0 A |
Control Method | V/f (Voltage/Frequency) control, Vector control |
Communication Interfaces | RS485 (Modbus RTU) |
Protection Class | IP20 |
Operating Temperature Range | -10°C to +50°C |
Dimensions (H x W x D) | 173 mm x 73 mm x 143 mm |
Weight | 1.1 kg |
The Movitrac LTE-B+ features a terminal block for wiring connections. Below is the pin configuration:
Pin No. | Label | Description |
---|---|---|
L | L | Line input (AC power supply) |
N | N | Neutral input (AC power supply) |
PE | PE | Protective Earth (ground) |
U | U | Output to motor phase U |
V | V | Output to motor phase V |
W | W | Output to motor phase W |
Pin No. | Label | Description |
---|---|---|
1 | +24V | 24V DC supply for control circuits |
2 | GND | Ground for control circuits |
3 | DI1 | Digital input 1 (e.g., Start/Stop) |
4 | DI2 | Digital input 2 (e.g., Forward/Reverse) |
5 | AI1 | Analog input 1 (0–10V or 4–20mA) |
6 | AO1 | Analog output 1 (e.g., motor speed feedback) |
7 | RS485+ | RS485 communication (positive) |
8 | RS485- | RS485 communication (negative) |
L
and N
terminals. Ensure the PE
terminal is properly grounded for safety.U
, V
, and W
terminals.DI1
.AI1
for speed control via a potentiometer or analog signal.The Movitrac LTE-B+ can be controlled via Modbus RTU using an Arduino UNO. Below is an example code snippet:
#include <ModbusMaster.h>
// Create ModbusMaster object
ModbusMaster node;
void setup() {
Serial.begin(9600); // Initialize serial communication
node.begin(1, Serial); // Set Modbus slave ID to 1
// Configure digital pin for Start/Stop control
pinMode(7, OUTPUT);
digitalWrite(7, LOW); // Ensure motor is stopped initially
}
void loop() {
// Example: Set motor speed to 50% (assuming 0–100% range)
uint16_t speedValue = 500; // 50% of max speed (scaled to 0–1000)
// Write speed value to Modbus register (e.g., register 0x2000)
uint8_t result = node.writeSingleRegister(0x2000, speedValue);
if (result == node.ku8MBSuccess) {
Serial.println("Speed set successfully!");
} else {
Serial.println("Failed to set speed.");
}
delay(1000); // Wait for 1 second before next operation
}
Note: Ensure the Modbus register addresses match the Movitrac LTE-B+ documentation. Use a suitable RS485-to-TTL converter to connect the Arduino to the inverter.
Inverter Does Not Power On
Motor Does Not Start
DI1
and verify motor parameters.Overload or Overcurrent Fault
Communication Failure
Q: Can the Movitrac LTE-B+ control single-phase motors?
A: No, it is designed for three-phase AC motors only.
Q: How do I reset the inverter to factory settings?
A: Refer to the user manual for the specific parameter reset procedure.
Q: What is the maximum cable length for RS485 communication?
A: The maximum recommended length is 1200 meters, depending on the baud rate and cable quality.
Q: Can I use the Movitrac LTE-B+ outdoors?
A: No, the inverter has an IP20 protection class and must be installed in a dry, indoor environment.
By following this documentation, users can effectively integrate and operate the Movitrac LTE-B+ in their applications.