Pstep

SCPI Command :

CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:PSTep
class PstepCls[source]

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

class PstepStruct[source]

Response structure. Fields:

  • Enable: bool: Disables | enables the limit check.

  • Step_0_Db: float: Limit for steps with expected step size 0 dB.

  • Step_1_Db: float: Limit for steps with expected step size ±1 dB.

  • Step_2_Db: float: Limit for steps with expected step size ±2 dB.

get() PstepStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:PSTep
value: PstepStruct = driver.configure.wcdmaMeas.tpc.limit.ilpControl.pstep.get()

Defines Inner Loop Power Control limits: upper limits for the absolute value of the power step error, depending on the expected step size. Also it enables or disables the limit check.

return:

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

set(enable: bool, step_0_db: float, step_1_db: float, step_2_db: float) None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:PSTep
driver.configure.wcdmaMeas.tpc.limit.ilpControl.pstep.set(enable = False, step_0_db = 1.0, step_1_db = 1.0, step_2_db = 1.0)

Defines Inner Loop Power Control limits: upper limits for the absolute value of the power step error, depending on the expected step size. Also it enables or disables the limit check.

param enable:

Disables | enables the limit check.

param step_0_db:

Limit for steps with expected step size 0 dB.

param step_1_db:

Limit for steps with expected step size ±1 dB.

param step_2_db:

Limit for steps with expected step size ±2 dB.