TS系列
Programmable DC Power Supply
- Size
- 3U to 16U
- Power
- 5 kW to 100 kW
- Manufactured
- USA
- Build-time
- 4-6 weeks
The TS Series offers many models spanning a wide voltage and current range, while still maintaining among the highest power density rack-mount packaging. The TS Series covers voltages from 5 Vdc up to 6000 Vdc (floating) and current levels from 1.2 Adc up to 8000 Adc. Models 5 kW to 15 kW are available in a 3U chassis, models 20 kW and 25 kW are available in a 4U chassis, models 30 kW are available in a 6U chassis, models 40 kW and 50 kW are available in an 8U chassis with removable casters, models 75 kW models are available in a 12U chassis with removable casters, and 100 kW models are available in a 16U chassis with removable casters. In addition, there are several special low voltage high current models, enabling a more cost-effective solution for these requirements. All TS Series power supplies come standard with isolated 37-pin external I/O, RS232, Remote Interface Software, IVI drivers, and LabVIEW drivers for integration into a variety of programming environment.
Talk with an expert
Scalable rack performance with configured-to-order features and options
大功率机架式系统
快速响应、精密稳压和纯净输出,满足关键负载需求。
TS 系列可编程直流电源提供 5 kW 至 100 kW 的功率输出,采用 3U–16U 机架式封装,电压范围涵盖 5 Vdc 至 6,000 Vdc(浮动),电流最高可达 10,000 Adc。电压模式和电流模式调节支持恒压/恒流运行,并可无缝切换。性能表现优异:负载瞬态恢复时间为 2 ms(50–100% 阶跃至 ±1% 以内),电压和电流编程精度均为 ±0.075%,纹波低(因型号而异,标准配置最低可达 35 mVrms)。效率因型号不同最高可达 92%,8U–16U 机箱配备可拆卸脚轮,便于独立使用或机架集成。
按订单配置,集成选项
丰富的标准功能,按需扩展。
与 MagnaDC 产品线的其他系列一样,TS 系列电源拥有强大的控制基础:基于 RS232 的 SCPI 通信、隔离式后面板用户 I/O、LabVIEW 和 IVI 驱动程序,以及随附的远程接口软件。在此基础上,集成选项可让您根据每个系统的用途进行定制——高隔离输出 (+ISO) 用于扩展串联堆叠,高压摆率输出 (+HS) 提供更快的动态响应,LXI TCP/IP 以太网 (+LXI) 和 IEEE-488 GPIB (+GPIB) 提供额外的通信方式,此外还有保护和机械选项,例如集成式阻断二极管 (+BD) 或水冷 (+WC) 以替代标准风冷散热。
无级前面板控制,可选空白面板
需要操控时触手可及,无需时隐于无形。
The standard SL front panel provides rotary and key-based control, bright digital metering, and clear status indicators, so operators can configure setpoints, start and stop the supply, and see system health at a glance. For OEMs and production tools, the optional blank (C-version) front panel removes local controls altogether while retaining full control via communication interfaces and rear 37-pin user I/O, keeping systems secure, clean, and operator-proof.
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.
安全功能与互锁
软启动、可编程保护以及机械线路断开装置,提供真正的安全保障。
MagnaDC supplies start gently and watch continuously. A soft-start stage keeps inrush below steady-state draw, while built-in diagnostics monitor line, thermal, and control conditions. In standby or on a diagnostic fault, an embedded AC contactor mechanically disconnects the mains, assuring the unit only processes power when intended. Faults are shown on the front-panel status display, through 5V digital outputs, and are queryable via SCPI.
-
Programmable trips: Over voltage (OVT) and over current (OCT)/
-
Control integrity: Program-line over-voltage detection.
-
Thermal protection: Over temperature on internal heatsinks.
-
Interlock/E-stop fault monitoring as a standard diagnostic.
-
Field integration: 5V interlock input (with 5V reference) for a dry-contact, latching inhibit with control power maintained.
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
像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 集。
-
示例程序助您快速启动集成和测试。
-
远程接口软件包含:
-
虚拟前面板,用于手动控制
-
命令面板,用于浏览和发送命令
-
寄存器面板,用于实时状态监控
-
校准面板,用于内部数字电位器
-
固件面板,用于就地升级
-
调制面板,用于模拟非线性曲线
-
-
所有通信接口在软件和驱动程序中均受支持,提供一致的编程体验。
State-of-the-art USA manufacturing with worldwide support
美国制造
垂直整合制造,实现全面质量管控。
Magna-Power 产品的设计、制造、测试和售后服务均在位于新泽西州弗莱明顿的 Magna-Power 总部完成,总部面积达 73,500 平方英尺。金属加工、磁性元件制造、PCB 组装和老化测试均在内部完成,从而严格把控质量、成本和交货周期。
- 美国制造:工程设计、生产制造和售后服务集于一处。
- 内部生产:金属加工、磁性元件、SMT PCB 和表面处理。
- 可靠性验证:每台设备均经过全面测试、校准和老化试验。
全球服务与OEM零部件支持
工厂级专业技术,本地化响应。
Magna-Power以工厂及授权服务中心为其产品提供全面支持,服务网络覆盖北美、欧洲、英国、亚太、东亚及南美地区。无论是否在保修期内,均采用工厂标准流程和原厂零部件,将设备恢复至出厂规格。
- 全球覆盖:总部位于新泽西州,并设有多个区域授权服务中心。
- 一致的维修标准:采用工厂诊断流程、作业指导书和系统图纸。
- 原厂OEM零部件:经过测试的替换组件,确保可靠、高效的维修服务,最大限度减少停机时间。
Model Ordering Guide
For both ordering and production, TS Series models are uniquely defined by several key characteristics, as defined by the following diagram:
TS Series Models
There are 275 different models in the TS Series spanning power levels: 5 kW, 10 kW, 15 kW, 20 kW, 25 kW, 30 kW, 40 kW, 50 kW, 75 kW, 100 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 |
5 kW | 10 kW | 15 kW | 20 kW | 25 kW | 30 kW | 40 kW | 50 kW | 75 kW | 100 kW | Ripple5 mVrms |
Efficiency |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Max Current Adc | ||||||||||||
| Chassis Height | 3U | 3U | 3U | 4U/6U2 | 4U/6U2 | 6U | 8U | 8U | 12U | 16U | ||
| 5 | 900 | 18001 | 27001 | — | — | — | — | — | — | — | 50 | 84% |
| 8 | 600 | — | — | 25003,4 | — | — | 50004 | — | 75004 | 100004 | 40 | 85% |
| 10 | 500 | 900 | — | 20003 | 27001 | — | 4000 | — | 6000 | 8000 | 40 | 87% |
| 16 | 300 | 600 | 900 | — | — | 1800 | — | — | — | — | 35 | 87% |
| 20 | 250 | 500 | 750 | 1000 | 1250 | 1500 | 2000 | 2500 | 3750 | 5000 | 40 | 88% |
| 25 | 200 | 400 | 600 | 800 | 1000 | 1200 | 1600 | 2000 | 3000 | 4000 | 40 | 89% |
| 32 | 150 | 300 | 450 | 625 | 781 | 900 | 1250 | 1562 | 2343 | 3124 | 40 | 89% |
| 40 | 125 | 250 | 375 | 500 | 625 | 750 | 1000 | 1250 | 1875 | 2500 | 40 | 89% |
| 50 | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 | 50 | 89% |
| 60 | 83 | 166 | 249 | 333 | 416 | 498 | 666 | 832 | 1248 | 1664 | 60 | 87% |
| 80 | 62 | 124 | 186 | 250 | 312.5 | 372 | 500 | 625 | 937.5 | 1250 | 60 | 90% |
| 100 | 50 | 100 | 150 | 200 | 250 | 300 | 400 | 500 | 750 | 1000 | 60 | 90% |
| 125 | 40 | 80 | 120 | 160 | 200 | 240 | 320 | 400 | 600 | 800 | 100 | 90% |
| 160 | 31 | 62 | 93 | 125 | 156 | 186 | 250 | 312 | 468 | 624 | 120 | 90% |
| 200 | 25 | 50 | 75 | 100 | 125 | 150 | 200 | 250 | 375 | 500 | 125 | 91% |
| 250 | 20 | 40 | 60 | 80 | 100 | 120 | 160 | 200 | 300 | 400 | 130 | 91% |
| 300 | 16 | 32 | 48 | 66.6 | 83.3 | 96 | 133.2 | 166.6 | 249.9 | 333.2 | 160 | 91% |
| 375 | 13 | 26 | 39 | 53.3 | 66.6 | 78 | 106.6 | 133.2 | 199.8 | 266.4 | 170 | 92% |
| 400 | 12 | 24 | 36 | 50 | 62.4 | 72 | 100 | 125 | 187.2 | 249.6 | 180 | 92% |
| 500 | 10 | 20 | 30 | 40 | 50 | 60 | 80 | 100 | 150 | 200 | 220 | 92% |
| 600 | 8 | 16 | 24 | 33.3 | 41.6 | 48 | 66.6 | 83.2 | 124.8 | 166.4 | 250 | 92% |
| 800 | 6 | 12 | 18 | 25 | 31.2 | 36 | 50 | 62.4 | 93.6 | 124.8 | 300 | 92% |
| 1000 | 5 | 10 | 15 | 20 | 25 | 30 | 40 | 50 | 75 | 100 | 350 | 92% |
| 1250 | 4 | 8 | 12 | 16 | 20 | 24 | 32 | 40 | 60 | 80 | 375 | 92% |
| 1500 | 3.3 | 6.6 | 9.9 | 13.3 | 16.6 | 19.8 | 26.6 | 33.2 | 49.8 | 66.4 | 400 | 92% |
| 2000 | 2.5 | 5 | 7.5 | 10 | 12.5 | 15 | 20 | 25 | 37.5 | 50 | 450 | 92% |
| 3000 | 1.6 | 3.2 | 4.8 | 6.6 | 8.3 | 9.6 | 13.2 | 16.6 | 24.9 | 33.2 | 500 | 92% |
| 4000 | 1.2 | 2.4 | 3.6 | 5 | 6.2 | 7.2 | 10 | 12.4 | 18.6 | 24.8 | 550 | 92% |
| 5000 | 1 | 2 | 3 | 4 | 5 | 6 | 8 | 10 | 15 | 20 | 1500 | 92% |
| 6000 | 0.8 | 1.6 | 2.5 | 3.3 | 4.1 | 5 | 6.6 | 8.3 | 12.3 | 16.4 | 1700 | 92% |
| AC Input Voltage Vac |
Input Current Per Phase Aac | |||||||||||
| 208/240 Vac, 1Φ | 41 | — | — | — | — | — | — | — | — | — | ||
| 208/240 Vac, 3Φ | 18 | 36 | 52 | 69 | 85 | 105 | — | — | — | — | ||
| 380/415 Vac, 3Φ | 10 | 20 | 29 | 38 | 47 | 57 | 76 | 94 | 141 | 188 | ||
| 440/480 Vac, 3Φ | 9 | 17 | 25 | 33 | 40 | 50 | 66 | 82 | 120 | 160 | ||
1 Models designated as special low-voltage high-current models that may vary in size and input current from the standard TS Series models within the same power envelope.
2 20/25 kW models with 380/415, 3Φ input or 440/480 Vac, 3Φ input come in a 4U chassis. 20/25 kW models with 208/240, 3Φ input come in a 6U chassis.
3 Available with 380/415, 3Φ input or 440/480 Vac, 3Φ input only, 4U.
4 45ºC max ambient operating temperature rating for standard air cooled configurations. 50ºC max ambient operating temperature rating for configurations with Water Cooling (+WC) option.
5 Ripple specifed for standard models. Ripple will be higher for models with the High Slew Rate Output (+HS) option page for more details.
Specifications are subject to change without notice. Unless otherwise noted, all specifications measured at the product's maximum ratings.
AC Input Specifications
240 Vac (operating range 216 - 264 Vac)
240 Vac (operating range 216 to 264 Vac)
380/400 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)
> 0.70 at maximum power (1Φ Input)
DC Output Specifications
Current mode: ± 0.02% of full scale
Current mode: ± 0.04% of full scale
Model specific. Refer to chart of available models.
< 200 ms for a programmed output current change from 0 to 63%
< 10 ms for a programmed output current change from 0 to 63%
2 Hz with remote analog current programming
45 Hz with remote analog current programming
Programming Interface Specifications
LXI TCP/IP Ethernet RJ45 (Option +LXI)
IEEE-488 GPIB (Option +GPIB)
Referenced to Earth ground; isolated from power supply output
See User Manual for pin layout
Accuracy Specifications
External User I/O Specifications
Current output monitoring: 100 Ω
+10V reference: 1 Ω
Output: 0 to 5 Vdc, 5 mA drive capacity
Physical Specifications
5.25" H x 19" W x 24" D (13.34 x 48.26 x 60.96 cm)
74 lbs (34.57 kg)
5.25" H x 19" W x 24" D (13.34 x 48.26 x 60.96 cm)
94 lbs (42.64 kg)
5.25" H x 19" W x 24" D (13.34 x 48.26 x 60.96 cm)
125 lbs (56.70 kg)
7” H x 19” W x 24” D (17.8 x 48.2 x 60.9 cm)
160 lbs (72.6 kg)
10.5" H x 19" W x 24" D (26.67 x 48.26 x 60.96 cm)
185 lbs (83.9 kg)
7” H x 19” W x 24” D (17.8 x 60.9 x 48.2 cm)
180 lbs (81.7 kg)
10.5" H x 19" W x 24" D (26.67 x 48.26 x 60.96 cm)
220 lbs (99.79 kg)
10.5" H x 19" W x 24" D (26.67 x 48.26 x 60.96 cm)
245 lbs (111.13 kg)
8U
14” H x 19” W x 24” D
(35.6 x 48.2 x 60.9 cm)
315 lbs (142.9 kg)
With casters attached:
17.75” H x 19” W x 24” D
(45.1 x 48.2 x 60.9 cm)
315 lbs (142.9 kg)
8U
14” H x 19” W x 24” D
(35.6 x 48.2 x 60.9 cm)
355 lbs (161.0 kg)
With casters attached:
17.75” H x 19” W x 24” D
(45.1 x 48.2 x 60.9 cm)
355 lbs (161.0 kg)
12U
21” H x 19” W x 24” D
(53.3 x 48.2 x 60.9 cm)
540 lbs (244.9 kg) With casters attached:
24.75” H x 19” W x 24” D
(62.9 x 48.2 x 60.9 cm)
540 lbs (244.9 kg)
16U
28” H x 19” W x 24” D
(71.1 x 48.2 x 60.9 cm)
725 lbs (328.9 kg) With casters attached:
31.75” H x 19” W x 24” D
(80.7 x 48.2 x 60.9 cm)
725 lbs (328.9 kg)
Environmental Specifications
0.06%/°C of maximum output current
1.5 GPM minimum flow rate for 3U/4U units
3.0 GPM minimum flow rate for 6U/8U units
4.5 GPM minimum flow rate for 12U units
6.0 GPM minimum flow rate for 16U units
80 PSI maximum pressure
1/4” NPT male pipe size (3U/4U models)
1/2” NPT male pipe size (6U/8U/12U/16U models)
Front air intake, rear exhaust (6U/8U/12U/16U models only)
Regulatory Specifications
CISPR 22 / EN 55022 Class A
The following are vectorized diagrams for the TS Series. 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
- +ISO
- Option
- +HS
- Option
- +GPIB
- Option
- +BD
Accessories
External accessories and integration services available for this product.