ListPy

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:STARt
CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:STOP
CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:COUNt
CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST
class ListPyCls[source]

ListPy commands group definition. 11 total commands, 4 Subgroups, 4 group commands

get_count() int[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:COUNt
value: int = driver.configure.gprf.measurement.iqVsSlot.listPy.get_count()

Queries the number of subsweeps per sweep. The total number of steps must not exceed 3000 (step count times number of subsweeps) .

return:

sweep_count: No help available

get_start() int[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:STARt
value: int = driver.configure.gprf.measurement.iqVsSlot.listPy.get_start()

Selects the first subsweep to be measured. The <StartIndex> must not be greater than the <StopIndex>. The total number of steps must not exceed 3000 (step count times number of subsweeps) .

return:

start_index: No help available

get_stop() int[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:STOP
value: int = driver.configure.gprf.measurement.iqVsSlot.listPy.get_stop()

Selects the last subsweep to be measured. The <StopIndex> must not be smaller than the <StartIndex>. The total number of steps must not exceed 3000 (step count times number of subsweeps) .

return:

stop_index: No help available

get_value() bool[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST
value: bool = driver.configure.gprf.measurement.iqVsSlot.listPy.get_value()

Enables or disables the list mode for the I/Q vs slot measurement.

return:

list_mode: OFF: list mode off ON: list mode on

set_start(start_index: int) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:STARt
driver.configure.gprf.measurement.iqVsSlot.listPy.set_start(start_index = 1)

Selects the first subsweep to be measured. The <StartIndex> must not be greater than the <StopIndex>. The total number of steps must not exceed 3000 (step count times number of subsweeps) .

param start_index:

No help available

set_stop(stop_index: int) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST:STOP
driver.configure.gprf.measurement.iqVsSlot.listPy.set_stop(stop_index = 1)

Selects the last subsweep to be measured. The <StopIndex> must not be smaller than the <StartIndex>. The total number of steps must not exceed 3000 (step count times number of subsweeps) .

param stop_index:

No help available

set_value(list_mode: bool) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:IQVSlot:LIST
driver.configure.gprf.measurement.iqVsSlot.listPy.set_value(list_mode = False)

Enables or disables the list mode for the I/Q vs slot measurement.

param list_mode:

OFF: list mode off ON: list mode on

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.gprf.measurement.iqVsSlot.listPy.clone()

Subgroups