ChannelBw<ChannelBw>

RepCap Settings

# Range: Bw14 .. Bw200
rc = driver.configure.lteMeas.multiEval.limit.pdynamics.channelBw.repcap_channelBw_get()
driver.configure.lteMeas.multiEval.limit.pdynamics.channelBw.repcap_channelBw_set(repcap.ChannelBw.Bw14)

SCPI Command :

CONFigure:LTE:MEASurement<Instance>:MEValuation:LIMit:PDYNamics:CBANdwidth<Band>
class ChannelBwCls[source]

ChannelBw commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: ChannelBw, default value after init: ChannelBw.Bw14

class ChannelBwStruct[source]

Response structure. Fields:

  • Enable: bool: OFF: disables the limit check ON: enables the limit check

  • On_Power_Upper: float: Upper limit for the ‘ON power’

  • On_Power_Lower: float: Lower limit for the ‘ON power’

  • Off_Power_Upper: float: Upper limit for the ‘OFF power’ and the ‘SRS OFF’ power

get(channelBw=ChannelBw.Default) ChannelBwStruct[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIMit:PDYNamics:CBANdwidth<Band>
value: ChannelBwStruct = driver.configure.lteMeas.multiEval.limit.pdynamics.channelBw.get(channelBw = repcap.ChannelBw.Default)

Defines limits for the ON power and OFF power determined with the power dynamics measurement. Separate limits can be defined for each channel bandwidth.

param channelBw:

optional repeated capability selector. Default value: Bw14 (settable in the interface ‘ChannelBw’)

return:

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

set(enable: bool, on_power_upper: float, on_power_lower: float, off_power_upper: float, channelBw=ChannelBw.Default) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIMit:PDYNamics:CBANdwidth<Band>
driver.configure.lteMeas.multiEval.limit.pdynamics.channelBw.set(enable = False, on_power_upper = 1.0, on_power_lower = 1.0, off_power_upper = 1.0, channelBw = repcap.ChannelBw.Default)

Defines limits for the ON power and OFF power determined with the power dynamics measurement. Separate limits can be defined for each channel bandwidth.

param enable:

OFF: disables the limit check ON: enables the limit check

param on_power_upper:

Upper limit for the ‘ON power’

param on_power_lower:

Lower limit for the ‘ON power’

param off_power_upper:

Upper limit for the ‘OFF power’ and the ‘SRS OFF’ power

param channelBw:

optional repeated capability selector. Default value: Bw14 (settable in the interface ‘ChannelBw’)

Cloning the Group

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