Current

SCPI Commands :

READ:LTE:MEASurement<Instance>:MEValuation:ACLR:CURRent
FETCh:LTE:MEASurement<Instance>:MEValuation:ACLR:CURRent
CALCulate:LTE:MEASurement<Instance>:MEValuation:ACLR: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’

  • Utra_2_Neg: enums.ResultStatus2: ACLR for the second UTRA channel with lower frequency

  • Utra_1_Neg: enums.ResultStatus2: ACLR for the first UTRA channel with lower frequency

  • Eutra_Negativ: enums.ResultStatus2: ACLR for the first E-UTRA channel with lower frequency

  • Eutra: enums.ResultStatus2: Power in the allocated E-UTRA channel

  • Eutra_Positiv: enums.ResultStatus2: ACLR for the first E-UTRA channel with higher frequency

  • Utra_1_Pos: enums.ResultStatus2: ACLR for the first UTRA channel with higher frequency

  • Utra_2_Pos: enums.ResultStatus2: ACLR for the second UTRA channel with higher frequency

class ResultData[source]

Response structure. Fields:

  • Reliability: int: ‘Reliability indicator’

  • Utra_2_Neg: float: ACLR for the second UTRA channel with lower frequency

  • Utra_1_Neg: float: ACLR for the first UTRA channel with lower frequency

  • Eutra_Negativ: float: ACLR for the first E-UTRA channel with lower frequency

  • Eutra: float: Power in the allocated E-UTRA channel

  • Eutra_Positiv: float: ACLR for the first E-UTRA channel with higher frequency

  • Utra_1_Pos: float: ACLR for the first UTRA channel with higher frequency

  • Utra_2_Pos: float: ACLR for the second UTRA channel with higher frequency

calculate() CalculateStruct[source]
# SCPI: CALCulate:LTE:MEASurement<Instance>:MEValuation:ACLR:CURRent
value: CalculateStruct = driver.lteMeas.multiEval.aclr.current.calculate()

Returns the relative ACLR values as displayed in the table below the ACLR diagram. The current and average values can be retrieved. See also ‘Square Spectrum ACLR’. 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>:MEValuation:ACLR:CURRent
value: ResultData = driver.lteMeas.multiEval.aclr.current.fetch()

Returns the relative ACLR values as displayed in the table below the ACLR diagram. The current and average values can be retrieved. See also ‘Square Spectrum ACLR’. 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>:MEValuation:ACLR:CURRent
value: ResultData = driver.lteMeas.multiEval.aclr.current.read()

Returns the relative ACLR values as displayed in the table below the ACLR diagram. The current and average values can be retrieved. See also ‘Square Spectrum ACLR’. 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.