Mode
SCPI Commands :
[SOURce<HW>]:SWEep:POWer:MODE:ADVanced
[SOURce<HW>]:SWEep:POWer:MODE
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_advanced() AutoManualMode[source]
# [SOURce<HW>]:SWEep:POWer:MODE:ADVanced value: enums.AutoManualMode = driver.source.sweep.power.mode.get_advanced()
No help available
- get_value() AutoManStep[source]
# [SOURce<HW>]:SWEep:POWer:MODE value: enums.AutoManStep = driver.source.sweep.power.mode.get_value()
Sets the cycle mode for the level sweep.
- Returns:
mode: AUTO | MANual | STEP AUTO Each trigger triggers exactly one complete sweep. MANual The trigger system is not active. You can trigger every step individually with the method
RsSmbv.source.power.manual(). The level value increases at each step by the value that you define with methodRsSmbv.source.power.step.increment(). Values directly entered with the methodRsSmbv.source.power.manual()are not taken into account. STEP Each trigger triggers one sweep step only. The level increases by the value entered with methodRsSmbv.source.power.step.increment().
- set_advanced(pow_mode_adv: AutoManualMode) None[source]
# [SOURce<HW>]:SWEep:POWer:MODE:ADVanced driver.source.sweep.power.mode.set_advanced(pow_mode_adv = enums.AutoManualMode.AUTO)
No help available
- set_value(mode: AutoManStep) None[source]
# [SOURce<HW>]:SWEep:POWer:MODE driver.source.sweep.power.mode.set_value(mode = enums.AutoManStep.AUTO)
Sets the cycle mode for the level sweep.
- Parameters:
mode – AUTO | MANual | STEP AUTO Each trigger triggers exactly one complete sweep. MANual The trigger system is not active. You can trigger every step individually with the method
RsSmbv.source.power.manual(). The level value increases at each step by the value that you define with methodRsSmbv.source.power.step.increment(). Values directly entered with the methodRsSmbv.source.power.manual()are not taken into account. STEP Each trigger triggers one sweep step only. The level increases by the value entered with methodRsSmbv.source.power.step.increment().