Frequency

SCPI Command:

FETCh:AFRF:MEASurement<Instance>:SROutines:RIFBandwidth:FREQuency
READ:AFRF:MEASurement<Instance>:SROutines:RIFBandwidth:FREQuency
class FrequencyCls[source]

Frequency commands group definition. 4 total commands, 1 Subgroups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator values’

  • Lower_Freq: float: Lower RF frequency Unit: Hz

  • Higher_Freq: float: Higher RF frequency Unit: Hz

fetch() ResultData[source]
# SCPI: FETCh:AFRF:MEASurement<Instance>:SROutines:RIFBandwidth:FREQuency
value: ResultData = driver.afRf.measurement.searchRoutines.rifBandwidth.frequency.fetch()

Query the lower and higher RF frequencies left and right from the nominal frequency. At the frequency values, the noise has increased to the noise target value (noise level method) . Or, the SINAD audio signal quality has dropped down to the target value (TIA-603-D method) .

return:

structure: for return value, see the help for ResultData structure arguments.

read() ResultData[source]
# SCPI: READ:AFRF:MEASurement<Instance>:SROutines:RIFBandwidth:FREQuency
value: ResultData = driver.afRf.measurement.searchRoutines.rifBandwidth.frequency.read()

Query the lower and higher RF frequencies left and right from the nominal frequency. At the frequency values, the noise has increased to the noise target value (noise level method) . Or, the SINAD audio signal quality has dropped down to the target value (TIA-603-D method) .

return:

structure: for return value, see the help for ResultData structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.afRf.measurement.searchRoutines.rifBandwidth.frequency.clone()

Subgroups