Step

SCPI Commands :

[SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:LOGarithmic
[SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:[LINear]
class StepCls[source]

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

get_linear() float[source]
# SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:[LINear]
value: float = driver.source.lfOutput.sweep.frequency.step.get_linear()

Sets the step width for the linear sweep. For information on how the value is calculated and the interdependency with other parameters, see ‘Correlating parameters in sweep mode’

return

linear: float Range: 0.1 to STOP-STARt

get_logarithmic() float[source]
# SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:LOGarithmic
value: float = driver.source.lfOutput.sweep.frequency.step.get_logarithmic()

Sets the step width factor for logarithmic sweeps to calculate the frequencies of the steps. For information on how the value is calculated and the interdependency with other parameters, see ‘Correlating parameters in sweep mode’

return

logarithmic: float The unit is mandatory Range: 0.01 to 100, Unit: PCT

set_linear(linear: float) None[source]
# SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:[LINear]
driver.source.lfOutput.sweep.frequency.step.set_linear(linear = 1.0)

Sets the step width for the linear sweep. For information on how the value is calculated and the interdependency with other parameters, see ‘Correlating parameters in sweep mode’

param linear

float Range: 0.1 to STOP-STARt

set_logarithmic(logarithmic: float) None[source]
# SCPI: [SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:LOGarithmic
driver.source.lfOutput.sweep.frequency.step.set_logarithmic(logarithmic = 1.0)

Sets the step width factor for logarithmic sweeps to calculate the frequencies of the steps. For information on how the value is calculated and the interdependency with other parameters, see ‘Correlating parameters in sweep mode’

param logarithmic

float The unit is mandatory Range: 0.01 to 100, Unit: PCT