SCPI.SENSe(Ch).CORRection.COLLect.ACQuire.OLOad.LOAD.EXECute

Object type

Method (Write-only)

Syntax

SCPI.SENSe(Ch).CORRection.COLLect.ACQuire.OLOad.LOAD.EXECute = Port

Description

This command measures the calibration data of an offset load standard for the specified port, for the selected channel (Ch).

Variable

Parameter

Port

Description

Port number

Data type

Long integer type (Long)

Range

1 to 2

Note

If the specified variable is out of the allowable setup range, an error occurs when executed.

Examples

Dim Dmy As Long
' Select X11644 Calibration Kit
SCPI.SENSe.CORRection.COLLect.CKIT.SELect = 15
' Select Load 2 in Load
SCPI.SENSe.CORRection.COLLect.ACQuire.SUBClass = 2
' Select Offset Line 1 (Thur).  The "Thru" is defined as the standard No. 6 in the Define Standard.
SCPI.SENSe.CORRection.COLLect.ACQuire.OLOad.LINE = 6
MsgBox "Connect Offset Load (Thru)"
' Make a measurement for Offset Line 1
SCPI.SENSe.CORRection.COLLect.ACQuire.OLOad.Load.EXECute = 1
' Wait for measurement end.
Dmy = SCPI.IEEE4882.OPC
' Select Offset Line 2 (X-Band Delay Line).The "X-Band Delay Line" is defined as the standard No. 7 in the Define Standard.
SCPI.SENSe.CORRection.COLLect.ACQuire.OLOad.LINE = 7
MsgBox "Connect Offset Load (X-Band Delay Line)"
' Make a measurement for Offset Line 2
SCPI.SENSe.CORRection.COLLect.ACQuire.OLOad.Load.EXECute = 1
' Wait for measurement end.
Dmy = SCPI.IEEE4882.OPC
' Finalize the Offset load measurement.
SCPI.SENSe.CORRection.COLLect.ACQuire.OLOad.Load.DONE = 1

Related objects

SCPI.SENSe(Ch).CORRection.COLLect.ACQuire.OLOAD.LINE

SCPI.SENSe(Ch).CORRection.COLLect.ACQuire.OLOAd.LOAD.DONE

SCPI.SENSe(Ch).CORRection.COLLect.ACQuire.OLOad.LOAD.COUNt

SCPI.SENSe(Ch).CORRection.COLLect.ACQuire.OLOad.LOAD.CLEar

SCPI.IEEE4882.OPC

Equivalent key

Cal > Calibrate > Enhanced Response > Load > Load n - Offset Load> Offset Line n

Cal > Calibrate > 1-Port Cal > Load  > Load n - Offset Load > Offset Line n

Cal > Calibrate > 2-Port Cal > Reflection > Port 1 Load  > Load2 - Offset Load > Offset Line 2

Equivalent SCPI command

Syntax

:SENSe{[1]-160}:CORRection:COLLect[:ACQuire]:OLOad:LOAD[:EXECute] <numeric>

Example of use

10 OUTPUT 717;":SENS1:CORR:COLL:OLO:LOAD 1"
20 OUTPUT 717;"*OPC?"
30 ENTER 717;A

 

Refer to Example for COM.