SearchRoutines

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:SROutines:MRFLevel
CONFigure:AFRF:MEASurement<Instance>:SROutines:SQValue
CONFigure:AFRF:MEASurement<Instance>:SROutines:SQTYpe
CONFigure:AFRF:MEASurement<Instance>:SROutines:STOLerance
CONFigure:AFRF:MEASurement<Instance>:SROutines:PATH
CONFigure:AFRF:MEASurement<Instance>:SROutines:TOUT
class SearchRoutinesCls[source]

SearchRoutines commands group definition. 45 total commands, 9 Subgroups, 6 group commands

get_mrf_level() float[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:MRFLevel
value: float = driver.configure.afRf.measurement.searchRoutines.get_mrf_level()

Configures the maximum RF level for the signal generator. Set a maximum RF level value that matches with the maximum input power of your DUT. A too high value of the RF level can damage your DUT.

return:

max_level: Range: -130 dBm to -30 dBm, Unit: dBm

get_path() SearchRoutinePath[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:PATH
value: enums.SearchRoutinePath = driver.configure.afRf.measurement.searchRoutines.get_path()

Configures the path from where the test instrument receives the audio input by the connector or by ‘VoIP’.

return:

path: AFI1 | AFI2 | VOIP

get_sq_type() TargetParType[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:SQTYpe
value: enums.TargetParType = driver.configure.afRf.measurement.searchRoutines.get_sq_type()

Selects the type of audio signal quality to be measured.

return:

target_par_type: SINad | SNRatio | SNNRatio | SNDNratio SINad Signal to noise and distortion SNRatio Signal-to-noise ratio S/N SNNRatio (S+N) /N SNDNratio (S+N+D) /N

get_sq_value() float[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:SQValue
value: float = driver.configure.afRf.measurement.searchRoutines.get_sq_value()

Configures the target value for the audio signal quality parameters.

return:

target_par_val: Range: 1 dB to 46 dB, Unit: dB

get_stolerance() float[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:STOLerance
value: float = driver.configure.afRf.measurement.searchRoutines.get_stolerance()

Configures the maximum allowed deviation of the current signal quality from the average signal quality.

return:

tolerance: Unit: dB

get_timeout() float[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:TOUT
value: float = driver.configure.afRf.measurement.searchRoutines.get_timeout()

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated via the graphical user interface. The timer is reset after the first measurement cycle. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped and the reliability indicator is set to 1. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

return:

tcd_timeout: Unit: s

set_mrf_level(max_level: float) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:MRFLevel
driver.configure.afRf.measurement.searchRoutines.set_mrf_level(max_level = 1.0)

Configures the maximum RF level for the signal generator. Set a maximum RF level value that matches with the maximum input power of your DUT. A too high value of the RF level can damage your DUT.

param max_level:

Range: -130 dBm to -30 dBm, Unit: dBm

set_path(path: SearchRoutinePath) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:PATH
driver.configure.afRf.measurement.searchRoutines.set_path(path = enums.SearchRoutinePath.AFI1)

Configures the path from where the test instrument receives the audio input by the connector or by ‘VoIP’.

param path:

AFI1 | AFI2 | VOIP

set_sq_type(target_par_type: TargetParType) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:SQTYpe
driver.configure.afRf.measurement.searchRoutines.set_sq_type(target_par_type = enums.TargetParType.SINad)

Selects the type of audio signal quality to be measured.

param target_par_type:

SINad | SNRatio | SNNRatio | SNDNratio SINad Signal to noise and distortion SNRatio Signal-to-noise ratio S/N SNNRatio (S+N) /N SNDNratio (S+N+D) /N

set_sq_value(target_par_val: float) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:SQValue
driver.configure.afRf.measurement.searchRoutines.set_sq_value(target_par_val = 1.0)

Configures the target value for the audio signal quality parameters.

param target_par_val:

Range: 1 dB to 46 dB, Unit: dB

set_stolerance(tolerance: float) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:STOLerance
driver.configure.afRf.measurement.searchRoutines.set_stolerance(tolerance = 1.0)

Configures the maximum allowed deviation of the current signal quality from the average signal quality.

param tolerance:

Unit: dB

set_timeout(tcd_timeout: float) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:SROutines:TOUT
driver.configure.afRf.measurement.searchRoutines.set_timeout(tcd_timeout = 1.0)

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated via the graphical user interface. The timer is reset after the first measurement cycle. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped and the reliability indicator is set to 1. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

param tcd_timeout:

Unit: s

Cloning the Group

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

Subgroups