Current

SCPI Commands :

READ:NIOT:MEASurement<Instance>:MEValuation:SEMask:CURRent
FETCh:NIOT:MEASurement<Instance>:MEValuation:SEMask:CURRent
CALCulate:NIOT:MEASurement<Instance>:MEValuation:SEMask:CURRent
class CurrentCls[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Out_Of_Tolerance: int: Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for spectrum emission measurements exceeding the specified spectrum emission mask limits.

  • Obw: enums.ResultStatus2: Occupied bandwidth

  • Tx_Power: enums.ResultStatus2: Total TX power within 400 kHz

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Out_Of_Tolerance: int: Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for spectrum emission measurements exceeding the specified spectrum emission mask limits.

  • Obw: float: Occupied bandwidth

  • Tx_Power: float: Total TX power within 400 kHz

calculate() CalculateStruct[source]
# SCPI: CALCulate:NIOT:MEASurement<Instance>:MEValuation:SEMask:CURRent
value: CalculateStruct = driver.niotMeas.multiEval.seMask.current.calculate()

Return the current, average and standard deviation single value results of the spectrum emission measurement. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

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

fetch() ResultData[source]
# SCPI: FETCh:NIOT:MEASurement<Instance>:MEValuation:SEMask:CURRent
value: ResultData = driver.niotMeas.multiEval.seMask.current.fetch()

Return the current, average and standard deviation single value results of the spectrum emission measurement. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

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

read() ResultData[source]
# SCPI: READ:NIOT:MEASurement<Instance>:MEValuation:SEMask:CURRent
value: ResultData = driver.niotMeas.multiEval.seMask.current.read()

Return the current, average and standard deviation single value results of the spectrum emission measurement. The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

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