Step

SCPI Commands :

[SOURce<HW>]:IQ:OUTPut:DIGital:POWer:STEP:MODE
[SOURce<HW>]:IQ:OUTPut:DIGital:POWer:STEP:[INCRement]
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_increment() float[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:STEP:[INCRement]
value: float = driver.source.iq.output.digital.power.step.get_increment()

Sets the step width. Use this value to vary the digital I/Q output level step-by-step.

get_mode() FreqStepMode[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:STEP:MODE
value: enums.FreqStepMode = driver.source.iq.output.digital.power.step.get_mode()

Defines the type of step size to vary the digital output power step by step.

Returns:

mode: DECimal | USER DECimal Increases or decreases the level in steps of 10 dB. USER Increases or decreases the level in increments, determined with the method RsSmbv.source.iq.output.digital.power.step.increment() .

set_increment(ipart_increment: float) None[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:STEP:[INCRement]
driver.source.iq.output.digital.power.step.set_increment(ipart_increment = 1.0)

Sets the step width. Use this value to vary the digital I/Q output level step-by-step.

Parameters:

ipart_increment – float Range: 0 to 100

set_mode(mode: FreqStepMode) None[source]
# [SOURce<HW>]:IQ:OUTPut:DIGital:POWer:STEP:MODE
driver.source.iq.output.digital.power.step.set_mode(mode = enums.FreqStepMode.DECimal)

Defines the type of step size to vary the digital output power step by step.

Parameters:

mode – DECimal | USER DECimal Increases or decreases the level in steps of 10 dB. USER Increases or decreases the level in increments, determined with the method RsSmbv.source.iq.output.digital.power.step.increment() .