BwPart

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:BWPart
Commands in total: 6
Subgroups: 2
Direct child commands: 1
class GetStruct[source]

Response structure. Fields:

  • 1 Sub_Car_Spacing: enums.SubCarrSpacing: Subcarrier spacing 15 kHz, 30 kHz, 60 kHz.

  • 2 Cyclic_Prefix: enums.CyclicPrefix: EXTended cyclic prefix is only possible for 60-kHz SC spacing.

  • 3 Number_Rb: int: Number of RBs in the bandwidth part.

  • 4 Start_Rb: int: Index of the first RB in the bandwidth part.

get(bwp: BandwidthPart, carrierComponent=CarrierComponent.Nr1) GetStruct[source]
# CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:BWPart
value: GetStruct = driver.configure.nrSubMeas.cc.bwPart.get(bwp = enums.BandwidthPart.BWP0, carrierComponent = repcap.CarrierComponent.Nr1)

Configures basic properties of the <BWP> on carrier <no>. For dependencies of the RB ranges, see ‘Resource elements, grids and blocks’.

Parameters:
  • bwp – BWP0

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

Returns:

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

set(bwp: BandwidthPart, sub_car_spacing: SubCarrSpacing, cyclic_prefix: CyclicPrefix, number_rb: int, start_rb: int, carrierComponent=CarrierComponent.Nr1) None[source]
# CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:BWPart
driver.configure.nrSubMeas.cc.bwPart.set(bwp = enums.BandwidthPart.BWP0, sub_car_spacing = enums.SubCarrSpacing.S15K, cyclic_prefix = enums.CyclicPrefix.EXTended, number_rb = 1, start_rb = 1, carrierComponent = repcap.CarrierComponent.Nr1)

Configures basic properties of the <BWP> on carrier <no>. For dependencies of the RB ranges, see ‘Resource elements, grids and blocks’.

Parameters:
  • bwp – BWP0

  • sub_car_spacing – Subcarrier spacing 15 kHz, 30 kHz, 60 kHz.

  • cyclic_prefix – EXTended cyclic prefix is only possible for 60-kHz SC spacing.

  • number_rb – Number of RBs in the bandwidth part.

  • start_rb – Index of the first RB in the bandwidth part.

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

Cloning the Group

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

Subgroups