Mlength

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:MLENgth
CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:MLENgth:ALL
class MlengthCls[source]

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

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

Sets the length of the evaluation interval used to measure a single set of current power results for the parameter set <Index>. The measurement length cannot be greater than the step length.

param index:

integer Range: 0 to 31

return:

meas_length: numeric Unit: s

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

Sets the length of the evaluation interval used to measure a single set of current power results, for all parameter sets. The measurement length cannot be greater than the step length.

return:

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

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

Sets the length of the evaluation interval used to measure a single set of current power results for the parameter set <Index>. The measurement length cannot be greater than the step length.

param index:

integer Range: 0 to 31

param meas_length:

numeric Unit: s

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

Sets the length of the evaluation interval used to measure a single set of current power results, for all parameter sets. The measurement length cannot be greater than the step length.

param meas_length:

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