SCPI.CALCulate(Ch).SELected.RLIMit.REPort.DATA

Object type    

Property

Syntax         

All revision:

Data = SCPI.CALCulate(Ch).SELected.RLIMit.REPort.DATA

 

In revision A.9.60 and above, the following syntax is also supported:

Data = SCPI.CALCulate(Ch).TRACe(Tr).RLIMit.REPort.DATA

Description

This command reads the ripple value of the ripple test for the active trace (specified with the SCPI.CALCulate(Ch).PARameter(Tr).SELect command)of selected channel (Ch).  

The data transfer format when this command is executed depends on the setting with the SCPI.FORMat.DATA command.(Read only)

 

In revision A.9.60 and above, you can select the trace and read the ripple value of the ripple test for the trace just by executing the above TRACe(Tr) command. You do not need to execute SCPI.CALCulate(Ch).PARameter(Tr).SELect.

Variable

Parameter

Data

Description

Indicates the array data (for ripple line) of 1 + Num (number of limit lines)*3. Where n is an integer between 1 and 12.

  • Data(0) :Number of ripple limit line.

  • Data(nx3-2) :Number of ripple limit bands.

  • Data(nx3-1) :Ripple value.

  • Data(nx3) :Results of ripple test.
    Select from the following.
    0:PASS
    1:FAIL.

The index of the array starts from 0.

Data type

Variant type (Variant)

Examples

Dim RData As Variant
SCPI.CALCulate(1).PARameter(1).SELect
RData = SCPI.CALCulate(1).SELected.RLIMit.REPort.DATA

Related objects

SCPI.CALCulate(Ch).PARameter(Tr).SELect

SCPI.CALCulate(Ch).SELected.RLIMit.STATe

Equivalent key

No equivalent key is available on the front panel.

Equivalent SCPI command

Syntax

All revision:

:CALCulate{[1]-160}[:SELected]:RLIMit:REPort[:DATA]?

 

In revision A.9.60 and above, the following syntax is also supported:

:CALCulate{[1]-160}:TRACe{[1]-16}:RLIMit:REPort[:DATA]?

Query response

{numeric 1},… ,{numeric 1+Nx3}<newline><^END>

Type

Description

<numeric 1>

Number of ripple limit line (1 to 12)

<numeric 1+(n\ 3)-2>

Number of ripple limit bands

<numeric 1+(n\ 3)-1>

Ripple value

<numeric 1+(n\ 3)>

Results of ripple test

0: Pass

1: Fail

Where N is the number of lines (specified with <numeric 1>) and n is an integer between 1 and 12.

Example of use

10 DIM B(1:2,1:3)
20 OUTPUT 717;":CALC1:RLIM:REP?"
30 ENTER 717;A,B(*)