MultiEval

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:MEValuation:TOUT
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:MSCount
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:PSLot
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:SYNCh
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:MOEXception
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:SCONdition
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:REPetition
class MultiEval[source]

MultiEval commands group definition. 72 total commands, 11 Sub-groups, 7 group commands

get_mo_exception()bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:MOEXception
value: bool = driver.configure.multiEval.get_mo_exception()

Specifies whether measurement results that the R&S CMW identifies as faulty or inaccurate are rejected.

return

meas_on_exception: OFF | ON OFF: Faulty results are rejected. ON: Results are never rejected.

get_ms_count()int[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:MSCount
value: int = driver.configure.multiEval.get_ms_count()

Selects the total number of measured slots.

return

slot_count: decimal Range: 1 slot to 120 slots

get_pslot()int[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:PSLot
value: int = driver.configure.multiEval.get_pslot()

Selects the slot where the R&S CMW calculates the results of single slot measurements: ACLR, emission mask, EVM vs. chip, CD monitor. The number of the preselected slot must be smaller than the number of measured slots (method RsCmwWcdmaMeas. Configure.MultiEval.msCount) .

return

slot_number: integer Range: 0 to 119

get_repetition()RsCmwWcdmaMeas.enums.Repeat[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:REPetition
value: enums.Repeat = driver.configure.multiEval.get_repetition()

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single shot or repeated continuously. Use CONFigure:..:MEAS<i>:…:SCOunt to determine the number of measurement intervals per single shot.

return

repetition: SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

get_scondition()RsCmwWcdmaMeas.enums.StopCondition[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:SCONdition
value: enums.StopCondition = driver.configure.multiEval.get_scondition()

Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits.

return

stop_condition: NONE | SLFail NONE: Continue measurement irrespective of the limit check SLFail: Stop measurement on limit failure

get_synch()RsCmwWcdmaMeas.enums.SlotNumber[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:SYNCh
value: enums.SlotNumber = driver.configure.multiEval.get_synch()

Selects a slot number within the UL WCDMA frames (0 to 14) that the R&S CMW displays as the first slot in the measurement interval.

return

slot_number: ANY | SL1 | SL2 | SL3 | SL4 | SL5 | SL6 | SL7 | SL8 | SL9 | SL10 | SL11 | SL12 | SL13 | SL14 | SL0 ANY: No frame synchronization SL0 … SL14: First slot = slot 0 … slot 14

get_timeout()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:TOUT
value: float = driver.configure.multiEval.get_timeout()

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually ([ON | OFF] key or [RESTART | STOP] key) . When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

return

timeout: numeric Unit: s

set_mo_exception(meas_on_exception: bool)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:MOEXception
driver.configure.multiEval.set_mo_exception(meas_on_exception = False)

Specifies whether measurement results that the R&S CMW identifies as faulty or inaccurate are rejected.

param meas_on_exception

OFF | ON OFF: Faulty results are rejected. ON: Results are never rejected.

set_ms_count(slot_count: int)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:MSCount
driver.configure.multiEval.set_ms_count(slot_count = 1)

Selects the total number of measured slots.

param slot_count

decimal Range: 1 slot to 120 slots

set_pslot(slot_number: int)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:PSLot
driver.configure.multiEval.set_pslot(slot_number = 1)

Selects the slot where the R&S CMW calculates the results of single slot measurements: ACLR, emission mask, EVM vs. chip, CD monitor. The number of the preselected slot must be smaller than the number of measured slots (method RsCmwWcdmaMeas. Configure.MultiEval.msCount) .

param slot_number

integer Range: 0 to 119

set_repetition(repetition: RsCmwWcdmaMeas.enums.Repeat)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:REPetition
driver.configure.multiEval.set_repetition(repetition = enums.Repeat.CONTinuous)

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single shot or repeated continuously. Use CONFigure:..:MEAS<i>:…:SCOunt to determine the number of measurement intervals per single shot.

param repetition

SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

set_scondition(stop_condition: RsCmwWcdmaMeas.enums.StopCondition)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:SCONdition
driver.configure.multiEval.set_scondition(stop_condition = enums.StopCondition.NONE)

Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits.

param stop_condition

NONE | SLFail NONE: Continue measurement irrespective of the limit check SLFail: Stop measurement on limit failure

set_synch(slot_number: RsCmwWcdmaMeas.enums.SlotNumber)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:SYNCh
driver.configure.multiEval.set_synch(slot_number = enums.SlotNumber.ANY)

Selects a slot number within the UL WCDMA frames (0 to 14) that the R&S CMW displays as the first slot in the measurement interval.

param slot_number

ANY | SL1 | SL2 | SL3 | SL4 | SL5 | SL6 | SL7 | SL8 | SL9 | SL10 | SL11 | SL12 | SL13 | SL14 | SL0 ANY: No frame synchronization SL0 … SL14: First slot = slot 0 … slot 14

set_timeout(timeout: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:TOUT
driver.configure.multiEval.set_timeout(timeout = 1.0)

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually ([ON | OFF] key or [RESTART | STOP] key) . When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

param timeout

numeric Unit: s

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.clone()

Subgroups