Current

SCPI Commands :

READ:NRSub:MEASurement<Instance>:PRACh:EVMSymbol:CURRent
FETCh:NRSub:MEASurement<Instance>:PRACh:EVMSymbol:CURRent
CALCulate:NRSub:MEASurement<Instance>:PRACh:EVMSymbol:CURRent
class CurrentCls[source]

Current commands group definition. 3 total commands, 0 Subgroups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: No parameter help available

  • Low: List[enums.ResultStatus2]: No parameter help available

  • High: List[enums.ResultStatus2]: No parameter help available

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.

calculate() CalculateStruct[source]
# SCPI: CALCulate:NRSub:MEASurement<Instance>:PRACh:EVMSymbol:CURRent
value: CalculateStruct = driver.nrSubMeas.prach.evmSymbol.current.calculate()

No command help available

return:

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

fetch() ResultData[source]
# SCPI: FETCh:NRSub:MEASurement<Instance>:PRACh:EVMSymbol:CURRent
value: ResultData = driver.nrSubMeas.prach.evmSymbol.current.fetch()

Returns the values of the EVM RMS 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 11 If the preamble contains fewer than 12 symbols, NCAPs are returned for the remaining symbols. See also ‘Square EVM vs Symbol’.

return:

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

read() ResultData[source]
# SCPI: READ:NRSub:MEASurement<Instance>:PRACh:EVMSymbol:CURRent
value: ResultData = driver.nrSubMeas.prach.evmSymbol.current.read()

Returns the values of the EVM RMS 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 11 If the preamble contains fewer than 12 symbols, NCAPs are returned for the remaining symbols. See also ‘Square EVM vs Symbol’.

return:

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