Current

SCPI Commands :

READ:LTE:MEASurement<Instance>:SRS:PDYNamics:CURRent
FETCh:LTE:MEASurement<Instance>:SRS:PDYNamics:CURRent
CALCulate:LTE:MEASurement<Instance>:SRS:PDYNamics:CURRent
class CurrentCls[source]

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

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

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

  • Off_Power_Before: float or bool: float OFF power mean value for time period before SRS symbol Unit: dBm

  • On_Power_Rms_1: float or bool: float ON power mean value over the first SRS symbol Unit: dBm

  • On_Power_Peak_1: float or bool: float ON power peak value for the first SRS symbol Unit: dBm

  • On_Power_Rms_2: float or bool: float ON power mean value over the second SRS symbol (NCAP returned for FDD) Unit: dBm

  • On_Power_Peak_2: float or bool: float ON power peak value for the second SRS symbol (NCAP returned for FDD) Unit: dBm

  • Off_Power_After: float or bool: float OFF power mean value for subframe after SRS symbol Unit: dBm

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability indicator’

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

  • Off_Power_Before: float: float OFF power mean value for time period before SRS symbol Unit: dBm

  • On_Power_Rms_1: float: float ON power mean value over the first SRS symbol Unit: dBm

  • On_Power_Peak_1: float: float ON power peak value for the first SRS symbol Unit: dBm

  • On_Power_Rms_2: float: float ON power mean value over the second SRS symbol (NCAP returned for FDD) Unit: dBm

  • On_Power_Peak_2: float: float ON power peak value for the second SRS symbol (NCAP returned for FDD) Unit: dBm

  • Off_Power_After: float: float OFF power mean value for subframe after SRS symbol Unit: dBm

calculate() CalculateStruct[source]
# SCPI: CALCulate:LTE:MEASurement<Instance>:SRS:PDYNamics:CURRent
value: CalculateStruct = driver.srs.pdynamics.current.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. 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:LTE:MEASurement<Instance>:SRS:PDYNamics:CURRent
value: ResultData = driver.srs.pdynamics.current.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. 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:LTE:MEASurement<Instance>:SRS:PDYNamics:CURRent
value: ResultData = driver.srs.pdynamics.current.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. 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.