MagnaDC logo

Serie SLX

Programmable DC Power Supply

Size
1U
Power
1.5 kW to 10 kW
Manufactured
USA
Build-time
4-6 weeks

Sobre la base de más de 40 años de innovación de la fuente de alimentación y con más de 26,500 más configuraciones de modelos diferentes, la serie SLX es la serie de fuente de alimentación DC más verstaile de Magna-Power jamás creada. La serie SLX ofrece modelos a 6 niveles de potencia diferentes, con un rango altamente granular de voltajes y corrientes. Con la densidad de potencia líder líder en la industria, el procesamiento de potencia de alimentación de corriente resistente y la arquitectura de control digital DSP DSP DSP DSP de última generación, la serie SLX cumple con los requisitos de potencia de DC a largo plazo de la investigación y el desarrollo, la automatización industrial y aplicaciones de control de procesos.

Características clave

  • Control de voltaje, corriente y potencia
  • Procesamiento de potencia alimentado por corriente resistente
  • Precisión de 16 bits con control de un solo bit
  • Conjuntos de comandos SCPI y Modbus
  • Características de protección programables
  • Talado de emergencia de enclavamiento y hardware
  • Control de tasa de juego
  • Operación continua de energía completa hasta 50 ° C ambiental
  • Puerto de E/S de 26 pines analógico configurable
  • Digital-Hybrid Magnalink ™ Master-Skining
  • Sensado de voltaje local, remoto y sin plomo
  • Estándar de interfaces USB (delantera y trasera) y RS485
  • Can, EtherCat, Ethernet/IP, LXI TCP/IP Ethernet, ModbusTCP y Profinet Opciones de comunicaciones totalmente integradas disponibles
  • Plataforma de software MagnaCTRL incluida
  • Hecho en los Estados Unidos
CE Mark Logo UKCA Logo
Magna-Power Expert

Talk with an expert

Do more with MagnaLINK™ distributed digital control.

Precision control & measurement

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

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

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.
Reliable current-fed power processing
Layered safety, interlock & emergency stop

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

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

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

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
Included MagnaCTRL software

State-of-the-art USA manufacturing with worldwide support

Made in the USA

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

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, Serie SLX models are uniquely defined by several key characteristics, as defined by the following diagram:

Serie SLX Ordering Guide

Serie SLX Models

There are 171 different models in the Serie SLX spanning power levels: 1.5 kW, 2.6 kW, 4 kW, 6 kW, 8 kW, 10 kW. To determine the appropriate model:

  1. Select the desired Max Voltage (Vdc) from the left-most column.
  2. Select the desired Max Current (Adc) from the same row that contains your desired Max Voltage.
  3. 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

Input Voltages Available
Refer to models table for AC input voltage availability by power level. AC Input voltage specified at time of order and cannot be modified
UI, 100-240 Vac, 1-phase
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
Input Voltage Tolerance
± 10%
Input Voltage Frequency
50-400 Hz
Power Factor
Measured at max power
> 0.99, 1-phase UI and UI2 AC inputs
> 0.92, 3-phase AC inputs
Input Isolation
Measured line-to-ground
± 2000 Vdc

DC Output Specifications

Voltage Ripple
Model specific. Refer to models table.
Line Regulation
Voltage control: ± 0.04% of rated voltage
Current control: ± 0.03% of rated current
Power control: ± 0.05% of rated power
Load Regulation
Voltage control: ± 0.02% of rated voltage
Current control: ± 0.06% of rated current
Power control: ± 0.08% of rated power
Stability
FWHM, measured at 25ºC over 8 hrs after 30 min warm-up
Voltage control: ± 0.005% of rated voltage
Current control: ± 0.075% of rated current
Temperature Coefficient
Voltage control: 0.01%/ºC of rated voltage
Current control: 0.04%/ºC of rated current
Power control: 0.04%/ºC of rated power
Efficiency
Up to 95%. Model specific. Refer to Models table.
Slew Rate, Voltage
Standard models, programmable
Minimum (Slowest): Rated voltage x 2-15 [V/ms]
Maximum (Fastest): Rated voltage x 0.006 [V/ms]
Slew Rate, Current
Standard models, programmable
Minimum (Slowest): Rated current x 2-15 [A/ms]
Maximum (Fastest): Rated current x 0.005 [A/ms]
Slew Rate, Power
Standard models, programmable
Minimum (Slowest): Rated power x 2-15 [W/ms]
Maximum (Fastest): Rated power x 0.0025 [W/ms]
Output Isolation
Models Rated ≤ 1500 Vdc, Measured output-to-ground
± 2000 Vdc
Output Isolation
Models Rated > 1500 Vdc, Measured output-to-ground
± (2750 Vdc + Vo/2), where Vo is the maximum output voltage of the power supply

Programming Specifications

Resolution, Digital Programming
Front panel or communication interfaces
16-bit, 0.00153% of rated voltage, current or power
Accuracy, Digital Programming
Output value to set point value, programmed via front panel or communication interfaces
Voltage: ± 0.06% of rated voltage
Current: ± 0.06% of rated current
Power: ± 0.10% of rated power
Accuracy, Digital Measurement
Output value to returned value, via front panel display or communication interfaces
Voltage: ± 0.08% of rated voltage
Current: ± 0.08% of rated current
Power: ± 0.10% of rated power
Resolution, Analog Programming
0-10 V analog input
12-bit, 0.025% of rated voltage, current or power
Accuracy, Analog Programming
Output value to set point value, programmed via analog input
Voltage: ± 0.12% of rated voltage
Current: ± 0.08% of rated current
Power: ± 0.10% of rated power
Accuracy, Analog Programming, High Speed Input
Output value to set point value, programmed via the high-speed analog input
Voltage: ± 0.80% of rated voltage
Current: ± 0.80% of rated current
Power: ± 1.20% of rated power
Accuracy, Analog Measurement
Output value to returned value, via analog output
Voltage: ± 0.08% of rated voltage
Current: ± 0.08% of rated current
Power: ± 0.10% of rated power
Analog I/O
3 configurable standard analog inputs, 1 configurable high-speed analog input, 4 configurable analog outputs, reference signal provided
High-Speed Input Sampling Rate: 2 kHz
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

Front Panel Programming
Machined aluminum rotary knob with encoder, keypad, and up-down arrow for single bit control
Communication Interfaces
Standard
USB Host (Front): Type B
USB Host (Rear): Type B
RS485 (Rear): RJ-45
MagnaLINK™: RJ-25 x 2
External User I/O Port
Standard
26-pin D-sub DB-26, female
Referenced to ground; isolated from the DC output
See User Manual for pin layout
Communication Interfaces
Optional
CANopen (+CAN): DB-9
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

Size
All models
1U
1.75” H x 19” W x 24” D (4.4 x 48.3 x 61.0 cm)
Weight
1.5 kW models: 32 lbs (14.52 kg)
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)
Racking Standard
EIA-310
Rear Support Rails
Included

Environmental Specifications

Ambient Operating Temperature
0°C to 50°C
Storage Temperature
-40°C to +85°C
Humidity
Relative humidity up to 95% non-condensing
Air Flow
Side air inlet, rear exhaust

Regulatory Specifications

EMC
Complies with 2014/30/EU (EMC Directive)
CISPR 22 / EN 55022 Class A
Safety
Complies with EN61010-1 and 2014/35/EU (Low Voltage Directive)
CE Mark
Yes
RoHS Compliant
Yes
REACH Compliant
Yes

The following are vectorized diagrams for the Serie SLX. Refer to the Downloads section for downloadable drawings.

Dimensional Diagrams • Standard Air Cooled SLx Series Models up to 1500 Vdc
DC Output Bus Bars without Included Cover
Two views shown, 3/8" mating hardware included (not shown)
AC Input • 1-phase, 8 AWG
For SLx Series models with 1-phase UI or UI2 input. Phoenix Contact 1720916, 2-wire + ground connector. Pheonix Contact 1777846 mating adapter included.
AC Input • 3-phase, 8 AWG
For SLx Series models with 3-phase input, except 10 kW models with 208/240 Vac input. Phoenix Contact 1720929, 3-wire + ground connector. Pheonix Contact 1777859 mating adapter included.
AC Input • 3-phase, 6 AWG
For 10 kW SLx Series models with 208/240 Vac 3-phase input. Phoenix Contact 1998881, 3-wire + ground connector. Pheonix Contact 1967472 mating adapter included.
Rear Mounting Rails
Included
Dimensional Diagrams • SLx Series Models up to 1500 Vdc with Water Cooling (+WC) Option

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.

Blank Front Panel
Option
+FP1
The FP1 blank front panel option removes all front-panel controls except for a status indicator and on/off rocker switch, while still providing full functionality via computer and User I/O control
CANopen
Option
+CAN
CANopen communication protocol and dual RJ-45 interface enabling CAN bus communications, popular within automotive applications
EtherCAT
Option
+ECAT
EtherCAT communication protocol and dual RJ-45 interface for high-performance communication in factory automation, motion control, and robotics
EtherNet/IP
Option
+EIP
EtherNet/IP communication protocol and dual RJ-45 interface with EIS profile for industrial automation, commonly used in Allen Bradley, Schneider Electric, and Omron PLCs
LXI TCP/IP Ethernet
Option
+LXI
TCP/IP Ethernet communication protocol and single RJ-45 interface, certified to the LXI Class C standard, for socket communications using conventional computer networks
Modbus-TCP
Option
+MTCP
Modbus-TCP communication protocol and dual RJ-45 interface with full command set support as Modbus commands
PROFINET
Option
+PROF
PROFINET communication protocol and dual RJ-45 interface for industrial automation, commonly used in Siemens PLCs
Ruggedized
Option
+RUG
Internal product ruggedization, which has been independently tested to comply with select MIL-STD-810G and RTCA DO-160 shock and vibration specifications.
Water Cooling
Option
+WC
Using an integrated central heat exchanger and specially wound magnetic components, water cooling is available for select Magna-Power power supplies for use in densely packaged system cabinets, where heat removal by the product's standard air cooling presents a challenge.

Accessories

External accessories and integration services available for this product.

DC Power Cables
DC power cables with wide range voltage ratings, current ratings, and termination options, made-to-order by Magna-Power
MagnaLINK Cable
Rack Enclosures and Integration
Various size rack enclosures, including 12U, 24U, 30U, 36U, 30Ux2 and 36Ux2, with casters, fans and product integration.

Documentation

Serie SLX User Manual [EN] [HTML] [Recommended]
SLx Series Datasheet [20260112] [EN] [PDF]
SLx Series User Manual [0.011] [EN] [PDF]

Drawings

SLx Series, 1U, +WC, 3D [70568] [STP]
SLx Series, 1U, 3D [69310] [STP]
SLx Series, 1U, +FP1, 3D [69309] [STP]
SLx Series, 1U, 2D [59329] [PDF]

Software

MagnaCTRL Software [0.013-58705] [MSI]