PowerVsTime

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:BRATe:PVTime
class PowerVsTimeCls[source]

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

class PowerVsTimeStruct[source]

Response structure. Fields:

  • Nom_Pow_Lower: float: numeric Range: -99.99 dBm to 99.99 dBm

  • Nom_Pow_Upper: float: numeric Range: -99.99 dBm to 99.99 dBm

  • Peak_Pow_Upper: float: numeric Range: -99.99 dBm to 99.99 dBm

  • Nom_Pow_Enabled: List[bool]: OFF | ON Disables or enables the limit check for the average power, 4 values, corresponding to the current, average, maximum and minimum results.

  • Peak_Pow_Enabled: List[bool]: OFF | ON Disables or enables the limit check for the peak power, 4 values, corresponding to the current, average, maximum and minimum results.

get() PowerVsTimeStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:BRATe:PVTime
value: PowerVsTimeStruct = driver.configure.multiEval.limit.brate.powerVsTime.get()

Defines the power limits for BR: lower and upper average power limits, upper peak power limit, limit check enabling.

return:

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

set(nom_pow_lower: float, nom_pow_upper: float, peak_pow_upper: float, nom_pow_enabled: List[bool], peak_pow_enabled: List[bool]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:BRATe:PVTime
driver.configure.multiEval.limit.brate.powerVsTime.set(nom_pow_lower = 1.0, nom_pow_upper = 1.0, peak_pow_upper = 1.0, nom_pow_enabled = [True, False, True], peak_pow_enabled = [True, False, True])

Defines the power limits for BR: lower and upper average power limits, upper peak power limit, limit check enabling.

param nom_pow_lower:

numeric Range: -99.99 dBm to 99.99 dBm

param nom_pow_upper:

numeric Range: -99.99 dBm to 99.99 dBm

param peak_pow_upper:

numeric Range: -99.99 dBm to 99.99 dBm

param nom_pow_enabled:

OFF | ON Disables or enables the limit check for the average power, 4 values, corresponding to the current, average, maximum and minimum results.

param peak_pow_enabled:

OFF | ON Disables or enables the limit check for the peak power, 4 values, corresponding to the current, average, maximum and minimum results.