Help Icon
Search Results for

    Show / Hide Table of Contents

    :OUTPut:AOFF

    Description

    Selects, whether the power source should be automatically turned off after a single sweep cycle. This is useful, if only a single sweep is performed. The DUT does not heat up unnecessarily. When performing a continuous measurement, it is considered to deactivate the automatic output power off feature, because otherwise the source is powered down between each sweep run.

    Note

    The source state will NOT be changed immediately when value is applied!

    • Command
    Syntax Parameter
    :OUTPut:AOFF <bool>
    Parameters accepted format allowed suffixes possible Errors description
    <bool> { ON | OFF | 1 | 0 } none Illegal parameter value Boolean value indicating whether the Automatic Output Power OFF Feature should be activated or deactivated.
    • Query
    Syntax Response
    :OUTPut:AOFF? { 1 | 0 }
    Response value description
    { 1 | 0 } Boolean value indicating whether the Automatic Output Power OFF Feature is activated or deactivated.

    Options

    Options Description
    OFF | 0 Automatic Output Power OFF Feature deactivated.
    ON | 1 Automatic Output Power OFF Feature activated.

    Presets

    default value
    { 1 | 0 } ON

    Sample usage

    Enable and start a continuous measurement and ensure that the power source remains active between each sweep run.

    • C#
    var visaSession = new TcpipSocket(VISA_RESOURCENAME);
    visaSession.RawIO.Write(":TRIG:SOUR INT\n");
    
    // ensure that the power source stays activate between each sweep run
    visaSession.RawIO.Write(":OUTP:AOFF OFF\n");
    visaSession.RawIO.Write(":INIT:CONT ON\n");
    
    • Python
    visaSession.write(':TRIG:SOUR INT\n')
    
    # ensure that the power source stays activate between each sweep run
    visaSession.write(':OUTP:AOFF OFF\n')
    visaSession.write(':INIT:CONT ON\n')
    

    Related commands

    :INITiate:CONTinuous

    :INITiate[:IMMediate]

    :TRIGger[:SEQuence]:SINGle

    :TRIGger[:SEQuence][:IMMediate]

    In this article
    Back to top Generated by DocFX