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.gprf.measurement.power.parameterSetList.slength.get(index = 1)

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

param index:

No help available

return:

step_length: No help available

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

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

return:

step_length: Comma-separated list of 32 values, for parameter set 0 to 31.

set(index: int, step_length: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth
driver.configure.gprf.measurement.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:

No help available

param step_length:

No help available

set_all(step_length: List[float]) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:SLENgth:ALL
driver.configure.gprf.measurement.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:

Comma-separated list of 32 values, for parameter set 0 to 31.