BwPart

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:BWPart
class BwPartCls[source]

BwPart commands group definition. 6 total commands, 2 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

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

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

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

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

get(bwp: BandwidthPart, carrierComponent=CarrierComponent.Nr1) GetStruct[source]
# SCPI: 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’.

param bwp:

No help available

param carrierComponent:

optional repeated capability selector. Default value: Nr1

return:

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]
# SCPI: 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’.

param bwp:

No help available

param sub_car_spacing:

Subcarrier spacing 15 kHz, 30 kHz, 60 kHz.

param cyclic_prefix:

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

param number_rb:

Number of RBs in the bandwidth part.

param start_rb:

Index of the first RB in the bandwidth part.

param carrierComponent:

optional repeated capability selector. Default value: Nr1

Cloning the Group

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

Subgroups