Limit

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:MPEDch
CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:CTFC
CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:DHIB
class Limit[source]

Limit commands group definition. 13 total commands, 2 Sub-groups, 3 group commands

class CtfcStruct[source]

Structure for reading output parameters. Fields:

  • Power_Step_Limit: float: numeric Symmetrical tolerance value for the power step size Range: 0 dB to 10 dB, Unit: dB

  • Calc_Beta_Factors: bool: OFF | ON Enables or disables the automatic calculation of the expected power step size from the configured beta factors

  • Power_Step_Size: float: numeric Expected power step size applicable if the automatic calculation from beta factors is disabled Range: 0 dB to 24 dB, Unit: dB

class MpedchStruct[source]

Structure for reading output parameters. Fields:

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

  • Nom_Max_Power: float: numeric Nominal maximum UE power Range: -47 dBm to 34 dBm, Unit: dBm

  • Upper_Limit: float: numeric Upper limit = nominal power + this value Range: 0 dB to 10 dB, Unit: dB

  • Lower_Limit: float: numeric Lower limit = nominal power + this value Range: -10 dB to 0 dB, Unit: dB

get_ctfc()CtfcStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:CTFC
value: CtfcStruct = driver.configure.tpc.limit.get_ctfc()

Configures a power step limit for the measurement mode ‘Change of TFC’.

return

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

get_dhib()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:DHIB
value: float = driver.configure.tpc.limit.get_dhib()

Defines a ‘DC HSPA In-Band Emission’ limit: upper limit for the ratio of the UE output power in one carrier to the UE output power in the other carrier.

return

min_power: numeric Range: -80 dB to 0 dB, Unit: dB

get_mpedch()MpedchStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:MPEDch
value: MpedchStruct = driver.configure.tpc.limit.get_mpedch()

Configures UE power limits for the measurement mode ‘Max. Power E-DCH’.

return

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

set_ctfc(value: RsCmwWcdmaMeas.Implementations.Configure_.Tpc_.Limit.Limit.CtfcStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:CTFC
driver.configure.tpc.limit.set_ctfc(value = CtfcStruct())

Configures a power step limit for the measurement mode ‘Change of TFC’.

param value

see the help for CtfcStruct structure arguments.

set_dhib(min_power: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:DHIB
driver.configure.tpc.limit.set_dhib(min_power = 1.0)

Defines a ‘DC HSPA In-Band Emission’ limit: upper limit for the ratio of the UE output power in one carrier to the UE output power in the other carrier.

param min_power

numeric Range: -80 dB to 0 dB, Unit: dB

set_mpedch(value: RsCmwWcdmaMeas.Implementations.Configure_.Tpc_.Limit.Limit.MpedchStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:MPEDch
driver.configure.tpc.limit.set_mpedch(value = MpedchStruct())

Configures UE power limits for the measurement mode ‘Max. Power E-DCH’.

param value

see the help for MpedchStruct structure arguments.

Cloning the Group

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

Subgroups