Help Icon
Search Results for

    Show / Hide Table of Contents

    :SERVice:SWEep:FREQuency:MAXimum

    Description

    This command gets the maximum frequency that can be reached while sweeping.

    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:FREQuency:MAXimum? <numeric>
    Response value meaning
    <numeric> the maximum frequency in Hz

    Sample usage

    Get the maximum supported frequency in Hz (e.g. value for Bode 100).

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

    Output:

    50000000

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

    Output:

    50000000

    Related commands

    :SERVice:SWEep:FREQuency:MINimum

    In this article
    Back to top Generated by DocFX