State

SCPI Commands

SOURce:VOLTage:STATe
class StateCls[source]

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

get() bool[source]
# SCPI: SOURce:VOLTage[:STATe]
value: bool = driver.source.voltage.state.get()

This command turns DC power sources on and off in general. When you turn off the DC power sources, no power is supplied even when you have turned on one of the sources individually with one of the following commands.

INTRO_CMD_HELP: Prerequisites for this command

  • method RsFswp.Source.Voltage.Auxiliary.Level.State.set

  • method RsFswp.Applications.K30_NoiseFigure.Source.Voltage.Control.Level.State.set

  • method RsFswp.Applications.K30_NoiseFigure.Source.Voltage.Power.Level.State.set

Note that you can turn on the global power supply if at least one of the individual supplies has been turned on.

return

state: ON | 1 DC power sources are ready for use. OFF | 0 DC power sources are turned off.

set(state: bool) None[source]
# SCPI: SOURce:VOLTage[:STATe]
driver.source.voltage.state.set(state = False)

This command turns DC power sources on and off in general. When you turn off the DC power sources, no power is supplied even when you have turned on one of the sources individually with one of the following commands.

INTRO_CMD_HELP: Prerequisites for this command

  • method RsFswp.Source.Voltage.Auxiliary.Level.State.set

  • method RsFswp.Applications.K30_NoiseFigure.Source.Voltage.Control.Level.State.set

  • method RsFswp.Applications.K30_NoiseFigure.Source.Voltage.Power.Level.State.set

Note that you can turn on the global power supply if at least one of the individual supplies has been turned on.

param state

ON | 1 DC power sources are ready for use. OFF | 0 DC power sources are turned off.