SLX系列
Programmable DC Power Supply
- Size
- 1U
- Power
- 1.5 kW to 10 kW
- Manufactured
- USA
- Build-time
- 4-6 weeks
SLX系列以40多年的电源创新为基础,拥有超过26,500多种不同的模型配置,是Magna-Power有史以来最可编程的DC电源系列。 SLX系列提供6个不同功率水平的型号,具有高度颗粒状的电压和电流。凭借行业领先的领先电力密度,坚固的电流式电源处理以及最先进的MagnAlink™分布式DSP数字控制架构,SLX系列符合研发,工业自动化的长期DC功率要求和过程控制应用程序。
主要特点
- 电压,电流和电源控制
- 崎
- 单位控制的16位精度
- SCPI和MODBUS命令集
- 可编程保护功能
- 互锁和硬件紧急停止
- 驱动率控制
- 连续的全功率运行最多可达50°C的环境
- 可配置的模拟数字26针I/O端口
- 数字杂志Magnalink™大师
- 本地,遥控和无铅电压感应
- USB(前后)和RS485接口标准
- 可以,EtherCAT,以太网/IP,LXI TCP/IP以太网,ModbusTCP和Profinet完全集成的通信选项
- 包括Magnactrl软件平台
- 美国制造
Talk with an expert
Do more with MagnaLINK™ distributed digital control.
Precision control & measurement
DSP-driven precision from setpoint to point-of-load.
The SLx Series features Magna-Power's xGen MagnaLINK™ digital control platform, which uses a distributed network of DSPs and high-speed board-to-board communications utilizing an internally developed low-level communication protocol. Internal gain scheduling with field-tunable gains supports a broad range of load conditions.
- Voltage, current, and power control with 16-bit resolution.
- Programmable slew-rate controls.
- Native 100 ppm stability.
- Local, remote, and leadless voltage sensing for accurate point-of-load regulation.
Plug-and-play master-slaving
Scale power seamlessly with aggregate system ratings.
Dual MagnaLINK ports provide next-generation digital-hybrid master-slaving, so one unit can command a synchronized stack. Expand current capability by paralleling up to 16 units. A secondary current-sense connection feeds real-time analog current to the master for accurate aggregation and display.
- Parallel up to 16 units with simple inteface wiring.
- One setpoint; synchronized output and protections.
- Secondary current-sense feedback for accurate sharing.
- Auto-configuration and aggregate measurements to a single master display.
Intuitive, bright front-panel control
Bright readouts, fine control, built to last.
The SLx Series pairs a long-life hybrid display—high-visibility green V/I segments plus a multi-line status/config screen—with precise, durable controls. A black-anodized machined aluminum knob enables fine setpoint dialing, while a 10-key pad and arrow keys support exact digital entry. A dedicated Lock button secures settings, and a front USB port makes PC hookup effortless (rear USB also provided).
- Hybrid display: bright V/I segments + multi-line status and menu.
- Machined aluminum control knob for fine adjustments.
- 10-key + arrows for 16-bit setpoint entry.
- Front-panel Lock and front USB for fast, secure use.
Rugged by design: safety + reliability, as you'd expect from Magna-Power.
Reliable current-fed power processing
Rugged by design: self-protecting topology for uptime.
The SLx Series uses a high-frequency, current-fed architecture that adds a control stage beyond conventional voltage-fed designs. This topology inherently limits fault energy—avoiding fast-rising current spikes and magnetic core saturation so the supply self-protects and your load stays safe. Paired with state-of-the-art SiC power semiconductors, SLx delivers class-leading power density, efficiency, and reliability, including continuous full-power operation up to 50°C ambient.
- Current-fed architecture with an added control stage vs. voltage-fed.
- Inherent surge immunity—no current spikes or core saturation.
- Self-protecting behavior under fault conditions.
- SiC devices for high density and efficiency; full power to 50°C.
Layered safety, interlock & emergency stop
Standard programmable limits plus hardwired shutdown.
A soft-start stage keeps inrush below steady-state draw, while built-in diagnostics watch line, thermal, and internal conditions. On a fault, an immediate one-shot (OSHT) trip halts the inverter. Faults are reported on the front-panel status display and via SCPI/Modbus for fast troubleshooting.
- Soft-start caps inrush; AC draw stays below full-load current.
- Programmable trips: over-voltage, over-current, over-power.
- Thermal monitoring on heatsink and output capacitors.
- 5V interlock input for dry-contact, latching inhibit (control power maintained).
- 24 V emergency stop bypasses logic to interrupt AC; full hardware shutdown.
Target diagnostics
LED matrix mapped to internal assemblies for fast field triaging.
The SLx Series introduces Target Diagnostics: the status LEDs from every major assembly are mapped to a rear-mounted LED matrix. Techs can pinpoint faults or configuration issues while the unit stays racked and sealed. Paired with MagnaCTRL’s EEPROM editor, it enables effective remote support to keep systems running.
- Rear LED matrix replicates per-assembly status LEDs.
- Diagnose faults and configs with the product mounted and covers on.
- Works with MagnaCTRL’s EEPROM editor for remote checks/updates.
- Shortens troubleshooting time and reduces downtime.
From lab scripts to factory PLCs, flexible programming & integration.
Software integration made easy
Readable commands, quick results—works with any language.
The SLx Series exposes a clear, text-based API with native SCPI and Modbus. Over 60 well-documented commands cover start/stop, set points for voltage, current & power, slew-rate control, high-accuracy measurements, and full configuration—so your scripts and systems go from proof-of-concept to production fast.
- SCPI and Modbus command sets with consistent behavior..
- Start/stop & protections: enable output, set trip limits, query status.
- High-accuracy reads: voltage, current, power, and sense feedback.
- Developer-driven documentation & examples.
import serial
magnaPower = serial.Serial(port='COM4', baudrate=115200)
magnaPower.write('*IDN?\n'.encode())
print magna_power.readline()
magnaPower.write('VOLT 0\n'.encode())
magnaPower.write('CURR 0\n'.encode())
magnaPower.write('OUTP:START\n'.encode())
magnaPower.write('VOLT 270\n'.encode())
currSetPoints = [50, 100, 150, 250]
for currSetPoint in currSetPoints:
print 'Setting Current to %s A' % currSetPoint
magnaPower.write('CURR {0}\n'.format(currSetPoint).encode())
magnaPower.write('MEAS:VOLT?\n'.encode())
print magnaPower.readline()
time.sleep(20)
magnaPower.write('OUTP:STOP\n'.encode())
magnaPower.close()
magna_power = serial('COM4', 'BaudRate', 115200);
fopen(magnaPower);
fprintf(magnaPower,'*IDN?');
idn = fscanf(magnaPower);
fprintf(magnaPower,'VOLT 0');
fprintf(magnaPower,'CURR 0');
fprintf(magnaPower,'OUTP:START');
fprintf(magnaPower,'VOLT 270');
for currSetPoint in [50, 100, 150, 250]
display('Setting Current to '+currSetPoint+' A');
fprintf(magnaPower, 'CURR '+currSetPoint);
fprintf(magnaPower,'MEAS:VOLT?');
display(fscanf(magnaPower));
pause(20);
end
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <windows.h>
int main()
{
printf("Opening connection.\n");
uint8_t recvBuffer[sizeof(uint8_t) * 256];
memset(recvBuffer, 0, 256);
// Choose the serial port name.
// COM ports higher than COM9 need the \\.\ prefix, which is written as
// "\\\\.\\" in C because we need to escape the backslashes.
const char* device = "\\\\.\\COM4";
// Choose the baud rate (bits per second).
uint32_t baud_rate = 115200;
HANDLE port = open_serial_port(device, baud_rate);
if (port == INVALID_HANDLE_VALUE) { return 1; }
char* scpiCmd = (char*)"*IDN?\n";
size_t cmdLen = strlen(scpiCmd);
int result = write_port(port, (uint8_t*)scpiCmd, cmdLen);
if (result < 0)
return -1;
result = read_port(port, recvBuffer, 256);
printf("Sent: %s\nReceived: %s\n", scpiCmd, recvBuffer);
scpiCmd = (char*)"VOLT 0\n";
cmdLen = strlen(scpiCmd);
result = write_port(port, (uint8_t*)scpiCmd, cmdLen);
if (result < 0)
return -1;
scpiCmd = (char*)"CURR 0\n";
cmdLen = strlen(scpiCmd);
result = write_port(port, (uint8_t*)scpiCmd, cmdLen);
if (result < 0)
return -1;
scpiCmd = (char*)"OUTP:START\n";
cmdLen = strlen(scpiCmd);
result = write_port(port, (uint8_t*)scpiCmd, cmdLen);
if (result < 0)
return -1;
scpiCmd = (char*)"VOLT 270\n";
cmdLen = strlen(scpiCmd);
result = write_port(port, (uint8_t*)scpiCmd, cmdLen);
if (result < 0)
return -1;
char setPoints[4][5] = {"50", "100", "150", "200"};
char setPointBuffer[40];
scpiCmd = (char*)"MEAS:VOLT?\n";
for (int i = 0; i < 4; i++)
{
sprintf(setPointBuffer, "CURR %s\n", setPoints[i]);
printf("Setting current to %s A\n", setPoints[i]);
cmdLen = strlen(setPointBuffer);
result = write_port(port, (uint8_t*)setPointBuffer, cmdLen);
if (result < 0)
return -1;
memset(recvBuffer, 0, 256);
result = read_port(port, recvBuffer, 256);
printf("Received: %s\n", recvBuffer);
Sleep(20000); // 20000ms = 20s
}
scpiCmd = (char*)"OUTP:STOP\n";
cmdLen = strlen(scpiCmd);
result = write_port(port, (uint8_t*)scpiCmd, cmdLen);
if (result < 0)
return -1;
CloseHandle(port);
printf("Connection closed.\n");
return 0;
}
using System;
using System.IO.Ports;
using System.Threading;
namespace SerialCommunicationInCSharp
{
public class Program
{
static bool _continue;
static SerialPort serialPort;
public static void Main(string[] args)
{
Thread readThread = new Thread(Read);
Console.WriteLine("Opening connection.");
// Create a new SerialPort object with default settings.
serialPort = new SerialPort("COM4", 115200, Parity.None, 8, StopBits.One);
// Set the read/write timeouts
serialPort.ReadTimeout = 500;
serialPort.WriteTimeout = 500;
serialPort.Open();
_continue = true;
readThread.Start();
Console.WriteLine("Sending: *IDN?");
serialPort.WriteLine("*IDN?");
serialPort.WriteLine("VOLT 0");
serialPort.WriteLine("CURR 0");
serialPort.WriteLine("OUTP:START");
serialPort.WriteLine("VOLT 270");
string[] currSetPoints = { "50", "100", "150", "250" };
ß
for(int i = 0; i < currSetPoints.Length; i++)
{
serialPort.WriteLine(String.Format("'CURR {0}", currSetPoints[i]));
serialPort.WriteLine("MEAS:VOLT?");
Thread.Sleep(20000);
}
serialPort.WriteLine("OUTP:STOP");
Console.WriteLine("Closing connection.");
_continue = false;
serialPort.Close();
}
public static void Read()
{
while (_continue)
{
try
{
string message = serialPort.ReadLine();
Console.WriteLine("Received: " + message);
}
catch (TimeoutException) { }
}
}
}
}
External User I/O
Flexible isolated analog-digital controls.
All SLx Series power supplies come standard with a 26-pin D-Sub connector designated as the External User I/O. This connector provides:
- 8 Digital Outputs (5V logic)
- 4 Digital Inputs (5V logic)
- 4 Analog Outputs (0-10V logic)
- 4 Analog Inputs (0-10V logic)
The External User I/O is isolated from the output terminals and referenced to earth ground. The connector’s pins are user configurable, allowing users to select the functions needed in their application, while providing future capability for new features. Use the digital outputs to integrate the power supply with, for example, external enable signals or digital fault monitoring logic, or monitor voltage-current using the analog 0-10V outputs. A dedicated high-speed analog input is also provided, sampled at 2 kHz for near real-time control.
Industrial communications & control
From lab networks to PLCs—integrate on your terms.
The Series ships ready to connect with dual USB (front & rear) and RS485, with support for SCPI and Modbus. For networks and factory automation, choose fully integrated options with Modbus support, thorough docs—and device description files to speed PLC setup and tag mapping.
- Standard dual USB (front + rear) and RS485.
- TCP/IP networking with LXI TCP/IP Ethernet (+LXI) option
- PLC fieldbuses options: CANopen (+CAN), EtherCAT (+ECAT), EtherNet/IP (+EIP), Modbus-TCP (+MTCP), PROFINET (+PROF).
- Device files included: EDS (CANopen/EtherNet/IP), ESI XML (EtherCAT), GSDML (PROFINET) for quick PLC integration.
- Full command documentation, examples, and diagnostics.
Included MagnaCTRL software
Multi-product dashboard control, diagnostics, and updates—out of the box.
MagnaCTRL is a modern, multi-product control platform included with xGen products. Build dashboards, configure I/O, run updates, and access deep diagnostics—all from one app.
- Configurable dashboard: add/arrange widgets to monitor and control multiple connected units.
- Product Explorer: auto-detect devices, save connections, and auto-reconnect in future sessions.
- External User I/O panel: map 26-pin I/O, export/import pin maps for fast deployments.
- Firmware/software updates: detect new releases automatically; perform manual updates offline if needed (see Changelog)
- Calibration tools: adjust programming/measurement gains/offsets; with guidance, tune control-loop gains.
- Data logging: Graphical output and .csv logging of voltage, current and power measurements and settings over time
State-of-the-art USA manufacturing with worldwide support
Made in the USA
Vertically integrated manufacturing for full quality control.
Magna-Power products are designed, built, tested, and serviced at Magna-Power’s 73,500 sq-ft headquarters in Flemington, New Jersey, where metalwork, magnetics, PCB assembly, and burn-in are all done in-house for tight control over quality, cost, and lead-time.
- USA-built: Engineering, manufacturing, and service under one roof.
- In-house production: Metalwork, magnetics, SMT PCBs, and finishes.
- Proven reliability: Every unit fully tested, calibrated, and burned in.
Worldwide service & OEM parts support
Factory expertise, local response.
Magna-Power backs its products with factory and authorized service centers across North America, Europe, the UK, Asia-Pacific, East Asia, and South America—using factory procedures and genuine parts to restore units to original specifications, in or out of warranty.
- Global coverage: HQ in New Jersey plus regional authorized service centers.
- Consistent repairs: Factory diagnostics, work instructions, and system diagrams.
- Genuine OEM parts: Tested replacement assemblies for predictable, low-downtime service.
Model Ordering Guide
For both ordering and production, SLX系列 models are uniquely defined by several key characteristics, as defined by the following diagram:
SLX系列 Models
There are 171 different models in the SLX系列 spanning power levels: 1.5 kW, 2.6 kW, 4 kW, 6 kW, 8 kW, 10 kW. To determine the appropriate model:
- Select the desired Max Voltage (Vdc) from the left-most column.
- Select the desired Max Current (Adc) from the same row that contains your desired Max Voltage.
- Construct your model number according to the model ordering guide.
| Max Voltage Vdc |
1.5 kW | 2.6 kW | 4 kW | 6 kW | 8 kW | 10 kW | Ripple mVrms |
Efficiency |
|---|---|---|---|---|---|---|---|---|
| Max Current Adc | ||||||||
| 5 | 250 | — | — | — | — | — | 30 | 84% |
| 10 | 150 | 250 | — | — | — | — | 30 | 89% |
| 16 | 93 | 162 | 250 | — | — | — | 40 | 89% |
| 20 | 75 | 130 | 200 | 250 | — | — | 40 | 90% |
| 25 | 60 | 104 | 160 | 240 | — | — | 50 | 91% |
| 32 | 46 | 81 | 125 | 186 | 250 | — | 60 | 91% |
| 40 | 37 | 65 | 100 | 150 | 200 | 250 | 80 | 91% |
| 50 | 30 | 52 | 80 | 120 | 160 | 200 | 70 | 92% |
| 60 | 25 | 43 | 66 | 100 | 133 | 166 | 100 | 93% |
| 80 | 18 | 32 | 50 | 75 | 100 | 125 | 120 | 93% |
| 100 | 15 | 26 | 40 | 60 | 80 | 100 | 120 | 93% |
| 125 | 12 | 20 | 32 | 48 | 64 | 80 | 110 | 93% |
| 160 | 9 | 16 | 25 | 36 | 50 | 60 | 110 | 93% |
| 200 | 7.5 | 13 | 20 | 30 | 40 | 50 | 110 | 94% |
| 250 | 6 | 10.4 | 16 | 24 | 32 | 40 | 110 | 94% |
| 300 | 5 | 8.6 | 13.2 | 20 | 26.4 | 33.3 | 160 | 94% |
| 375 | 4 | 6.9 | 10.4 | 16 | 21.3 | 26.5 | 160 | 94% |
| 400 | 3.7 | 6.5 | 10 | 15 | 20 | 25 | 170 | 95% |
| 500 | 3 | 5.2 | 8 | 12 | 16 | 20 | 250 | 95% |
| 600 | 2.5 | 4.3 | 6.4 | 10 | 13.3 | 16.5 | 250 | 95% |
| 800 | 1.8 | 3.2 | 5 | 7.5 | 10 | 12.5 | 350 | 95% |
| 1000 | 1.5 | 2.6 | 4 | 6 | 8 | 10 | 400 | 95% |
| 1250 | 1.2 | 2 | 3.2 | 4.8 | 6.4 | 8 | 700 | 95% |
| 1500 | 1 | 1.7 | 2.6 | 4 | 5.3 | 6.6 | 1000 | 95% |
| 2000 | 0.75 | 1.3 | 2 | 3 | 4 | 5 | 6500 | 95% |
| 2500 | 0.6 | 1 | 1.6 | 2.4 | 3.2 | 4 | 7500 | 95% |
| 3000 | 0.5 | 0.86 | 1.3 | 2 | 2.6 | 3.3 | 8500 | 95% |
Specifications are subject to change without notice. Unless otherwise noted, all specifications measured at the product's maximum ratings.
AC Input Specifications
UI2, 208-240 Vac, 1-phase
208 Vac, 3-phase
240 Vac, 3-phase
380/400 Vac, 3-phase
415 Vac, 3-phase
440 Vac, 3-phase
480 Vac 3-phase
> 0.92, 3-phase AC inputs
DC Output Specifications
Current control: ± 0.03% of rated current
Power control: ± 0.05% of rated power
Current control: ± 0.06% of rated current
Power control: ± 0.08% of rated power
Current control: ± 0.075% of rated current
Current control: 0.04%/ºC of rated current
Power control: 0.04%/ºC of rated power
Maximum (Fastest): Rated voltage x 0.006 [V/ms]
Maximum (Fastest): Rated current x 0.005 [A/ms]
Maximum (Fastest): Rated power x 0.0025 [W/ms]
Programming Specifications
Current: ± 0.06% of rated current
Power: ± 0.10% of rated power
Current: ± 0.08% of rated current
Power: ± 0.10% of rated power
Current: ± 0.08% of rated current
Power: ± 0.10% of rated power
Current: ± 0.80% of rated current
Power: ± 1.20% of rated power
Current: ± 0.08% of rated current
Power: ± 0.10% of rated power
Programming Voltage: 0-10 V
Monitoring Voltage: 0-10 V, 3 mA capacity
Monitoring Impedance: 0.005 Ω
Reference Voltage: 10 V, 20 mA capacity
Interface Specifications
USB Host (Rear): Type B
RS485 (Rear): RJ-45
MagnaLINK™: RJ-25 x 2
Referenced to ground; isolated from the DC output
See User Manual for pin layout
EtherCAT (+ECAT): RJ-45 x 2
EtherNet/IP (+EIP): RJ-45 x 2
LXI TCP/IP Ethernet (+LXI): RJ-45
ModbusTCP (+MTCP): RJ-45 x 2
PROFINET (+PROF): RJ-45 x 2
Physical Specifications
1.75” H x 19” W x 24” D (4.4 x 48.3 x 61.0 cm)
2.6 kW models: 34 lbs (15.42 kg)
4 kW models: 35 lbs (15.88 kg)
6 kW models: 35 lbs (15.88 kg)
8 kW models: 36 lbs (16.33 kg)
10 kW models: 36 lbs (16.33 kg)
Environmental Specifications
Regulatory Specifications
CISPR 22 / EN 55022 Class A
The following are vectorized diagrams for the SLX系列. Refer to the Downloads section for downloadable drawings.
Integrated Options
Standard integrated options are available for Magna-Power products, allowing the product's performance and communication interfaces to be tailors to the specific application.
- Option
- +FP1
- Option
- +CAN
- Option
- +ECAT
- Option
- +EIP
- Option
- +LXI
- Option
- +MTCP
- Option
- +PROF
Accessories
External accessories and integration services available for this product.