Increment

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:LIST:INCRement:CATalog
SOURce:GPRF:GENerator<Instance>:LIST:INCRement
class IncrementCls[source]

Increment commands group definition. 4 total commands, 1 Subgroups, 2 group commands

get_catalog() List[str][source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:INCRement:CATalog
value: List[str] = driver.source.listPy.increment.get_catalog()

Lists all list increment modes that can be set using method RsCmwGprfGen.Source.ListPy.Increment.value.

return:

list_incr_srcs: string Comma-separated list of strings. Each string represents a supported increment mode.

get_value() str[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:INCRement
value: str = driver.source.listPy.increment.get_value()

Defines how the RF generator steps through the list.

return:

list_incr_src: string Source for the list increment. Examples: ‘Dwell Time’ The generator transmits at each frequency/level step for the selected dwell time (method RsCmwGprfGen.Source.ListPy.Dtime.set) . ‘GPRF Geni: some marker’ List incremented by a marker in the played-back ARB file (only for baseband mode ARB, see method RsCmwGprfGen.Source.bbMode) . ‘Some measurement’ (e.g. ‘GPRF Measi: Power’) List incremented in line with a running measurement. Use method RsCmwGprfGen.Source.ListPy.Increment.catalog to query the list of possible sources for the current HW/SW configuration.

set_value(list_incr_src: str) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:LIST:INCRement
driver.source.listPy.increment.set_value(list_incr_src = 'abc')

Defines how the RF generator steps through the list.

param list_incr_src:

string Source for the list increment. Examples: ‘Dwell Time’ The generator transmits at each frequency/level step for the selected dwell time (method RsCmwGprfGen.Source.ListPy.Dtime.set) . ‘GPRF Geni: some marker’ List incremented by a marker in the played-back ARB file (only for baseband mode ARB, see method RsCmwGprfGen.Source.bbMode) . ‘Some measurement’ (e.g. ‘GPRF Measi: Power’) List incremented in line with a running measurement. Use method RsCmwGprfGen.Source.ListPy.Increment.catalog to query the list of possible sources for the current HW/SW configuration.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.listPy.increment.clone()

Subgroups