Cc<CarrierComponent>

RepCap Settings

# Range: Nr1 .. Nr4
rc = driver.configure.lteMeas.multiEval.listPy.segment.cc.repcap_carrierComponent_get()
driver.configure.lteMeas.multiEval.listPy.segment.cc.repcap_carrierComponent_set(repcap.CarrierComponent.Nr1)

SCPI Command :

CONFigure:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:CC<c>
class CcCls[source]

Cc commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: CarrierComponent, default value after init: CarrierComponent.Nr1

class CcStruct[source]

Response structure. Fields:

  • Frequency: float: Center frequency of the component carrier For the supported range, see ‘Frequency ranges’.

  • Ch_Bandwidth: enums.ChannelBandwidth: Channel bandwidth of the component carrier B014: 1.4 MHz B030: 3 MHz B050: 5 MHz B100: 10 MHz B150: 15 MHz B200: 20 MHz

get(segment=Segment.Default, carrierComponent=CarrierComponent.Default) CcStruct[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:CC<c>
value: CcStruct = driver.configure.lteMeas.multiEval.listPy.segment.cc.get(segment = repcap.Segment.Default, carrierComponent = repcap.CarrierComponent.Default)

Defines carrier-specific analyzer settings for component carrier CC<c>, in segment <no>. This command is only relevant for carrier aggregation.

param segment:

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

param carrierComponent:

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

return:

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

set(frequency: float, ch_bandwidth: ChannelBandwidth, segment=Segment.Default, carrierComponent=CarrierComponent.Default) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:CC<c>
driver.configure.lteMeas.multiEval.listPy.segment.cc.set(frequency = 1.0, ch_bandwidth = enums.ChannelBandwidth.B014, segment = repcap.Segment.Default, carrierComponent = repcap.CarrierComponent.Default)

Defines carrier-specific analyzer settings for component carrier CC<c>, in segment <no>. This command is only relevant for carrier aggregation.

param frequency:

Center frequency of the component carrier For the supported range, see ‘Frequency ranges’.

param ch_bandwidth:

Channel bandwidth of the component carrier B014: 1.4 MHz B030: 3 MHz B050: 5 MHz B100: 10 MHz B150: 15 MHz B200: 20 MHz

param segment:

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

param carrierComponent:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.lteMeas.multiEval.listPy.segment.cc.clone()