Average

SCPI Commands :

READ:NRSub:MEASurement<Instance>:SRS:PDYNamics:AVERage
FETCh:NRSub:MEASurement<Instance>:SRS:PDYNamics:AVERage
CALCulate:NRSub:MEASurement<Instance>:SRS:PDYNamics:AVERage
Commands in total: 3
Subgroups: 0
Direct child commands: 3
class CalculateStruct[source]

Response structure. Fields:

  • 1 Reliability: int: ‘Reliability indicator’

  • 2 Out_Of_Tolerance: int: Out of tolerance result, i.e. the percentage of measurement intervals of the statistic count for power dynamics measurements exceeding the specified power dynamics limits.

  • 3 Off_Power_Before: float | bool: OFF power mean value for the time period before SRS transmission.

  • 4 On_Power_Rms: float | bool: ON power mean value over the SRS transmission.

  • 5 On_Power_Peak: float | bool: ON power peak value for the SRS transmission

  • 6 Off_Power_After: float | bool: OFF power mean value for slot after SRS transmission.

class ResultData[source]

Response structure. Fields:

  • 1 Reliability: int: ‘Reliability indicator’

  • 2 Out_Of_Tolerance: int: Out of tolerance result, i.e. the percentage of measurement intervals of the statistic count for power dynamics measurements exceeding the specified power dynamics limits.

  • 3 Off_Power_Before: float: OFF power mean value for the time period before SRS transmission.

  • 4 On_Power_Rms: float: ON power mean value over the SRS transmission.

  • 5 On_Power_Peak: float: ON power peak value for the SRS transmission

  • 6 Off_Power_After: float: OFF power mean value for slot after SRS transmission.

calculate() CalculateStruct[source]
# CALCulate:NRSub:MEASurement<Instance>:SRS:PDYNamics:AVERage
value: CalculateStruct = driver.nrSubMeas.srs.pdynamics.average.calculate()

Return the current, average, minimum, maximum and standard deviation single-value results of the power dynamics measurement. The values described below are returned by FETCh and READ commands. A CALCulate command returns limit check results instead, one value for each result listed below.

Returns:

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

fetch() ResultData[source]
# FETCh:NRSub:MEASurement<Instance>:SRS:PDYNamics:AVERage
value: ResultData = driver.nrSubMeas.srs.pdynamics.average.fetch()

Return the current, average, minimum, maximum and standard deviation single-value results of the power dynamics measurement. The values described below are returned by FETCh and READ commands. A CALCulate command returns limit check results instead, one value for each result listed below.

Returns:

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

read() ResultData[source]
# READ:NRSub:MEASurement<Instance>:SRS:PDYNamics:AVERage
value: ResultData = driver.nrSubMeas.srs.pdynamics.average.read()

Return the current, average, minimum, maximum and standard deviation single-value results of the power dynamics measurement. The values described below are returned by FETCh and READ commands. A CALCulate command returns limit check results instead, one value for each result listed below.

Returns:

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