KEPCO KLP Series Developers Guide, Rev 3 User Manual
Page 49

KLP-DEV 041213
4-7
The initialization function provides three outputs:
• Visa Session - a handle defining the connection.
• Model - a string providing the model type for the functions.
• Error out - If the function did not fail, this is a 0.
The first block of Figure 4-6, KepcoDCPWR initialize function, performs the open, creating the
connection between the LabView program and the power supply using the VISA.dll supplied
with LabView. The KepcoDCPWR initialize function has two optional settings: reset unit and
identify unit. The reset unit option sends *RST to the unit which sets the output to 0 volts, mini-
mum current, turns the output off, and stops list execution. The identify unit option sends an
*IDN query to the power supply.
The recognize unit utility function parses the response to determine the proper model number
output. If the identify unit flag is not set, the MODEL OUT of the initialize function reports Stan-
dard as the power supply type. The Standard model is a unit that only supports setting voltage,
current and output on/off, and performing measurements; all other functions are bypassed. The
function KepcoDCPWR initialize with options (not used in the example) uses KepcoDCPWR ini-
tialize except that Kepco-recommended options are preset: the reset and identify flags set.
All subsequent functions have at least two inputs: VISA session and Model In. VISA session is
the output of viOpen. Model In is a string; for the KLP the string is KLP.
The second block, KepcoDCPWR Query Voltage Limit, is needed to verify the virtual model set-
tings. It is recommended that the response from this block be checked to insure that the power
supply is configured to supply the voltage and current needed. For example, if the virtual model
for a KLP 75-33-1200 was set to 36 Volts, 33 Amperes, the response will be 36 to this query,
indicating that the program will not respond to a command to set the output to 50 Volts.
The third subVi is KepcoDCPWR Configure Voltage Mode. This block sets the mode to Fixed. It
is recommended that the mode be set to Fixed in order to stop a list if it is running, however if
the Reset Device input into the first block is true, this block is not needed since *RST also stops
a list.