Help Icon
Search Results for

    Show / Hide Table of Contents

    :SERVice:SWEep:POWer:MINimum

    Description

    This command reads out the lower limit of the source power in dBm.

    Note

    To get an overview about the valid limits please refere to Bode 100 technical data or Bode 500 technical data.

    • Query
    Syntax Response
    :SERVice:SWEep:POWer:MINimum? <numeric>
    Response value meaning
    <numeric> the minimum source power in dBm

    Sample usage

    Get the minimum supported power in dBm (e.g. value for Bode 100).

    • C#
    var visaSession = new TcpipSocket(VISA_RESOURCENAME);
    visaSession.RawIO.Write(":SERVice:SWEep:POWer:MINimum?\n");
    Console.WriteLine(visaSession.RawIO.ReadString());
    

    Output:

    -30

    • Python
    response = visaSession.query(':SERVice:SWEep:POWer:MINimum?\n')
    print(response)
    

    Output:

    -30

    Related commands

    :SERVice:SWEep:POWer:MAXimum

    In this article
    Back to top Generated by DocFX