MaxPower

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:ILPControl:MAXPower:URPClass
CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:ILPControl:MAXPower:ACTive
CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:ILPControl:MAXPower:UDEFined
CONFigure:WCDMa:MEASurement<Instance>:TPC:LIMit:ILPControl:MAXPower
class MaxPower[source]

MaxPower commands group definition. 4 total commands, 0 Sub-groups, 4 group commands

class ActiveStruct[source]

Structure for reading output parameters. Fields:

  • Nominal_Max_Power: float: float Nominal maximum output power of the UE Range: -50 dBm to 34 dBm, Unit: dBm

  • Upper_Limit: float: float Tolerance value for too high maximum UE power Range: 0 dB to 5 dB, Unit: dB

  • Lower_Limit: float: float Tolerance value for too low maximum UE power Range: -5 dB to 0 dB, Unit: dB

class UserDefinedStruct[source]

Structure for reading output parameters. Fields:

  • Nominal_Max_Power: float: numeric Nominal maximum output power of the UE Range: -50 dBm to 34 dBm, Unit: dBm

  • Upper_Limit: float: numeric Tolerance value for too high maximum UE power Range: 0 dB to 5 dB, Unit: dB

  • Lower_Limit: float: numeric Tolerance value for too low maximum UE power Range: -5 dB to 0 dB, Unit: dB

class ValueStruct[source]

Structure for reading output parameters. Fields:

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

  • Active_Limit: enums.ActiveLimit: USER | PC1 | PC2 | PC3 | PC3B | PC4 To use the limits defined by 3GPP, select the power class of the UE (PC1 to PC4 = power class 1, 2, 3, 3bis, 4) . To use the UE power class value reported by the UE in the capability report, see also [CMDLINK: CONFigure:WCDMa:MEASi:TPC:LIMit:ILPControl:MAXPower:URPClass CMDLINK]. For user-defined limit values, select USER and define the limits via [CMDLINK: CONFigure:WCDMa:MEASi:TPC:LIMit:ILPControl:MAXPower:UDEFined CMDLINK].

get_active()ActiveStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower:ACTive
value: ActiveStruct = driver.configure.tpc.limit.ilpControl.maxPower.get_active()

Queries the active limit values for the ‘Inner Loop Power Control’ mode. These limit values result either from the configured UE power class or from the reported UE power class or have been defined manually.

return

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

get_urp_class()bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower:URPClass
value: bool = driver.configure.tpc.limit.ilpControl.maxPower.get_urp_class()

Enables or disables the use of the UE power class value reported by the UE in the capability report. This command is only relevant for combined signal path ‘Inner Loop Power Control’ measurements and only if the predefined limit sets are used.

return

enable: OFF | ON

get_user_defined()UserDefinedStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower:UDEFined
value: UserDefinedStruct = driver.configure.tpc.limit.ilpControl.maxPower.get_user_defined()

Sets the user-defined maximum output power limits for the ‘Inner Loop Power Control’ mode. To activate the usage of this limit set, see method RsCmwWcdmaMeas.Configure.Tpc.Limit.IlpControl.MaxPower.value.

return

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

get_value()ValueStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower
value: ValueStruct = driver.configure.tpc.limit.ilpControl.maxPower.get_value()

Enables or disables the check of the maximum UE output power limits for the ‘Inner Loop Power Control’ mode and selects the set of limit settings to be used.

return

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

set_urp_class(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower:URPClass
driver.configure.tpc.limit.ilpControl.maxPower.set_urp_class(enable = False)

Enables or disables the use of the UE power class value reported by the UE in the capability report. This command is only relevant for combined signal path ‘Inner Loop Power Control’ measurements and only if the predefined limit sets are used.

param enable

OFF | ON

set_user_defined(value: RsCmwWcdmaMeas.Implementations.Configure_.Tpc_.Limit_.IlpControl_.MaxPower.MaxPower.UserDefinedStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower:UDEFined
driver.configure.tpc.limit.ilpControl.maxPower.set_user_defined(value = UserDefinedStruct())

Sets the user-defined maximum output power limits for the ‘Inner Loop Power Control’ mode. To activate the usage of this limit set, see method RsCmwWcdmaMeas.Configure.Tpc.Limit.IlpControl.MaxPower.value.

param value

see the help for UserDefinedStruct structure arguments.

set_value(value: RsCmwWcdmaMeas.Implementations.Configure_.Tpc_.Limit_.IlpControl_.MaxPower.MaxPower.ValueStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:TPC:LIMit:ILPControl:MAXPower
driver.configure.tpc.limit.ilpControl.maxPower.set_value(value = ValueStruct())

Enables or disables the check of the maximum UE output power limits for the ‘Inner Loop Power Control’ mode and selects the set of limit settings to be used.

param value

see the help for ValueStruct structure arguments.