Performance Test and Calibration - B
IMON, IPROG and CURRENT Calibration Program
10 ! This program will calibrate Imon, Iprog and Current
20! for load modules N3302A, N3303A, N3304A, N3305A and N3306A.
30!
40! last update 9/6/00
50!
60! Edit the interface address on line 100 if different then 705
70!
80ASSIGN @Ld TO 705
90!
100OUTPUT @Ld;"*RST"
110OUTPUT @Ld;"CAL:STAT ON"
120OUTPUT @Ld;"FUNC CURR"
130OUTPUT @Ld;"CURR:RANG MAX"
140OUTPUT @Ld;"SENS:CURR:RANG MAX"
150OUTPUT @Ld;"INP:STAT ON"
160!
170 | ! | ******* | Calibrating Imon Zero ******* |
180 | ! |
|
|
190 | PRINT TABXY(10,8),"See figure |
200PRINT TABXY(10,10),"Module Input Terminals must be open - disconnect power source"
210PRINT TABXY(10,12),"Connect DVM to IMON terminals"
220DISP "Press CONT when ready to calibrate Imon"
230PAUSE
240CLEAR SCREEN
250!
260OUTPUT @Ld;"CAL:IMON:LEV P1"
270PRINT TABXY(20,20);"Calibrating IMON P1 - 5 SECOND WAIT"
280WAIT 5
290CLEAR SCREEN
300INPUT "Measure IMON and enter value in volts - OBSERVE VOLTAGE POLARITY",Vimonp1
310!
320OUTPUT @Ld;"CAL:DATA ";Vimonp1
330!
340OUTPUT @Ld;"CAL:IMON:LEV P2"
350PRINT TABXY(20,20);"Calibrating IMON P2 - 5 SECOND WAIT"
360WAIT 5
370CLEAR SCREEN
380INPUT "Measure IMON and enter value in volts - OBSERVE VOLTAGE POLARITY",Vimonp2
390!
400OUTPUT @Ld;"CAL:DATA ";Vimonp2
410!
420 | ! | ******* | Calibrating Imon and Iprog gain ******* |
430 | ! |
|
|
440PRINT TABXY(10,8),"See figure
450PRINT TABXY(10,10),"Connect module input terminals to power source"
460PRINT TABXY(10,12),"See Table
470PRINT TABXY(10,14),"Set power source voltage and current for model to be calibrated"
480PRINT TABXY(10,16),"Set IPROG power source to 1 volt"
490!
500DISP "Press CONT when ready to calibrate Imon and Iprog"
510PAUSE
520CLEAR SCREEN
530!
91