Step
SCPI Commands :
[SOURce<HW>]:FREQuency:STEP:MODE
[SOURce<HW>]:FREQuency:STEP:[INCRement]
- class StepCls[source]
Step commands group definition. 2 total commands, 0 Subgroups, 2 group commands
- get_increment() float [source]
# SCPI: [SOURce<HW>]:FREQuency:STEP:[INCRement] value: float = driver.source.frequency.step.get_increment()
Sets the step width. You can use this value to vary the RF frequency with command FREQ UP or FREQ DOWN. If you have activated FREQ:STEP:MODE USER. Note: This value also applies to the step width of the rotary knob on the instrument and, in user-defined step mode, increases or decreases the frequency.
- return:
increment: float Range: 0 Hz to RFmax - 100 kHz
- get_mode() FreqStepMode [source]
# SCPI: [SOURce<HW>]:FREQuency:STEP:MODE value: enums.FreqStepMode = driver.source.frequency.step.get_mode()
Defines the type of step size to vary the RF frequency at discrete steps with the commands FREQ UP or FREQ DOWN. You can define the step mode for each path separately.
- return:
mode: DECimal| USER DECimal Increases or decreases the level in steps of ten. USER Increases or decreases the level in increments, set with the command FREQ:STEP[:INCR].
- set_increment(increment: float) None [source]
# SCPI: [SOURce<HW>]:FREQuency:STEP:[INCRement] driver.source.frequency.step.set_increment(increment = 1.0)
Sets the step width. You can use this value to vary the RF frequency with command FREQ UP or FREQ DOWN. If you have activated FREQ:STEP:MODE USER. Note: This value also applies to the step width of the rotary knob on the instrument and, in user-defined step mode, increases or decreases the frequency.
- param increment:
float Range: 0 Hz to RFmax - 100 kHz
- set_mode(mode: FreqStepMode) None [source]
# SCPI: [SOURce<HW>]:FREQuency:STEP:MODE driver.source.frequency.step.set_mode(mode = enums.FreqStepMode.DECimal)
Defines the type of step size to vary the RF frequency at discrete steps with the commands FREQ UP or FREQ DOWN. You can define the step mode for each path separately.
- param mode:
DECimal| USER DECimal Increases or decreases the level in steps of ten. USER Increases or decreases the level in increments, set with the command FREQ:STEP[:INCR].