:MEASure:DATA:DRATe

Command Syntax

:MEASure:DATA:DRATe

Query Syntax

:MEASure:DATA:DRATe?

Description

This command moves the Data Rate measurement to the top of the Results table and displays the measurement if it is not already shown on the table.

The query form of the command returns the measured value.

The Data Rate measurement searches your waveform for the narrowest data pulse. The data rate statistics are calculated. The data rate frequency is calculated as one divided by the pulse width.

There are two modes that can be used to find the data (see :MEASure:DATA:DRATe:DWMode):

  • In AUTomatic mode, the data rate is found by searching your waveform for the narrowest data pulse. When the Automatic mode has trouble finding the data rate due to excessive high-frequency jitter on the waveform, the Semi Automatic mode can be used.
  • In the SAUTomatic mode, Infiniium starts by searching around the Nominal Data Rate that you specify then automatically finds the data rate. Use :MEASure:DATA:DRATe:NDRate to specify the nominal data rate.

Use :MEASure:DATA:DRATe:REGion to specify the waveform data region over which the measurement is made.

Sources can be any displayed waveform, waveform memory, or function. For example, CHAN1_1, WMEMory1, or FUNCtion1.

Use :MEASure:TBASe:GENeral:METHod to change the definition of the waveform's top/base. Use :<waveform>:THReshold:GENeral:METHod to change the definition of the waveform's threshold.

Example Command Sequence

:MEASure:DATA:DRATe:SOURce CHAN1_1
:MEASure:DATA:DRATe
:MEASure:DATA:DRATe?

Measurement Ready?

To confirm that the measurement is ready to read, you can query the measurement's status:

if ('CORR' in Infiniium.query(':MEASure:DATA:DRATe:STATus?')):
	measurement = Infiniium.query(':MEASure:DATA:DRATe?')

If averaging is turned on (:ACQuire:SMODe AVERage), you can also confirm if the measurement result is ready by comparing the number of specified averages (:ACQuire:COUNt?) versus the number of measurement sweeps that have occurred (:ACQuire:COUNt?). The technique uses the :COUNt? common measurement query. For example,

if (Infiniium.query(':MEASure:DATA:DRATe:COUNt?') >= Infiniium.query(':ACQuire:COUNt?')):
	measurement = Infiniium.query(':MEASure:DATA:DRATe?')

You can also use an acquisition limit test to test that a number of waveforms or samples have completed before returning a measurement. Refer to the :LTESt:ACQuire:CTYPe command.

Querying Measurement Results and Statistics

You can query measurement results using the :MEASure:DATA:DRATe? query after making the proper instance settings.

If a measurement is installed into Results table (using the :MEASure:DATA:DRATe command) and you have made the proper instance settings, you can query statistics using common child queries.

Also, you can query measurement results and statistics directly from the Results table (without having to make the proper instance settings beforehand). See Querying Measurement Results and Statistics.