Peak

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:PDEViation:PEAK
class PeakCls[source]

Peak commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class PeakStruct[source]

Response structure. Fields:

  • Enable: bool: OFF | ON Enables or disables the limit check

  • Lower: float: A query returns the lower limit. A setting applies the absolute value to the upper limit and the absolute value plus a negative sign to the lower limit. Range: -10 rad to 0 rad, Unit: rad

  • Upper: float: A query returns the upper limit. A setting ignores this parameter. Range: 0 rad to 10 rad, Unit: rad

get() PeakStruct[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:PDEViation:PEAK
value: PeakStruct = driver.configure.afRf.measurement.multiEval.limit.demodulation.pdeviation.peak.get()

Configures limits for the phase deviation results ‘+Peak’ and ‘-Peak’, measured for PM. The upper and lower limits have the same absolute value but different signs.

return:

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

set(enable: bool, lower: float = None, upper: float = None) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:DEModulation:PDEViation:PEAK
driver.configure.afRf.measurement.multiEval.limit.demodulation.pdeviation.peak.set(enable = False, lower = 1.0, upper = 1.0)

Configures limits for the phase deviation results ‘+Peak’ and ‘-Peak’, measured for PM. The upper and lower limits have the same absolute value but different signs.

param enable:

OFF | ON Enables or disables the limit check

param lower:

A query returns the lower limit. A setting applies the absolute value to the upper limit and the absolute value plus a negative sign to the lower limit. Range: -10 rad to 0 rad, Unit: rad

param upper:

A query returns the upper limit. A setting ignores this parameter. Range: 0 rad to 10 rad, Unit: rad