ModDepth

SCPI Command:

FETCh:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:MDEPth
CALCulate:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:MDEPth
READ:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:MDEPth
class ModDepthCls[source]

ModDepth commands group definition. 5 total commands, 1 Subgroups, 3 group commands

calculate() ResultStatus[source]
# SCPI: CALCulate:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:MDEPth
value: enums.ResultStatus = driver.afRf.measurement.searchRoutines.tsensitivity.modDepth.calculate()

Query the modulation depth result for the TX modulation sensitivity search routine. CALCulate commands return error indicators instead of measurement values.

Use RsCma.reliability.last_value to read the updated reliability indicator.

return:

mod_depth: Modulation depth of the demodulated signal Unit: %

fetch() float[source]
# SCPI: FETCh:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:MDEPth
value: float = driver.afRf.measurement.searchRoutines.tsensitivity.modDepth.fetch()

Query the modulation depth result for the TX modulation sensitivity search routine. CALCulate commands return error indicators instead of measurement values.

Use RsCma.reliability.last_value to read the updated reliability indicator.

return:

mod_depth: Modulation depth of the demodulated signal Unit: %

read() float[source]
# SCPI: READ:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:MDEPth
value: float = driver.afRf.measurement.searchRoutines.tsensitivity.modDepth.read()

Query the modulation depth result for the TX modulation sensitivity search routine. CALCulate commands return error indicators instead of measurement values.

Use RsCma.reliability.last_value to read the updated reliability indicator.

return:

mod_depth: Modulation depth of the demodulated signal Unit: %

Cloning the Group

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

Subgroups