Help Icon
Search Results for

    Show / Hide Table of Contents

    :SENSe:Z:METHod

    Description

    This command selects the measurement type of the impedance measurement (Z in :CALCulate:PARameter:DEFine). For more details about the different measurement types please refer to the general info page about measurements ( Measurement Types ).

    Important

    The standard behaviour of this method is that the input parameters (gain, attenuation, termination, ...) are kept. The optional DEFault parameter allows to apply measurement relevant default (preset) settings.

    Syntax

    :SENSe<ch>:Z:METHod

    Command Query
    Query Response
    Yes Yes The measurement type.
    Parameters
    Accepted Format
    Allowed Suffixes
    Possible Errors
    Description
    { P1Reflection | TSHunt | TSERies | ECOupler | EBRidge | IADapter | VCGain } exactly the given options none Illegal parameter value The measurement to perform
    [optional] DEFault exactly the given options none Illegal parameter value If applied the input parameters (gain, attenuation, termination, ...) are ALWAYS set to the default values; otherwise the settings from the previous measurement will be kept.

    To learn more about channels and traces, please refer to the SCPI command structure

    Options

    Options Description
    P1Reflection Port 1 Reflection measurement.
    TSERies Series Thru measurement.
    TSHunt Shunt Thru measurement.
    ECOupler S11 external coupler measurement.
    EBRidge External Bridge Impedance measurement.
    IADapter Impedance Adapter measurement.
    VCGain Voltage Current Gain measurement.

    Sample usage

    Configure and start a P1Reflection measurement.

    visaSession.write(':CALC:PAR:DEF Z\n')
    visaSession.write(':SENS:Z:METH P1R\n')
    visaSession.write(':TRIG:SING\n')
    visaSession.query('*OPC?\n')
    frequencyValues = visaSession.query(':SENS:FREQ:DATA?\n')
    measurementValues = visaSession.query(':CALC:DATA:SDAT?\n')
    
    In this article
    Back to top Generated by DocFX