Rb

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:PUSCh:RB
Commands in total: 2
Subgroups: 1
Direct child commands: 1
class RbStruct[source]

Response structure. Fields:

  • 1 No_Rbs: int: Number of allocated RBs for cluster 1.

  • 2 Start_Rb: int: Index of the first allocated RB for cluster 1.

  • 3 No_Rb_Cluster: int: Number of allocated RBs for cluster 2.

  • 4 Start_Rb_Cluster: int: Index of the first allocated RB for cluster 2.

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

Specifies the PUSCH RB allocation, for carrier <no>, allocation <a>. The ranges have additional dependencies, see ‘RB allocation for uplink measurements’.

Parameters:
  • carrierComponent – optional repeated capability selector. Default value: Nr1

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

Returns:

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

set(no_rbs: int, start_rb: int, no_rb_cluster: int = None, start_rb_cluster: int = None, carrierComponent=CarrierComponent.Nr1, allocation=Allocation.Default) None[source]
# CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:PUSCh:RB
driver.configure.nrSubMeas.cc.allocation.pusch.rb.set(no_rbs = 1, start_rb = 1, no_rb_cluster = 1, start_rb_cluster = 1, carrierComponent = repcap.CarrierComponent.Nr1, allocation = repcap.Allocation.Default)

Specifies the PUSCH RB allocation, for carrier <no>, allocation <a>. The ranges have additional dependencies, see ‘RB allocation for uplink measurements’.

Parameters:
  • no_rbs – Number of allocated RBs for cluster 1.

  • start_rb – Index of the first allocated RB for cluster 1.

  • no_rb_cluster – Number of allocated RBs for cluster 2.

  • start_rb_cluster – Index of the first allocated RB for cluster 2.

  • carrierComponent – optional repeated capability selector. Default value: Nr1

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

Cloning the Group

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

Subgroups