Allocation<Allocation>

RepCap Settings

# Range: Nr1 .. Nr1
rc = driver.configure.nrSubMeas.cc.allocation.repcap_allocation_get()
driver.configure.nrSubMeas.cc.allocation.repcap_allocation_set(repcap.Allocation.Nr1)

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>
class AllocationCls[source]

Allocation commands group definition. 16 total commands, 2 Subgroups, 1 group commands Repeated Capability: Allocation, default value after init: Allocation.Nr1

class AllocationStruct[source]

Response structure. Fields:

  • Bandwidth_Part: enums.BandwidthPart: The current software version uses only one bandwidth part.

  • Slot_Format: int: The current software version supports only slot format 1.

  • Content: enums.ChannelTypeA: Type of channel to be measured

  • Allocated_Slots: enums.AllocatedSlots: In the current software version, all UL slots must be scheduled and use the same allocation.

get(carrierComponent=CarrierComponent.Nr1, allocation=Allocation.Default) AllocationStruct[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>
value: AllocationStruct = driver.configure.nrSubMeas.cc.allocation.get(carrierComponent = repcap.CarrierComponent.Nr1, allocation = repcap.Allocation.Default)

Selects the type of channel to be measured, for carrier <no>, allocation <a>. The other parameters in this command are fixed in the current software version.

param carrierComponent:

optional repeated capability selector. Default value: Nr1

param allocation:

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

return:

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

set(bandwidth_part: BandwidthPart, slot_format: int, content: ChannelTypeA, allocated_slots: AllocatedSlots, carrierComponent=CarrierComponent.Nr1, allocation=Allocation.Default) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>
driver.configure.nrSubMeas.cc.allocation.set(bandwidth_part = enums.BandwidthPart.BWP0, slot_format = 1, content = enums.ChannelTypeA.PUCCh, allocated_slots = enums.AllocatedSlots.ALL, carrierComponent = repcap.CarrierComponent.Nr1, allocation = repcap.Allocation.Default)

Selects the type of channel to be measured, for carrier <no>, allocation <a>. The other parameters in this command are fixed in the current software version.

param bandwidth_part:

The current software version uses only one bandwidth part.

param slot_format:

The current software version supports only slot format 1.

param content:

Type of channel to be measured

param allocated_slots:

In the current software version, all UL slots must be scheduled and use the same allocation.

param carrierComponent:

optional repeated capability selector. Default value: Nr1

param allocation:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.nrSubMeas.cc.allocation.clone()

Subgroups