BOP-1K-GL 111315
3-51/(3-52 Blank)
b. After the unit powers up and the POWER/FAULT/LIMIT light is green and the unit is beep-
ing equally, on and off, turn the unit off.
c. Return switches to previously recorded positions from step 4a above and perform a nor-
mal power-up per PAR. 3.3.2.2.
FIGURE 3-12. TYPICAL EXAMPLE OF BOP POWER SUPPLY PROGRAM USING SCPI COMMANDS
/**************************************************************************/
/* Sample Program For KEPCO power supply, using National Instruments */
/* GPIB interface card and IBM PC or compatible computer */
/**************************************************************************/
#include <stdio.h>
#include "decl.h"
char rd_str[80];
// Input buffer
char dat_str[80];
// Output buffer
int bd,adr;
main() {
adr = ibfind("DEV6");
// Open DEV6 (defined by IBCONF)
bd = ibfind ("GPIB0");
// Open GPIB card
ibsic (bd);
// Send Interface Clear
ibsre(bd,1);
// Set remote line true
strcpy(dat_str,"VOLT 5;CURR 1");
// Define a set command
strcat(dat_str,"\r\n");
// Append delimiter
ibwrt(adr,dat_str,strlen(dat_str));
// Send string to power supply
strcpy(dat_str,"MEAS:VOLT?;CURR?");
// Define a measure command
strcat(dat_str,"\r\n");
// Append delimiter
ibwrt(adr,dat_str,strlen(dat_str));
// Send string to power supply
strset(rd_str,'\0');
// Clear input buffer
ibrd(adr,rd_str,64);
// Read result of measure
printf("received : %s\n",rd_str);
// Print voltage and current
}
Содержание BOP-GL 1KW
Страница 2: ......
Страница 10: ......
Страница 20: ...x BOP 1K 111315 FIGURE 1 1 HIGH POWER BOP GL SERIES POWER SUPPLY...
Страница 36: ...1 16 BOP 1K GL 111315 FIGURE 1 3 BOP OUTPUT CHARACTERISTICS...
Страница 38: ......
Страница 116: ......
Страница 128: ......
Страница 174: ......