FreqError

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:RFCarrier:FERRor
class FreqErrorCls[source]

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

class FreqErrorStruct[source]

Response structure. Fields:

  • Enable_Limit: 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: -50 kHz to 0 Hz, Unit: Hz

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

get() FreqErrorStruct[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:RFCarrier:FERRor
value: FreqErrorStruct = driver.configure.afRf.measurement.multiEval.limit.rfCarrier.freqError.get()

Configures limits for the measured RF carrier frequency error. The upper and lower limits have the same absolute value but different signs.

return:

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

set(enable_limit: bool, lower: float = None, upper: float = None) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:LIMit:RFCarrier:FERRor
driver.configure.afRf.measurement.multiEval.limit.rfCarrier.freqError.set(enable_limit = False, lower = 1.0, upper = 1.0)

Configures limits for the measured RF carrier frequency error. The upper and lower limits have the same absolute value but different signs.

param enable_limit:

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: -50 kHz to 0 Hz, Unit: Hz

param upper:

A query returns the upper limit. A setting ignores this parameter. Range: 0 Hz to 50 kHz, Unit: Hz