Irepetition

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:POWer:LIST:IREPetition
CONFigure:GPRF:MEASurement<Instance>:POWer:LIST:IREPetition:ALL
class IrepetitionCls[source]

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

get(index: int) int[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:LIST:IREPetition
value: int = driver.configure.power.listPy.irepetition.get(index = 1)

Configures the number of repetitions of segment <Index>. The total number of repetitions over all measured segments must not be higher than 10000.

param index:

integer Range: 0 to 3999

return:

repetition: numeric Range: 1 to 10000

get_all() List[int][source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:LIST:IREPetition:ALL
value: List[int] = driver.configure.power.listPy.irepetition.get_all()

Configures the number of repetitions for all segments. The total number of repetitions over all measured segments must not be higher than 10000.

return:

repetition: numeric Comma-separated list of repetitions, one value per segment Range: 1 to 10000

set(index: int, repetition: int) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:LIST:IREPetition
driver.configure.power.listPy.irepetition.set(index = 1, repetition = 1)

Configures the number of repetitions of segment <Index>. The total number of repetitions over all measured segments must not be higher than 10000.

param index:

integer Range: 0 to 3999

param repetition:

numeric Range: 1 to 10000

set_all(repetition: List[int]) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:LIST:IREPetition:ALL
driver.configure.power.listPy.irepetition.set_all(repetition = [1, 2, 3])

Configures the number of repetitions for all segments. The total number of repetitions over all measured segments must not be higher than 10000.

param repetition:

numeric Comma-separated list of repetitions, one value per segment Range: 1 to 10000