MaxPower

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol:MAXPower:URPClass
CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol:MAXPower:ACTive
CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol:MAXPower:UDEFined
CONFigure:WCDMa:MEASurement<Instance>:PRACh:LIMit:PCONtrol: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:PRACh:LIMit:PCONtrol:MAXPower:URPClass CMDLINK]. For user-defined limit values, select USER and define the limits via [CMDLINK: CONFigure:WCDMa:MEASi:PRACh:LIMit:PCONtrol:MAXPower:UDEFined CMDLINK].

get_active()ActiveStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:MAXPower:ACTive
value: ActiveStruct = driver.configure.prach.limit.pcontrol.maxPower.get_active()

Queries the active maximum output power limit values. These limit values result either from the configured or reported UE power class or have been specified manually.

return

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

get_urp_class()bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:MAXPower:URPClass
value: bool = driver.configure.prach.limit.pcontrol.maxPower.get_urp_class()

Enables or disables the usage of the UE power class value reported by the UE in the capability report. This setting is only relevant if the combined signal path scenario is active and not relevant if user-defined limits are used instead of the predefined limit sets.

return

enable: OFF | ON

get_user_defined()UserDefinedStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:MAXPower:UDEFined
value: UserDefinedStruct = driver.configure.prach.limit.pcontrol.maxPower.get_user_defined()

Sets the user-defined maximum output power limits. To activate the usage of this limit set, see method RsCmwWcdmaMeas. Configure.Prach.Limit.Pcontrol.MaxPower.value.

return

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

get_value()ValueStruct[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:MAXPower
value: ValueStruct = driver.configure.prach.limit.pcontrol.maxPower.get_value()

Enables or disables the check of the maximum output power limits 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>:PRACh:LIMit:PCONtrol:MAXPower:URPClass
driver.configure.prach.limit.pcontrol.maxPower.set_urp_class(enable = False)

Enables or disables the usage of the UE power class value reported by the UE in the capability report. This setting is only relevant if the combined signal path scenario is active and not relevant if user-defined limits are used instead of the predefined limit sets.

param enable

OFF | ON

set_user_defined(value: RsCmwWcdmaMeas.Implementations.Configure_.Prach_.Limit_.Pcontrol_.MaxPower.MaxPower.UserDefinedStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:MAXPower:UDEFined
driver.configure.prach.limit.pcontrol.maxPower.set_user_defined(value = UserDefinedStruct())

Sets the user-defined maximum output power limits. To activate the usage of this limit set, see method RsCmwWcdmaMeas. Configure.Prach.Limit.Pcontrol.MaxPower.value.

param value

see the help for UserDefinedStruct structure arguments.

set_value(value: RsCmwWcdmaMeas.Implementations.Configure_.Prach_.Limit_.Pcontrol_.MaxPower.MaxPower.ValueStruct)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:PRACh:LIMit:PCONtrol:MAXPower
driver.configure.prach.limit.pcontrol.maxPower.set_value(value = ValueStruct())

Enables or disables the check of the maximum output power limits and selects the set of limit settings to be used.

param value

see the help for ValueStruct structure arguments.