Maximum

SCPI Commands :

READ:WLAN:MEASurement<Instance>:MEValuation:TSMask:MAXimum
FETCh:WLAN:MEASurement<Instance>:MEValuation:TSMask:MAXimum
CALCulate:WLAN:MEASurement<Instance>:MEValuation:TSMask:MAXimum
class MaximumCls[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

  • Out_Of_Tol: enums.ResultStatus2: float Out of tolerance result, i.e. percentage of measurement intervals of the statistic count for spectrum emission measurements exceeding the specified transmit spectrum mask limits.

  • Margin: List[enums.ResultStatus2]: float Comma-separated list of margin values, one value per spectrum mask area The number of margin values depends on the selected standard, see Table ‘Spectrum mask areas’. Range: -100 dB to 100 dB, Unit: dB

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

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

  • Margin: List[float]: float Comma-separated list of margin values, one value per spectrum mask area The number of margin values depends on the selected standard, see Table ‘Spectrum mask areas’. Range: -100 dB to 100 dB, Unit: dB

calculate() CalculateStruct[source]
# SCPI: CALCulate:WLAN:MEASurement<Instance>:MEValuation:TSMask:MAXimum
value: CalculateStruct = driver.multiEval.tsMask.maximum.calculate()

Return the limit line margin values of the transmit spectrum mask for SISO measurements and bandwidths with one segment. Margins for the current, average, minimum and maximum traces are returned. A positive result indicates that the trace is located above the limit line. The limit is exceeded. 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:WLAN:MEASurement<Instance>:MEValuation:TSMask:MAXimum
value: ResultData = driver.multiEval.tsMask.maximum.fetch()

Return the limit line margin values of the transmit spectrum mask for SISO measurements and bandwidths with one segment. Margins for the current, average, minimum and maximum traces are returned. A positive result indicates that the trace is located above the limit line. The limit is exceeded. 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:WLAN:MEASurement<Instance>:MEValuation:TSMask:MAXimum
value: ResultData = driver.multiEval.tsMask.maximum.read()

Return the limit line margin values of the transmit spectrum mask for SISO measurements and bandwidths with one segment. Margins for the current, average, minimum and maximum traces are returned. A positive result indicates that the trace is located above the limit line. The limit is exceeded. 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.