Cbandwidth<ChannelBw>

RepCap Settings

# Range: Bw50 .. Bw400
rc = driver.configure.nrMmwMeas.multiEval.limit.seMask.area.cbandwidth.repcap_channelBw_get()
driver.configure.nrMmwMeas.multiEval.limit.seMask.area.cbandwidth.repcap_channelBw_set(repcap.ChannelBw.Bw50)

SCPI Command :

CONFigure:NRMMw: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.Bw50

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: The start frequency of the area, relative to the edges of the channel bandwidth.

  • Frequency_End: float: The stop frequency of the area, relative to the edges of the channel bandwidth.

  • Level: float: Upper limit for the area

  • Rbw: enums.RbwA: Resolution bandwidth to be used for the area (1 MHz)

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

Defines general requirements for the emission mask area number <area>. 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: Bw50 (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:NRMMw:MEASurement<Instance>:MEValuation:LIMit:SEMask:AREA<area>:CBANdwidth<bw>
driver.configure.nrMmwMeas.multiEval.limit.seMask.area.cbandwidth.set(enable = False, frequency_start = 1.0, frequency_end = 1.0, level = 1.0, rbw = enums.RbwA.K120, area = repcap.Area.Default, channelBw = repcap.ChannelBw.Default)

Defines general requirements for the emission mask area number <area>. 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:

The start frequency of the area, relative to the edges of the channel bandwidth.

param frequency_end:

The stop frequency of the area, relative to the edges of the channel bandwidth.

param level:

Upper limit for the area

param rbw:

Resolution bandwidth to be used for the area (1 MHz)

param area:

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

param channelBw:

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

Cloning the Group

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