Mode

SCPI Commands :

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

No help available

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

Sets the cycle mode of the LF sweep.

Returns:

mode: AUTO | MANual | STEP AUTO Performs a complete sweep cycle from the start to the end value when a trigger event occurs. The dwell time determines the time period until the signal switches to the next step. MANual Performs a single sweep step when a manual trigger event occurs. The trigger system is not active. To trigger each frequency step of the sweep individually, use the command method RsSmbv.source.lfOutput.frequency.manual() . STEP Each trigger command triggers one sweep step only. The frequency increases by the value set with the coammnds: method RsSmbv.source.lfOutput.sweep.frequency.step.linear() (linear spacing) method RsSmbv.source.lfOutput.sweep.frequency.step.logarithmic() (logarithmic spacing)

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

No help available

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

Sets the cycle mode of the LF sweep.

Parameters:

mode – AUTO | MANual | STEP AUTO Performs a complete sweep cycle from the start to the end value when a trigger event occurs. The dwell time determines the time period until the signal switches to the next step. MANual Performs a single sweep step when a manual trigger event occurs. The trigger system is not active. To trigger each frequency step of the sweep individually, use the command method RsSmbv.source.lfOutput.frequency.manual() . STEP Each trigger command triggers one sweep step only. The frequency increases by the value set with the coammnds: method RsSmbv.source.lfOutput.sweep.frequency.step.linear() (linear spacing) method RsSmbv.source.lfOutput.sweep.frequency.step.logarithmic() (logarithmic spacing)