Maximum

SCPI Commands :

READ:LTE:MEASurement<Instance>:PRACh:EVMSymbol:PEAK:MAXimum
FETCh:LTE:MEASurement<Instance>:PRACh:EVMSymbol:PEAK:MAXimum
class MaximumCls[source]

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Low: List[float]: EVM value for low EVM window position.

  • High: List[float]: EVM value for high EVM window position.

fetch() ResultData[source]
# SCPI: FETCh:LTE:MEASurement<Instance>:PRACh:EVMSymbol:PEAK:MAXimum
value: ResultData = driver.lteMeas.prach.evmSymbol.peak.maximum.fetch()

Returns the values of the EVM peak diagrams for the OFDM symbols in the measured preamble. The results of the current, average and maximum diagrams can be retrieved. There is one pair of EVM values per OFDM symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1 If the preamble contains only one symbol, NCAPs are returned for the remaining symbol. See also ‘Square EVM vs Symbol’.

return:

structure: for return value, see the help for ResultData structure arguments.

read() ResultData[source]
# SCPI: READ:LTE:MEASurement<Instance>:PRACh:EVMSymbol:PEAK:MAXimum
value: ResultData = driver.lteMeas.prach.evmSymbol.peak.maximum.read()

Returns the values of the EVM peak diagrams for the OFDM symbols in the measured preamble. The results of the current, average and maximum diagrams can be retrieved. There is one pair of EVM values per OFDM symbol, returned in the following order: <Reliability>, {<Low>, <High>}symbol 0, {<Low>, <High>}symbol 1 If the preamble contains only one symbol, NCAPs are returned for the remaining symbol. See also ‘Square EVM vs Symbol’.

return:

structure: for return value, see the help for ResultData structure arguments.