Lrms

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:LRMS
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:LRMS:ALL
class LrmsCls[source]

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

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

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

param index:

integer

return:

level_rms: numeric Range: Please notice the ranges quoted in the data sheet. , Unit: dBm

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

Defines the level for all sequencer list entries.

return:

level_rms: numeric Comma-separated list of values, one value per list entry Range: Please notice the ranges quoted in the data sheet. , Unit: dBm

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

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

param index:

integer

param level_rms:

numeric Range: Please notice the ranges quoted in the data sheet. , Unit: dBm

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

Defines the level for all sequencer list entries.

param level_rms:

numeric Comma-separated list of values, one value per list entry Range: Please notice the ranges quoted in the data sheet. , Unit: dBm