Pcontrol

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol:PSTep
CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol:OLPower
CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol:OFFPower
class Pcontrol[source]

Pcontrol commands group definition. 7 total commands, 1 Sub-groups, 3 group commands

class OlPowerStruct[source]

Structure for reading output parameters. Fields:

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

  • Init_Preamble_Pwr: float: numeric Initial preamble power Range: -50 dBm to 34 dBm, Unit: dBm

  • Olp_Limit: float: numeric Open loop power tolerance value Range: 0 dB to 15 dB, Unit: dB

class PstepStruct[source]

Structure for reading output parameters. Fields:

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

  • Preamble_Pwr_Step: float: numeric Expected preamble power step size Range: 0 dB to 15 dB, Unit: dB

  • Pwr_Step_Limit: float: numeric Preamble power step tolerance value Range: 0 dB to 15 dB, Unit: dB

get_off_power()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:OFFPower
value: float or bool = driver.configure.prach.limit.pcontrol.get_off_power()

Defines an upper OFF power limit. Also enables or disables the limit check.

return

limit: numeric | ON | OFF Range: -90 dBm to 53 dBm, Unit: dBm Additional parameters: OFF | ON (disables the limit check | enables the limit check using the previous/default limit values)

get_ol_power()OlPowerStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:OLPower
value: OlPowerStruct = driver.configure.prach.limit.pcontrol.get_ol_power()

Enables or disables the check of the open loop power limits and specifies these limits.

return

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

get_pstep()PstepStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:PSTep
value: PstepStruct = driver.configure.prach.limit.pcontrol.get_pstep()

Enables or disables the check of the preamble power step limits and specifies these limits.

return

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

set_off_power(limit: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:OFFPower
driver.configure.prach.limit.pcontrol.set_off_power(limit = 1.0)

Defines an upper OFF power limit. Also enables or disables the limit check.

param limit

numeric | ON | OFF Range: -90 dBm to 53 dBm, Unit: dBm Additional parameters: OFF | ON (disables the limit check | enables the limit check using the previous/default limit values)

set_ol_power(value: RsCmwWcdmaMeas.Implementations.Configure_.Prach_.Limit_.Pcontrol.Pcontrol.OlPowerStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:OLPower
driver.configure.prach.limit.pcontrol.set_ol_power(value = OlPowerStruct())

Enables or disables the check of the open loop power limits and specifies these limits.

param value

see the help for OlPowerStruct structure arguments.

set_pstep(value: RsCmwWcdmaMeas.Implementations.Configure_.Prach_.Limit_.Pcontrol.Pcontrol.PstepStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:PSTep
driver.configure.prach.limit.pcontrol.set_pstep(value = PstepStruct())

Enables or disables the check of the preamble power step limits and specifies these limits.

param value

see the help for PstepStruct structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.prach.limit.pcontrol.clone()

Subgroups