Current

SCPI Commands :

READ:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:CURRent
FETCh:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:CURRent
class CurrentCls[source]

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

class ResultData[source]

Response structure. Fields:

  • Reliability: int: See ‘Reliability indicator’

  • Frequency: List[float]: Frequency of the detected peak

  • Level: List[float]: Level of the detected peak

fetch() ResultData[source]
# SCPI: FETCh:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:CURRent
value: ResultData = driver.gprf.measurement.fftSpecAn.peaks.current.fetch()

Returns the results of the peak search in the spectrum diagram. Separate commands retrieve results for the current trace and for the average trace. The results are returned in the following order: <Reliability>, {<Frequency>, <Level>}marker 0, …, {<Frequency>, <Level>}marker 4

return:

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

read() ResultData[source]
# SCPI: READ:GPRF:MEASurement<Instance>:FFTSanalyzer:PEAKs:CURRent
value: ResultData = driver.gprf.measurement.fftSpecAn.peaks.current.read()

Returns the results of the peak search in the spectrum diagram. Separate commands retrieve results for the current trace and for the average trace. The results are returned in the following order: <Reliability>, {<Frequency>, <Level>}marker 0, …, {<Frequency>, <Level>}marker 4

return:

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