Help Icon
Search Results for

    Show / Hide Table of Contents

    :SENSe:CORRection:LOAD

    Description

    Gets or sets the resistance value in Ω used for the load calibration.

    Note

    The load value can only be set, if the selected measurement mode supports a load calibration. Otherwise a Settings Conflict error is raised.

    • Command
    Syntax Parameter
    :SENSe<ch>:CORRection:LOAD <numeric>
    Parameters accepted format allowed suffixes possible Errors description
    <ch> { 1 | empty } none Invalid channel index Currently only one channel is supported. Empty means 1 is used as default.
    { <numeric> | MINimum | MAXimum } Range from 1Ω to 1kΩ Ohm Settings conflict The load value in Ohm.
    • Query
    Syntax Response
    :SENSe<ch>:CORRection:LOAD? <numeric>
    Parameters accepted format description
    <ch> { 1 | empty } Currently only one channel is supported. Empty means 1 is used as default.
    Response value description
    <numeric> The load value in Ohm.

    Sample usage

    Configure an S11 measurement, set the load value to 100 Ohm and perform the full range load calibration.

    • C#
    var visaSession = new TcpipSocket(VISA_RESOURCENAME);
    visaSession.RawIO.Write(":CALC:PAR:DEF S11\n");
    visaSession.RawIO.Write(":SENS:CORR:LOAD 100Ohm\n");
    visaSession.RawIO.Write(":SENS:CORR:FULL:LOAD\n");
    visaSession.RawIO.Write("*OPC?*\n");
    visaSession.RawIO.ReadString();
    
    • Python
    visaSession.write(':CALC:PAR:DEF S11\n')
    visaSession.write(':SENS:CORR:SDEL 100Ohm\n')
    visaSession.write(':SENS:CORR:FULL:LOAD\n')
    visaSession.query('*OPC?\n')
    
    In this article
    Back to top Generated by DocFX