Dtime

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:LIST:DTIMe
SOURce:GPRF:GENerator<Instance>: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>:LIST:DTIMe
value: float = driver.source.listPy.dtime.get(index = 1)

Defines or queries the transmission time for a selected frequency/level step in ‘Dwell Time’ mode. The value is not used in the other list modes (see method RsCmwGprfGen.Source.ListPy.Increment.value) .

param index:

integer Number of the frequency/level step in the table. Range: 0 to 1999

return:

dwell_time: numeric Dwell time for the frequency/level step. Range: 200E-6 s to 10 s, Unit: s

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

Defines the transmission times for all frequency/level steps in ‘Dwell Time’ mode. The value is not used in the other list modes (see method RsCmwGprfGen.Source.ListPy.Increment.value) .

return:

all_dwelltimes: numeric Comma-separated list of n values, one per frequency/level step, where n 2001. The query returns 2000 results. Range: 200E-6 s to 10 s, Unit: s

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

Defines or queries the transmission time for a selected frequency/level step in ‘Dwell Time’ mode. The value is not used in the other list modes (see method RsCmwGprfGen.Source.ListPy.Increment.value) .

param index:

integer Number of the frequency/level step in the table. Range: 0 to 1999

param dwell_time:

numeric Dwell time for the frequency/level step. Range: 200E-6 s to 10 s, Unit: s

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

Defines the transmission times for all frequency/level steps in ‘Dwell Time’ mode. The value is not used in the other list modes (see method RsCmwGprfGen.Source.ListPy.Increment.value) .

param all_dwelltimes:

numeric Comma-separated list of n values, one per frequency/level step, where n 2001. The query returns 2000 results. Range: 200E-6 s to 10 s, Unit: s