Step

SCPI Commands :

[SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:LOGarithmic
[SOURce<HW>]:LFOutput:SWEep:[FREQuency]:STEP:[LINear]
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_linear() float[source]
# [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’

Returns:

linear: float Range: 0.1 to STOP-STARt

get_logarithmic() float[source]
# [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’

Returns:

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

set_linear(linear: float) None[source]
# [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’

Parameters:

linear – float Range: 0.1 to STOP-STARt

set_logarithmic(logarithmic: float) None[source]
# [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’

Parameters:

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