Slength

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth
CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth:ALL
class SlengthCls[source]

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

get(index: int) float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth
value: float = driver.configure.power.parameterSetList.slength.get(index = 1)

Selects the time between the beginning of two consecutive measurement lengths for the parameter set <Index>.

param index:

integer Range: 0 to 31

return:

step_length: numeric Range: MeasLength to 1 s, Unit: s

get_all() List[float][source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth:ALL
value: List[float] = driver.configure.power.parameterSetList.slength.get_all()

Selects the time between the beginning of two consecutive measurement lengths for all parameter sets.

return:

step_length: numeric Comma-separated list of 32 values, for parameter set 0 to 31 Range: MeasLength to 1 s, Unit: s

set(index: int, step_length: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth
driver.configure.power.parameterSetList.slength.set(index = 1, step_length = 1.0)

Selects the time between the beginning of two consecutive measurement lengths for the parameter set <Index>.

param index:

integer Range: 0 to 31

param step_length:

numeric Range: MeasLength to 1 s, Unit: s

set_all(step_length: List[float]) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth:ALL
driver.configure.power.parameterSetList.slength.set_all(step_length = [1.1, 2.2, 3.3])

Selects the time between the beginning of two consecutive measurement lengths for all parameter sets.

param step_length:

numeric Comma-separated list of 32 values, for parameter set 0 to 31 Range: MeasLength to 1 s, Unit: s