Scenario

SCPI Commands :

SCENario:OUTPut:MARKer:SCENario:DURation
SCENario:OUTPut:MARKer:SCENario:ENABle
class ScenarioCls[source]

Scenario commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_duration() float[source]
# SCPI: SCENario:OUTPut:MARKer:SCENario:DURation
value: float = driver.scenario.output.marker.scenario.get_duration()

Sets the duration of the scenario marker.

return:

duration: float Range: 0 to 1, Unit: sec

get_enable() bool[source]
# SCPI: SCENario:OUTPut:MARKer:SCENario:ENABle
value: bool = driver.scenario.output.marker.scenario.get_enable()

Enables an additional marker, that is held high from the scenario start until the duration, selected with the command method RsPulseSeq.Scenario.Output.Marker.Scenario.duration.

return:

enable: ON| OFF| 1| 0

set_duration(duration: float) None[source]
# SCPI: SCENario:OUTPut:MARKer:SCENario:DURation
driver.scenario.output.marker.scenario.set_duration(duration = 1.0)

Sets the duration of the scenario marker.

param duration:

float Range: 0 to 1, Unit: sec

set_enable(enable: bool) None[source]
# SCPI: SCENario:OUTPut:MARKer:SCENario:ENABle
driver.scenario.output.marker.scenario.set_enable(enable = False)

Enables an additional marker, that is held high from the scenario start until the duration, selected with the command method RsPulseSeq.Scenario.Output.Marker.Scenario.duration.

param enable:

ON| OFF| 1| 0