Double

SCPI Commands :

[SOURce<HW>]:PULM:DOUBle:DELay
[SOURce<HW>]:PULM:DOUBle:STATe
[SOURce<HW>]:PULM:DOUBle:WIDTh
Commands in total: 3
Subgroups: 0
Direct child commands: 3
get_delay() float[source]
# [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.

Returns:

delay: float

get_state() bool[source]
# [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 method RsSmbv.source.pulm.mode() DOUBle.

Returns:

state: 1 | ON | 0| OFF

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

Sets the width of the second pulse.

Returns:

width: float

set_delay(delay: float) None[source]
# [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.

Parameters:

delay – float

set_state(state: bool) None[source]
# [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 method RsSmbv.source.pulm.mode() DOUBle.

Parameters:

state – 1 | ON | 0| OFF

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

Sets the width of the second pulse.

Parameters:

width – float