Mode

SCPI Commands :

[SOURce<HW>]:SWEep:[FREQuency]:MODE:ADVanced
[SOURce<HW>]:SWEep:[FREQuency]:MODE
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_advanced() AutoManualMode[source]
# [SOURce<HW>]:SWEep:[FREQuency]:MODE:ADVanced
value: enums.AutoManualMode = driver.source.sweep.frequency.mode.get_advanced()

No help available

get_value() AutoManStep[source]
# [SOURce<HW>]:SWEep:[FREQuency]:MODE
value: enums.AutoManStep = driver.source.sweep.frequency.mode.get_value()

Sets the cycle mode for the frequency sweep.

Returns:

mode: AUTO | MANual | STEP AUTO Each trigger event triggers exactly one complete sweep. MANual The trigger system is not active. You can trigger every step individually by input of the frequencies with the method RsSmbv.source.frequency.manual() . STEP Each trigger event triggers one sweep step. The frequency increases by the value entered with method RsSmbv.source.sweep.frequency.step.linear() (linear spacing) or method RsSmbv.source.sweep.frequency.step.logarithmic() (logarithmic spacing) .

set_advanced(adv_freq_mode_sel: AutoManualMode) None[source]
# [SOURce<HW>]:SWEep:[FREQuency]:MODE:ADVanced
driver.source.sweep.frequency.mode.set_advanced(adv_freq_mode_sel = enums.AutoManualMode.AUTO)

No help available

set_value(mode: AutoManStep) None[source]
# [SOURce<HW>]:SWEep:[FREQuency]:MODE
driver.source.sweep.frequency.mode.set_value(mode = enums.AutoManStep.AUTO)

Sets the cycle mode for the frequency sweep.

Parameters:

mode – AUTO | MANual | STEP AUTO Each trigger event triggers exactly one complete sweep. MANual The trigger system is not active. You can trigger every step individually by input of the frequencies with the method RsSmbv.source.frequency.manual() . STEP Each trigger event triggers one sweep step. The frequency increases by the value entered with method RsSmbv.source.sweep.frequency.step.linear() (linear spacing) or method RsSmbv.source.sweep.frequency.step.logarithmic() (logarithmic spacing) .