Step

SCPI Commands :

[SOURce<HW>]:POWer:STEP:MODE
[SOURce<HW>]:POWer:STEP:[INCRement]
class StepCls[source]

Step commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_increment() float[source]
# SCPI: [SOURce<HW>]:POWer:STEP:[INCRement]
value: float = driver.source.power.step.get_increment()

Specifies the step width in the appropriate path for POW:STEP:MODE USER. To adjust the level step-by-step with this increment value, use the command POW UP, or POW DOWN. Note: The command also sets ‘Variation Step’ in the manual control, that means the user-defined step width for setting the level with the rotary knob or the [Up/Down] arrow keys.

return

increment: float Range: 0 to 200, Unit: dB

get_mode() RsSmbv.enums.FreqStepMode[source]
# SCPI: [SOURce<HW>]:POWer:STEP:MODE
value: enums.FreqStepMode = driver.source.power.step.get_mode()

Defines the type of step width to vary the RF output power step-by-step with the commands POW UP or POW DOWN.

return

mode: DECimal| USER DECimal Increases or decreases the level in steps of ten. USER Increases or decreases the level in increments, determined with the command [:SOURcehw]:POWer:STEP[:INCRement].

set_increment(increment: float) None[source]
# SCPI: [SOURce<HW>]:POWer:STEP:[INCRement]
driver.source.power.step.set_increment(increment = 1.0)

Specifies the step width in the appropriate path for POW:STEP:MODE USER. To adjust the level step-by-step with this increment value, use the command POW UP, or POW DOWN. Note: The command also sets ‘Variation Step’ in the manual control, that means the user-defined step width for setting the level with the rotary knob or the [Up/Down] arrow keys.

param increment

float Range: 0 to 200, Unit: dB

set_mode(mode: RsSmbv.enums.FreqStepMode) None[source]
# SCPI: [SOURce<HW>]:POWer:STEP:MODE
driver.source.power.step.set_mode(mode = enums.FreqStepMode.DECimal)

Defines the type of step width to vary the RF output power step-by-step with the commands POW UP or POW DOWN.

param mode

DECimal| USER DECimal Increases or decreases the level in steps of ten. USER Increases or decreases the level in increments, determined with the command [:SOURcehw]:POWer:STEP[:INCRement].