Current

SCPI Commands

READ:WCDMa:MEASurement<Instance>:PRACh:TRACe:IQ:CURRent
FETCh:WCDMa:MEASurement<Instance>:PRACh:TRACe:IQ:CURRent
class Current[source]

Current commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ResultData[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Iphase: List[float]: float I amplitude of a constellation point Range: -5 to 5

  • Qphase: List[float]: float Q amplitude of a constellation point Range: -5 to 5

fetch()ResultData[source]
# SCPI: FETCh:WCDMa:MEASurement<instance>:PRACh:TRACe:IQ:CURRent
value: ResultData = driver.prach.trace.iq.current.fetch()

Returns the results in the I/Q constellation diagram, see also ‘Detailed Views: I/Q Constellation Diagram’. The constellation points are returned as pairs of I and Q values: <Reliability>, <Iphase>1, <Qphase>1, …, <Iphase>3904, <Qphase>3904

return

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

read()ResultData[source]
# SCPI: READ:WCDMa:MEASurement<instance>:PRACh:TRACe:IQ:CURRent
value: ResultData = driver.prach.trace.iq.current.read()

Returns the results in the I/Q constellation diagram, see also ‘Detailed Views: I/Q Constellation Diagram’. The constellation points are returned as pairs of I and Q values: <Reliability>, <Iphase>1, <Qphase>1, …, <Iphase>3904, <Qphase>3904

return

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