Cbandwidth<ChannelBw>

RepCap Settings

# Range: Bw5 .. Bw100
rc = driver.configure.nrSubMeas.multiEval.limit.seMask.area.cbandwidth.repcap_channelBw_get()
driver.configure.nrSubMeas.multiEval.limit.seMask.area.cbandwidth.repcap_channelBw_set(repcap.ChannelBw.Bw5)

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:SEMask:AREA<area>:CBANdwidth<bw>
class CbandwidthCls[source]

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

class CbandwidthStruct[source]

Response structure. Fields:

  • Enable: bool: OFF: Disables the check of these requirements. ON: Enables the check of these requirements.

  • Frequency_Start: float: Stop frequency of the area, relative to the edges of the channel bandwidth.

  • Frequency_End: float: No parameter help available

  • Level: float: Upper limit for the area

  • Rbw: enums.RbwA: Resolution bandwidth to be used for the area Only a subset of the values is allowed, depending on bw. K030: 30 kHz PC1: 1 % of channel bandwidth M1: 1 MHz

get(area=Area.Default, channelBw=ChannelBw.Default) CbandwidthStruct[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:SEMask:AREA<area>:CBANdwidth<bw>
value: CbandwidthStruct = driver.configure.nrSubMeas.multiEval.limit.seMask.area.cbandwidth.get(area = repcap.Area.Default, channelBw = repcap.ChannelBw.Default)

Defines general requirements for the emission mask area number <area> (for NR SA without CA) . The activation state, the area borders, an upper limit and the resolution bandwidth must be specified. The emission mask applies to the channel bandwidth <bw>.

param area:

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

param channelBw:

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

return:

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

set(enable: bool, frequency_start: float, frequency_end: float, level: float, rbw: RbwA, area=Area.Default, channelBw=ChannelBw.Default) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:MEValuation:LIMit:SEMask:AREA<area>:CBANdwidth<bw>
driver.configure.nrSubMeas.multiEval.limit.seMask.area.cbandwidth.set(enable = False, frequency_start = 1.0, frequency_end = 1.0, level = 1.0, rbw = enums.RbwA.K030, area = repcap.Area.Default, channelBw = repcap.ChannelBw.Default)

Defines general requirements for the emission mask area number <area> (for NR SA without CA) . The activation state, the area borders, an upper limit and the resolution bandwidth must be specified. The emission mask applies to the channel bandwidth <bw>.

param enable:

OFF: Disables the check of these requirements. ON: Enables the check of these requirements.

param frequency_start:

Stop frequency of the area, relative to the edges of the channel bandwidth.

param frequency_end:

No help available

param level:

Upper limit for the area

param rbw:

Resolution bandwidth to be used for the area Only a subset of the values is allowed, depending on bw. K030: 30 kHz PC1: 1 % of channel bandwidth M1: 1 MHz

param area:

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

param channelBw:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.nrSubMeas.multiEval.limit.seMask.area.cbandwidth.clone()