Pcontrol

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIMit:PCONtrol:HSDPcch
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIMit:PCONtrol:EPSTep
class Pcontrol[source]

Pcontrol commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class EpStepStruct[source]

Structure for reading output parameters. Fields:

  • Expected_0_Db: float: numeric Tolerance value for power step size 0 dB Range: 0 dB to 5 dB, Unit: dB

  • Expected_1_Db: float: numeric Tolerance value for power step size 1 dB Range: 0 dB to 5 dB, Unit: dB

  • Expected_2_Db: float: numeric Tolerance value for power step size 2 dB Range: 0 dB to 5 dB, Unit: dB

  • Expected_3_Db: float: numeric Tolerance value for power step size 3 dB Range: 0 dB to 5 dB, Unit: dB

  • Expected_4_To_7_Db: float: numeric Tolerance value for power step size 4 dB to 7 dB Range: 0 dB to 5 dB, Unit: dB

class HsdpcchStruct[source]

Structure for reading output parameters. Fields:

  • Enable: bool: OFF | ON Disables | enables the limit check

  • Dtx_To_Nack: float: numeric Range: -10 dB to 10 dB, Unit: dB

  • Nack_To_Cqi: float: numeric Range: -10 dB to 10 dB, Unit: dB

  • Cqi_To_Dtx: float: numeric Range: -10 dB to 10 dB, Unit: dB

  • Test_Case: enums.TestCase: T0DB | T1DB T0DB: measurement below maximum UE power with TPC command = 0 dB T1DB: measurement at maximum UE power with TPC command = 1 dB

get_ep_step()EpStepStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:PCONtrol:EPSTep
value: EpStepStruct = driver.configure.multiEval.limit.pcontrol.get_ep_step()

Defines tolerance values (‘Expected Power Step Limits’) depending on the nominal power step size.

return

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

get_hsdpcch()HsdpcchStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:PCONtrol:HSDPcch
value: HsdpcchStruct = driver.configure.multiEval.limit.pcontrol.get_hsdpcch()

Defines nominal power steps for the HS-DPCCH limit set. Measurements at maximum UE power and below maximum UE power are supported. Separate values can be defined for the boundaries DTX > (N) ACK, (N) ACK > CQI and CQI > DTX. Also the limit check can be enabled or disabled. See also ‘Power Control Limits’

return

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

set_ep_step(value: RsCmwWcdmaMeas.Implementations.Configure_.MultiEval_.Limit_.Pcontrol.Pcontrol.EpStepStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:PCONtrol:EPSTep
driver.configure.multiEval.limit.pcontrol.set_ep_step(value = EpStepStruct())

Defines tolerance values (‘Expected Power Step Limits’) depending on the nominal power step size.

param value

see the help for EpStepStruct structure arguments.

set_hsdpcch(value: RsCmwWcdmaMeas.Implementations.Configure_.MultiEval_.Limit_.Pcontrol.Pcontrol.HsdpcchStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIMit:PCONtrol:HSDPcch
driver.configure.multiEval.limit.pcontrol.set_hsdpcch(value = HsdpcchStruct())

Defines nominal power steps for the HS-DPCCH limit set. Measurements at maximum UE power and below maximum UE power are supported. Separate values can be defined for the boundaries DTX > (N) ACK, (N) ACK > CQI and CQI > DTX. Also the limit check can be enabled or disabled. See also ‘Power Control Limits’

param value

see the help for HsdpcchStruct structure arguments.