Dtime

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:DTIMe
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:DTIMe:ALL
class DtimeCls[source]

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

get(index: int) float[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:DTIMe
value: float = driver.source.sequencer.listPy.dtime.get(index = 1)

Defines or queries the dwell time for the sequencer list entry with the selected <Index>.

param index:

integer

return:

dwell_time: numeric Range: 200E-6 s to 20 s, Unit: s

get_all() List[float][source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:DTIMe:ALL
value: List[float] = driver.source.sequencer.listPy.dtime.get_all()

Defines the dwell times for all sequencer list entries.

return:

dwell_time: numeric Comma-separated list of values, one value per list entry Range: 200E-6 s to 20 s, Unit: s

set(index: int, dwell_time: float) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:DTIMe
driver.source.sequencer.listPy.dtime.set(index = 1, dwell_time = 1.0)

Defines or queries the dwell time for the sequencer list entry with the selected <Index>.

param index:

integer

param dwell_time:

numeric Range: 200E-6 s to 20 s, Unit: s

set_all(dwell_time: List[float]) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:DTIMe:ALL
driver.source.sequencer.listPy.dtime.set_all(dwell_time = [1.1, 2.2, 3.3])

Defines the dwell times for all sequencer list entries.

param dwell_time:

numeric Comma-separated list of values, one value per list entry Range: 200E-6 s to 20 s, Unit: s