MagnaDC logo

SL Series

Programmable DC Power Supply

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

The SL Series packs 1.5 to 10 kW of programmable DC power into an ultra-compact 1U rack-mount footprint, ideal for dense ATE and OEM racks. With 127 models spanning 5 to 1500 V and 1.5 to 250 A, the SL Series is designed to address a wide range of applications. High-efficiency thermal design and UL/CSA, CE Mark, and NRTL safety listings minimize cooling and certification overhead, streamlining system integration.

Key Features

  • 127 models
  • 1U rack-mount
  • 1.5 kW, 2.6 kW, 4 kW, 6 kW, 8 kW, 10 kW power levels
  • 5 Vdc to 1500 Vdc output voltage
  • 1.5 Adc to 250 Adc output current
  • UL/CSA listed, CE Mark
  • Designed and manufactured in the USA
CE Mark Logo Nemko Logo UKCA Logo
Magna-Power Expert

Talk with an expert

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

Unparalleled 1U power and performance

Unparalleled 1U power and performance

Clean, precise output with fast response for demanding systems.

SL Series supplies deliver fast transient response, high-accuracy programming and measurement, 12-bit resolution, and low output ripple—all in a class-leading 1U package with efficiency up to 95%. With constant-voltage or constant-current operation and automatic crossover, they settle quickly after load steps (load transient recovery on the order of a few milliseconds) and hold tight to your targets, with voltage and current programming accuracy up to ±0.075% of full scale—ideal for precision test, burn-in, and process applications where both dynamics and accuracy matter.

Configured-to-order with integrated options

Configured-to-order with integrated options

Rich standard features, extended when needed.

SL Series starts with a strong base: SCPI over RS232, isolated 37-pin user I/O, LabVIEW and IVI drivers, and Remote Interface Software included. When applications demand more, fully integrated options tailor performance, connectivity, and mechanics—without external boxes or ad-hoc wiring.

Stepless front-panel control with blank panel option

Stepless front-panel control with blank panel option

Hands-on where you want it, hidden where you don’t.

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.

Reliable current-fed power processing

Reliable current-fed power processing

Rugged by design: self-protecting topology for uptime.

MagnaDC power supplies utilize 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, Magna DC power supplies 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.
Safety features & interlock

Safety features & interlock

Soft-start, programmable protection, and a mechanical line disconnect for true safety.

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.
  • Over temperature product with multiple distributed thermal switches.
  • 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.

Software integration made easy

Readable commands, quick results—works with any language.

MagnaDC power supplies exposes a clear, text-based API with native SCPI, an ASCII-based command language sent over socket communications. Over 40 well-documented commands cover start/stop, set points for voltage, current, high-accuracy measurements, and full configuration—so your scripts and systems go from proof-of-concept to production fast.

  • SCPI 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=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) { }
      }
    }
  }
}
External User I/O for PLC control or PHIL simulation

External User I/O for PLC control or PHIL simulation

Wire it like an I/O module—no extra isolation needed.

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.
High-performance master-slave operation

High-performance master-slave operation

Scale voltage or current without sacrificing performance.

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 software, LabVIEW & IVI drivers

From virtual front panel to full automation—out of the box.

Every MagnaDC supply includes an IVI driver and NI LabVIEW driver with a full set of VIs, plus example programs so you can get talking to the hardware in minutes. For direct front-panel-style control from a PC, Magna-Power’s Remote Interface Software provides a rich view into the supply—from commands and registers to calibration and firmware.

  • IVI & NI LabVIEW drivers included with full VI set.

  • Example programs to jump-start integration and testing.

  • Remote Interface Software with:

    • Virtual front panel for manual control

    • Command panel to explore and send commands

    • Register panel for live status monitoring

    • Calibration panel for internal digital potentiometers

    • Firmware panel for in-place upgrades

    • Modulation panel to emulate non-linear profiles

  • All communication interfaces supported across software and drivers for a consistent programming experience.

Magna-Power software, LabVIEW & IVI drivers

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

SL Series Ordering Guide

SL Series Models

There are 127 different models in the SL Series 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 120 94%
375 4 6.9 10.4 16 21.3 26.5 120 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 250 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%
AC Input Voltage
Vac
Input Current Per Phase Aac
UI (85-265 Vac, 1Φ) 21 - 7    
UI2 (187-265 Vac, 1Φ) 16 - 12    
208/240 Vac, 3Φ 6 11 16 24 32 39    
380/415 Vac, 3Φ 5 8 11 16 19 22    
440/480 Vac, 3Φ 4 6 9 14 17 19    

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
100-240 Vac (UI: Universal input; 1.5 kW Models)
208-240 Vac (UI2: Universal input 2; 2.6 kW Models)
3Φ AC Input Voltage
3Φ, 3-wire + ground
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.99 at maximum power for models with 1Φ AC input; Active-PFC
> 0.82 at maximum power for models with 3Φ 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
Stability
± 0.10% for 8 hrs. after 30 min. warm-up
Efficiency
84% to 95%
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 a programmed 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
±1500 Vdc, maximum output voltage to ground

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
1.5 kW Models
1U
1.75" H x 19" W x 24" D (4.4 x 48.3 x 61.0 cm)
32 lbs (14.52 kg)
Size and Weight
2.6 kW Models
1U
1.75" H x 19" W x 24" D (4.4 x 48.3 x 61.0 cm)
34 lbs (15.42 kg)
Size and Weight
4 kW Models
1U
1.75" H x 19" W x 24" D (4.4 x 48.3 x 61.0 cm)
35 lbs (15.88 kg)
Size and Weight
6 kW Models
1U
1.75" H x 19" W x 24" D (4.4 x 48.3 x 61.0 cm)
35 lbs (15.88 kg)
Size and Weight
8 kW Models
1U
1.75" H x 19" W x 24" D (4.4 x 48.3 x 61.0 cm)
36 lbs (16.33 kg)
Size and Weight
10 kW Models
1U
1.75" H x 19" W x 24" D (4.4 x 48.3 x 61.0 cm)
37 lbs (16.78 kg)

Environmental Specifications

Ambient Operating Temperature
-25°C to 50°C
Storage Temperature
-40°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
NRTL Listed, Nemko Certificate NA202512380
CSA C22.2 No. 61010-1:12; A1:2018
UL 61010-1:Ed.3,2012(R2019)
CE Mark
Yes
RoHS Compliant
Yes

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

Front Panel
Top Panel
Rear Side
Rear Panel
Side Panel
Communications Interface
LXI TCP/IP Ethernet Option (+LXI)
Communications Interface
IEEE-488 GPIB Option (+GPIB)

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

SL Series User Manual [EN] [HTML] [Recommended]
SL Series Datasheet [4.6.0] [EN] [PDF]
SL Series Datasheet [4.6.0] [ZH] [PDF]
SL Series User Manual [49297] [EN] [PDF]

Drawings

Software

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