MagnaDC logo

XR系列

Programmable DC Power Supply

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

2U XR系列通过在2 kW,4 kW,6 kW,8 kW,8 kW和10 kW的2U封装中提供高电压(大于1500 VDC)和高电流(大于250 ADC)模型,从而补充了1U SL系列。 XR系列具有Magna-Power产品产品中最高的电压范围,最多10,000 VDC和高电流型号高达600 dC,所有这些型号都利用了公司的签名电流喂养的功率处理来提供强大的电源转换。此外,高精度编程和监视水平使电源测量值有信心,从而消除了对外部电力计的需求。

CE Mark Logo UKCA Logo
Magna-Power Expert

Talk with an expert

Fast, accurate power delivery with controls and options tailored to your needs

2U机箱实现高压大电流性能

2U机箱实现高压大电流性能

为严苛负载提供精准、稳定的输出。

XR系列是1U SL系列的扩展补充,提供2–10 kW的2U机型,支持高电压(从2000 Vdc到10,000 Vdc)和大电流(从375 Adc到600 Adc)——全部集成于紧凑的2U机箱中。在恒压或恒流模式下自动交叉切换,XR系列具备快速瞬态恢复能力,电压和电流编程精度达±0.075%,测量精度达±0.2%——无需外部仪表即可实现可靠的控制与回读。

按订单配置,集成多种选项

按订单配置,集成多种选项

丰富的标准功能,按需扩展。

XR 系列拥有强大的基础配置:SCPI over RS232、隔离式37针用户I/O、LabVIEW和IVI驱动程序以及远程接口软件均为标准配置。当应用需求更高时,全集成选项可定制性能、连接性和机械结构——无需外部设备或临时接线。

无级前面板控制,可选空白面板

无级前面板控制,可选空白面板

需要操控时触手可及,无需时隐于无形。

标准XR前面板配备旋钮和按键控制、高亮数字仪表及清晰的状态指示灯,操作人员可轻松配置设定值、启停电源并一目了然地查看系统状态。针对OEM和生产设备,可选的空白面板(C版本)完全移除了本地控制功能,同时通过通信接口和后部37针用户I/O保留完整的远程控制能力,确保系统安全、整洁且防误操作。

Rugged by design: safety + reliability, as you'd expect from Magna-Power.

可靠的电流馈电功率处理

可靠的电流馈电功率处理

坚固耐用的设计:自保护拓扑结构,确保持续运行。

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.
多层安全保护、联锁与紧急停机

多层安全保护、联锁与紧急停机

标准可编程限制加硬接线停机保护。

软启动阶段将浪涌电流控制在稳态电流以下,内置诊断功能持续监控线路、温度和内部状态。发生故障时,单次触发(OSHT)保护立即停止逆变器运行。故障信息显示在前面板状态显示屏上,并通过SCPI/Modbus输出,便于快速排查。

  • 软启动限制浪涌电流;交流电流保持在满载电流以下。
  • 可编程保护:过压、过流、过功率。
  • 散热器和输出电容器温度监控。
  • 5V联锁输入,支持干接点锁定抑制(控制电源保持供电)。
  • 24 V紧急停机绕过逻辑直接切断交流电源;执行完全硬件停机。

From lab scripts to factory PLCs, flexible programming & integration.

轻松实现软件集成

可读命令,快速响应——兼容任何编程语言。

MagnaDC 电源提供清晰的文本API接口,支持原生SCPI——一种通过套接字通信发送的ASCII命令语言。超过40条详细文档化的命令涵盖启动/停止、电压和电流设定值、高精度测量以及完整配置——让您的脚本和系统从概念验证快速迈向生产部署。

  • SCPI命令集,行为一致可靠。
  • 启动/停止与保护功能:启用输出、设置跳闸限值、查询状态。
  • 高精度读取:电压、电流、功率及检测反馈。
  • 面向开发者的文档与示例。
import serial
magnaPower = serial.Serial(port='COM4', baudrate=19200)
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', 19200);
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 = 19200;

    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", 19200, 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) { }
      }
    }
  }
}
用于PLC控制或PHIL仿真的外部用户 I/O

用于PLC控制或PHIL仿真的外部用户 I/O

像I/O模块一样接线——无需额外隔离。

Via the included rear 37-pin User I/O connector, MagnaDC supplies can be fully driven and monitored by external signals or a PLC. Voltage, current, OVT, and OCT set points are programmed with 0–10 V analog inputs, while each diagnostic condition has its own +5V digital status pin. Built-in +2.5V, +5V, and +10V reference rails let you use dry contacts without adding external supplies. All I/O is isolated from the output and referenced to earth ground as standard.

  • 0–10 V analog programming for V, I, OVT, and OCT.

  • Per-fault digital outputs: each diagnostic has its own +5V pin.

  • Isolated user I/O referenced to earth ground—no extra isolators.

  • With High Slew Rate Output (+HS), high-bandwidth response and fast rise times support HIL/PHIL simulation applications.

高性能主从操作

高性能主从操作

在不牺牲性能的前提下扩展电压或电流。

All MagnaDC supplies support master-slave operation, using gate-drive signals from the master when configured for parallel, so the whole stack behaves like a single supply—with one control loop and no noisy long analog references. The optional UID47 accessory simplifies wiring for series or parallel sets with near-equal sharing.

  • Single control loop parallel operation: Master gate-drive to slaves for consistent dynamics.

  • Plug & play with the UID47, enabling parallel or series stacks with current/voltage sharing.

  • Series up to the DC isolation rating without added hardware.

  • No additional ORing diodes required for parallel operation.

Magna-Power 软件、LabVIEW 和 IVI 驱动程序

从虚拟前面板到全自动化——开箱即用。

每台 MagnaDC 电源均包含 IVI 驱动程序和 NI LabVIEW 驱动程序,提供完整的 VI 集以及示例程序,让您在几分钟内即可与硬件通信。如需通过 PC 进行直接的前面板式控制,Magna-Power 远程接口软件可提供电源的全面视图——从命令和寄存器到校准和固件。

  • 随附 IVI 和 NI LabVIEW 驱动程序及完整 VI 集。

  • 示例程序助您快速启动集成和测试。

  • 远程接口软件包含:

    • 虚拟前面板,用于手动控制

    • 命令面板,用于浏览和发送命令

    • 寄存器面板,用于实时状态监控

    • 校准面板,用于内部数字电位器

    • 固件面板,用于就地升级

    • 调制面板,用于模拟非线性曲线

  • 所有通信接口在软件和驱动程序中均受支持,提供一致的编程体验。

Magna-Power 软件、LabVIEW 和 IVI 驱动程序

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

美国制造

美国制造

垂直整合制造,实现全面质量管控。

Magna-Power 产品的设计、制造、测试和售后服务均在位于新泽西州弗莱明顿的 Magna-Power 总部完成,总部面积达 73,500 平方英尺。金属加工、磁性元件制造、PCB 组装和老化测试均在内部完成,从而严格把控质量、成本和交货周期。

  • 美国制造:工程设计、生产制造和售后服务集于一处。
  • 内部生产:金属加工、磁性元件、SMT PCB 和表面处理。
  • 可靠性验证:每台设备均经过全面测试、校准和老化试验。
全球服务与OEM零部件支持

全球服务与OEM零部件支持

工厂级专业技术,本地化响应。

Magna-Power以工厂及授权服务中心为其产品提供全面支持,服务网络覆盖北美、欧洲、英国、亚太、东亚及南美地区。无论是否在保修期内,均采用工厂标准流程和原厂零部件,将设备恢复至出厂规格。

  • 全球覆盖:总部位于新泽西州,并设有多个区域授权服务中心。
  • 一致的维修标准:采用工厂诊断流程、作业指导书和系统图纸。
  • 原厂OEM零部件:经过测试的替换组件,确保可靠、高效的维修服务,最大限度减少停机时间。

Model Ordering Guide

For both ordering and production, XR Series models are uniquely defined by several key characteristics, as defined by the following diagram:

XR Series Ordering Guide

XR Series Models

There are 39 different models in the XR Series spanning power levels: 2 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
2 kW 4 kW 6 kW 8 kW 10 kW Ripple
mVrms
Efficiency
Max Current Adc
5 375 600 50 80%
10 375 600 50 84%
16 375 500 600 50 84%
20 300 375 500 45 87%
25 320 400 45 88%
32 310 40 88%
2000 1 2 3 4 5 500 93%
3000 0.6 1.3 2 2.6 3.3 600 93%
4000 0.5 1 1.5 2 6500 93%
6000 0.33 0.66 1 1.33 7500 93%
8000 0.25 0.5 0.75 1 8500 93%
10000 0.2 0.4 0.6 0.8 9500 93%
AC Input Voltage
Vac
Input Current Per Phase Aac
208/240 Vac, 1Φ 17    
208/240 Vac, 3Φ 8 15 22 29 35    
380/415 Vac, 3Φ 5 9 12 16 19    
440/480 Vac, 3Φ 4 8 11 14 17    

Specifications are subject to change without notice. Unless otherwise noted, all specifications measured at the product's maximum ratings.

AC Input Specifications

1Φ AC Input Voltage
1Φ, 2-wire + ground, Available on 2 kW models only
208 Vac (operating range 187 - 229 Vac)
240 Vac (operating range 216 - 264 Vac)
3Φ AC Input Voltage
3Φ, 3-wire + ground; Available on all models
208 Vac (operating range 187 to 229 Vac)
240 Vac (operating range 216 to 264 Vac)
380 Vac (operating range 342 to 440 Vac)
415 Vac (operating range 373 to 456 Vac)
440 Vac (operating range 396 to 484 Vac)
480 Vac (operating range 432 to 528 Vac)
Input Frequency
50 Hz to 400 Hz
Power Factor
>0.92 at max power; models with 3Φ AC input
0.70 at max power; models with 1Φ AC input
AC Input Isolation
±2500 Vdc, maximum input voltage to ground

DC Output Specifications

Voltage Ripple
Model specific. Refer to chart of available models.
Line Regulation
Line regulation is a measure of a power supply's ability to maintain its output voltage (or current) given changes in the input line voltage. Line regulation is expressed as percent of change in the output voltage (or current) relative to the change in the input line voltage.
Voltage mode: ± 0.004% of full scale
Current mode: ± 0.02% of full scale
Load Regulation
Load regulation is a measure of the power supply's ability to maintain its output voltage (or current) given changes in the load, measured while operating at the maximum rated voltage (or current). Load regulation is expressed as the difference between voltage (or current) at full load minus voltage (or current) at min load, divided by the products max voltage (or current) rating.
Voltage mode: ± 0.01% of full scale
Current mode: ± 0.04% of full scale
Load Transient Response
Load transient response is a measure of how quickly the power supply's output voltage recovers after a step change in the load, measured while operating at maximum rated voltage.
2 ms to recover within ±1% of regulated output with a 50% to 100% or 100% to 50% step load change
Stability
± 0.10% for 8 hrs. after 30 min. warm-up
Efficiency
80% to 93%
Model specific. Refer to chart of available models.
Maximum Slew Rate
Standard Models
< 170 ms for a programmed output voltage change from 0 to 63%
< 200 ms for a programmed output current change from 0 to 63%
Maximum Slew Rate
Models with High Slew Rate Output (+HS) Option
< 5 ms for a programmed output voltage change from 0 to 63%
< 10 ms for an output current change from 0 to 63%
Bandwidth
Standard Models
3 Hz with remote analog voltage programming
2 Hz with remote analog current programming
Bandwidth
Models with High Slew Rate Output (+HS) Option
60 Hz with remote analog voltage programming
45 Hz with remote analog current programming
DC Output Isolation
Models Rated ≤1000 Vdc
±1000 Vdc, maximum output voltage to ground
DC Output Isolation
Models Rated >1000 Vdc and ≤3000 Vdc
±(1500 Vdc + Vo/2), max output voltage to ground, where Vo is the max rated voltage
DC Output Isolation
Models Rated >3000 Vdc
No output isolation, specify positive or negative output polarity at time of order

Programming Interface Specifications

Front Panel Programming
Stepless aluminum rotary knobs and keypad
Computer Interface
RS232, D-sub DB-9, female (Standard)
LXI TCP/IP Ethernet RJ45 (Option +LXI)
IEEE-488 GPIB (Option +GPIB)
External User I/O Port
Analog and Digital Programming
37-pin D-sub DB-37, female
Referenced to Earth ground; isolated from power supply output
See User Manual for pin layout
Remote Sense Limits (Wired)
Available for models ≤ 1000 Vdc
3% maximum voltage drop from output to load

Accuracy Specifications

Voltage Programming Accuracy
Programming accuracy is a measure of how close the actual power supply output will be to the programmed setting, as measured by an ideal meter.
± 0.075% of max rated voltage
Over Voltage Trip Programming Accuracy
± 0.075% of max rated voltage
Current Programming Accuracy
Programming accuracy is a measure of how close the actual power supply output will be to the programmed setting, as measured by an ideal meter.
± 0.075% of max rated current
Over Current Trip Programming Accuracy
± 0.075% of max rated current
Voltage Readback Accuracy
Readback accuracy is a measure of how close the measured and displayed value will be to the actual power supply output.
± 0.2% of max rated voltage
Current Readback Accuracy
Readback accuracy is a measure of how close the measured and displayed value will be to the actual power supply output.
± 0.2% of max rated current

External User I/O Specifications

Analog Programming and Monitoring Levels
0-10 Vdc
Analog Output Impedances
Voltage output monitoring: 100 Ω
Current output monitoring: 100 Ω
+10V reference: 1 Ω
Digital Programming and Monitoring Limits
Input: 0 to 5 Vdc, 10 kΩ input impedance
Output: 0 to 5 Vdc, 5 mA drive capacity

Physical Specifications

Racking Standard
EIA-310
Rear Support Rails
Included
Size and Weight
2 kW Models
2U
3.50" H x 19" W x 24" D (8.89 x 48.26 x 60.96 cm)
45 lbs (20.41 kg)
Size and Weight
4 kW Models
2U
3.50" H x 19" W x 24" D (8.89 x 48.26 x 60.96 cm)
47 lbs (21.32 kg)
Size and Weight
6 kW Models
2U
3.50" H x 19" W x 24" D (8.89 x 48.26 x 60.96 cm)
48 lbs (21.77 kg)
Size and Weight
8 kW Models
2U
3.50" H x 19" W x 24" D (8.89 x 48.26 x 60.96 cm)
48 lbs (21.77 kg)
Size and Weight
10 kW Models
2U
3.50" H x 19" W x 24" D (8.89 x 48.26 x 60.96 cm)
48 lbs (21.77 kg)

Environmental Specifications

Ambient Operating Temperature
-25°C to 50°C
Storage Temperature
-25°C to +85°C
Humidity
Relative humidity up to 95% non-condensing
Temperature Coefficient
0.04%/°C of maximum output voltage
0.06%/°C of maximum output current
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

The following are vectorized diagrams for the XR Series. Refer to the Downloads section for downloadable drawings.

Front Panel
Side Panel
Communications Interface
LXI TCP/IP Ethernet Option (+LXI)
Communications Interface
IEEE-488 GPIB Option (+GPIB)
Standard Output Bus
Models ≤1000 Vdc
High Voltage Output Bus
Models >1000 Vdc and ≤3000 Vdc
Very High Voltage Output Bus
Models >3000 Vdc
Very High Voltage Output Cable
Included, Models >3000 Vdc

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.

High Slew Rate Output
Option
+HS
A hardware and control modification that replaces the standard output stage with one of low capacitance film and/or high RMS current rated aluminum electrolytic capacitors. This option provides higher bandwidth with faster output rise and fall times.
IEEE-488 GPIB
Option
+GPIB
IEEE-488 General Purpose Interface Bus (GPIB) communication interface providing full command support and compatibility with other GPIB devices
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
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.

Accessories

External accessories and integration services available for this product.

BDx Module
1U blocking diode module covering a wide range of voltages and currents and providing necessary cooling, power supply controls interface, and remote sensing location.
DBx Module
High-performance add-on bringing ultra-high stability less than 10 ppm, up to 24-bit resolution, and up to 10x reduction in ripple.
DC Power Cables
DC power cables with wide range voltage ratings, current ratings, and termination options, made-to-order by Magna-Power
Rack Enclosures and Integration
Various size rack enclosures, including 12U, 24U, 30U, 36U, 30Ux2 and 36Ux2, with casters, fans and product integration.
RS485 Converter
Industrial RS232 to Addressable RS485 Converter. Plugs into product's RS232 port.
UID46: Universal Interface Device 46
Master-slave interface device for load sharing. Includes interface device and (2) D-Sub 37 cables.
UID47: Universal Interface Device 47
Master-slave interface device for load sharing. Includes interface device and (2) D-Sub 37-pin cables with a braided shield.
USB Edgeport Converter
Industrial Plug and Play USB to RS232 Converter. Adapter plugs into product's RS232 port.

Documentation

XR Series Datasheet [4.6.0] [EN] [PDF]
XR Series Datasheet [4.6.0] [ZH] [PDF]
XR Series User Manual [1.3] [EN] [PDF]

Drawings

Software

Photovoltaic Power Profiles Emulation [2.0.0.12] [ZIP] [License Required]