RbAllocation

SCPI Command :

CONFigure:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:RBALlocation
class RbAllocationCls[source]

RbAllocation commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class RbAllocationStruct[source]

Response structure. Fields:

  • Auto: bool: OFF | ON OFF: manual definition via NoRB and Offset ON: automatic detection of RB allocation

  • No_Rb: int: integer Number of allocated resource blocks in each measured slot Range: see table below

  • Offset: int: integer Offset of first allocated resource block from edge of allocated UL transmission bandwidth Range: 0 to max(NoRB) - NoRB

get(segment=Segment.Default) RbAllocationStruct[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:RBALlocation
value: RbAllocationStruct = driver.configure.multiEval.listPy.segment.rbAllocation.get(segment = repcap.Segment.Default)

Allows you to define the uplink resource block allocation manually for segment <no>. By default, the RB allocation is detected automatically.

param segment:

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

return:

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

set(auto: bool, no_rb: int, offset: int, segment=Segment.Default) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:RBALlocation
driver.configure.multiEval.listPy.segment.rbAllocation.set(auto = False, no_rb = 1, offset = 1, segment = repcap.Segment.Default)

Allows you to define the uplink resource block allocation manually for segment <no>. By default, the RB allocation is detected automatically.

param auto:

OFF | ON OFF: manual definition via NoRB and Offset ON: automatic detection of RB allocation

param no_rb:

integer Number of allocated resource blocks in each measured slot Range: see table below

param offset:

integer Offset of first allocated resource block from edge of allocated UL transmission bandwidth Range: 0 to max(NoRB) - NoRB

param segment:

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

Cloning the Group

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

Subgroups