Help Icon
Search Results for

    Show / Hide Table of Contents

    :SENSe:CORRection:SDELaytime

    Description

    Gets or sets the delay time when performing the short calibration.

    Note

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

    • Command
    Syntax Parameter
    :SENSe<ch>:CORRection:SDELaytime <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 0s to 500μs s - Seconds Settings conflict The short delay time in seconds.
    • Query
    Syntax Response
    :SENSe<ch>:CORRection:SDELaytime? <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 short delay time in seconds.

    Sample usage

    Configure an S11 measurement, set the short delay time to 50ps and perform the full range short calibration.

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