:SENSe:CORRection:FULLrange:EXTPolated
Description
Gets a value indicating whether the actual full range calibration is extrapolated or not. If the calibration is extrapolated, that means that some values (especially at low frequencies) may not be accurate because the calibration was not performed at this frequency levels. It is extrapolated to this frequencies, but that is not a guarantee for best quality of measurement.
For more information about the calibration system please refer to Calibration.
Syntax | Response |
---|---|
:SENSe<ch>:CORRection:FULLrange:EXTPolated? |
{ 1 | 0 } |
Parameters | accepted format | description |
---|---|---|
<ch > |
{ 1 | empty } |
Currently only one channel is supported. Empty means 1 is used as default. |
Response value | description |
---|---|
{ 1 | 0 } |
Boolean value indicating whether the Full Range Calibration is extrapolated or not. |
Options
Options | Description |
---|---|
OFF | 0 |
Full Range Calibration is not extrapolated. |
ON | 1 |
Full Range Calibration is extrapolated. |
Presets
default value | |
---|---|
{ 1 | 0 } |
0 |
Sample usage
Perform a Full Range Gain Calibration
and ensure that it is not extrapolated.
var visaSession = new TcpipSocket(VISA_RESOURCENAME); visaSession.RawIO.Write(":CALC:PAR:DEF S21\n"); visaSession.RawIO.Write(":SENS:CORR:FULL:THRU\n"); visaSession.RawIO.Write("*WAI\n"); // wait for the calibration to finish visaSession.RawIO.Write(":SENS:CORR:FULL:EXTP?\n"); visaSession.RawIO.ReadString();
Related commands
:SENSe:CORRection:FULLrange:ACTive
:SENSe:CORRection:FULLrange:AVAIlable
:SENSe:CORRection:FULLrange:ENABle
:SENSe:CORRection:USERrange:ACTive
:SENSe:CORRection:USERrange:AVAIlable
:SENSe:CORRection:USERrange:ENABle
Related commands in the Automation Interface
IsCalibrationExtrapolated (Gain)
IsCalibrationExtrapolated (Impedance)
IsCalibrationExtrapolated (Mulimode)