Double

SCPI Commands :

[SOURce<HW>]:PULM:DOUBle:DELay
[SOURce<HW>]:PULM:DOUBle:STATe
[SOURce<HW>]:PULM:DOUBle:WIDTh
class DoubleCls[source]

Double commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_delay() float[source]
# SCPI: [SOURce<HW>]:PULM:DOUBle:DELay
value: float = driver.source.pulm.double.get_delay()

Sets the delay from the start of the first pulse to the start of the second pulse.

return

delay: float

get_state() bool[source]
# SCPI: [SOURce<HW>]:PULM:DOUBle:STATe
value: bool = driver.source.pulm.double.get_state()

Provided for backward compatibility with former Rohde & Schwarz signal generators. Works like the command [:SOURce<hw>]:PULM:MODEDOUBle.

return

state: 1| ON| 0| OFF

get_width() float[source]
# SCPI: [SOURce<HW>]:PULM:DOUBle:WIDTh
value: float = driver.source.pulm.double.get_width()

Sets the width of the second pulse.

return

width: float

set_delay(delay: float) None[source]
# SCPI: [SOURce<HW>]:PULM:DOUBle:DELay
driver.source.pulm.double.set_delay(delay = 1.0)

Sets the delay from the start of the first pulse to the start of the second pulse.

param delay

float

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:PULM:DOUBle:STATe
driver.source.pulm.double.set_state(state = False)

Provided for backward compatibility with former Rohde & Schwarz signal generators. Works like the command [:SOURce<hw>]:PULM:MODEDOUBle.

param state

1| ON| 0| OFF

set_width(width: float) None[source]
# SCPI: [SOURce<HW>]:PULM:DOUBle:WIDTh
driver.source.pulm.double.set_width(width = 1.0)

Sets the width of the second pulse.

param width

float