Script Mode
38
UI # UI mode
U 10 # Output voltage 10 V
I 1 # Output current 1 A
RUN # Activate output
DELAY 200 # Wait 200 ms
U 100 # Adjust output voltage to 100 V
DELAYS 10 # Wait 10 seconds
STANDBY # Deactivate output
I - Set point output current
This command adjusts the set point for the output current in ampere.
Example:
I 9.8 # Output current 9.8 A
IMPP - Set point MPP current
This command adjusts the set point for the MPP current for PV simulation in ampere.
Example:
IMPP 8.123 # MPP current 8.123 A
LOOP, LOOPCNT - Return Loop
Usually the script ends with the last command. A return address can be defined with the command
<LOOP>
. From
this point on, the processing will continue after the last command of the script. To interrupt the program, button
Standby
must be pushed. The command
<LOOPCNT>
equals the command
<LOOP>
. But here, the command
defines the number of loops. The maximum number is 65535.
Example:
# This example activates the output for 10s, then deactivates it for 2s
# and starts from the beginning. This will continue until the user interrupts the
# process by pushing the button Standby.
UI # UI mode
U 100 # Output voltage 100 V
I 10 # Output current 10 A
LOOP # Start address
RUN # Activate output
DELAYS 10 # Wait 10s
STANDBY # Deactivate output
DELAYS 10 # Wait 2s
# This example works like the previous one.
# The cycle is executed only 10 times, and then the script ends.