Double

SCPI Commands :

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

Double commands group definition. 2 total commands, 0 Subgroups, 2 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_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_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