Mode

SCPI Commands

SOURce:VOLTage:POWer<Source>:LEVel:MODE
class ModeCls[source]

Mode commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get(source=Source.Default) PwrLevelMode[source]
# SCPI: SOURce:VOLTage:POWer<1|2>:LEVel:MODE
value: enums.PwrLevelMode = driver.source.voltage.power.level.mode.get(source = repcap.Source.Default)

This command selects whether you want to control the output in terms of current or voltage.

param source

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Power’)

return

mode: CURRent Control the output in terms of current. VOLTage Controls the output in terms of voltage.

set(mode: PwrLevelMode, source=Source.Default) None[source]
# SCPI: SOURce:VOLTage:POWer<1|2>:LEVel:MODE
driver.source.voltage.power.level.mode.set(mode = enums.PwrLevelMode.CURRent, source = repcap.Source.Default)

This command selects whether you want to control the output in terms of current or voltage.

param mode

CURRent Control the output in terms of current. VOLTage Controls the output in terms of voltage.

param source

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Power’)