Remote Operation
Publication 31470-001, Rev C, November 2, 2017
3-85
3.7
Calibration
Commands which cause the 8650B to calibrate a sensor are based on the CL function code. The command
format is:
Syntax:
[AE or BE] CL [
n
] [EN or PCT or %]
[AE or BE] prefix specifies Sensor A or Sensor B
CL is the function code for Calibrate Sensor
[
n
] represents a reference calibration factor of
n
%. The 8650B makes no use of this variable;
instead it reads cal factors from the sensor EEPROM. The variable is included in the command
format only for compatibility with power meters which require it. Any value between 50% and
120% can be entered for
n
[EN or PCT or %] is a required terminating suffix
Example 2:
AE CL 100 EN
! CALIBRATE SENSOR A
Example 2:
BE CL 100 EN
! CALIBRATE SENSOR B
The appropriate sensor must be attached to the calibrator output for the calibration process to function. If the
sensor is not attached, the calibration will fail, and operation will continue as before.
3.7.1
Calibration Routine
The following is an example of a GPIB program to calibrate a sensor. It is strongly recommended that this format
be followed for remote calibration. Note that the service request feature is used to determine when the
calibration has completed; this will result in the fastest calibration routine.
Calibrate:
! calibration routine
ON INTR 7 GOSUB Srq_interrupt
! setup serial poll interrupt jump location
ENABLE INTR 7;2
! enable SRQ interrupts3;*SRE010
! set service request mask to 23;CS
! clear status byte
OUTPUT 713;CL100EN
! start calibration
Flag=0
! reset control flag
WHILE Flag=0
! wait while calibrating
END WHILE
RETURN
Srq_interrupt:
! SRQ interrupts jump here
13;*STB?
ENTER 713;State
IF BIT(State, 1) THEN
PRINT GOOD CAL
ELSE
IF BIT(State, 3) THEN
PRINT BAD CAL
ENDIF
ENDIF
OUTPUT 713;CS
! clear status byte
Flag=1
! set control flag true
RETURN
Содержание 8650B Series
Страница 3: ...Series 8650B Universal Power Meters Publication 31470 001 Rev C November 2 2017 iii ...
Страница 18: ......
Страница 32: ......
Страница 78: ......
Страница 236: ......
Страница 244: ......
Страница 258: ......
Страница 263: ...Menu Structure Publication 31470 001 Rev C November 2 2017 D 3 Figure D 3 Modulation Sensor B Setup Menu Structure ...
Страница 265: ...Menu Stucture Publication 31470 001 Rev C November 2 2017 Page D 5 Figure D 4 Meter Setup Menu Structure ...
Страница 267: ...Publication 31470 001 Rev C November 2 2017 Last page of the document ...