BwPart
SCPI Command :
CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:BWPart
- class BwPartCls[source]
BwPart commands group definition. 4 total commands, 1 Subgroups, 1 group commands
- class GetStruct[source]
Response structure. Fields:
Sub_Car_Spacing: enums.SubCarrSpacing: S15K | S30K | S60K Subcarrier spacing 15 kHz, 30 kHz, 60 kHz.
Cyclic_Prefix: enums.CyclicPrefix: NORMal | EXTended EXTended cyclic prefix is only possible for 60-kHz SC spacing.
Number_Rb: int: numeric Number of RBs in the bandwidth part. Range: 11 to 273
Start_Rb: int: numeric Index of the first RB in the bandwidth part. Range: 0 to 262
- get(bwp: BandwidthPart, carrierComponent=CarrierComponent.Default) 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.Default)
Configures basic properties of the <BWP> on carrier <no>. For dependencies of the RB ranges, see ‘Resource elements, grids and blocks’.
- param bwp:
BWP0
- param carrierComponent:
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cc’)
- 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.Default) 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.Default)
Configures basic properties of the <BWP> on carrier <no>. For dependencies of the RB ranges, see ‘Resource elements, grids and blocks’.
- param bwp:
BWP0
- param sub_car_spacing:
S15K | S30K | S60K Subcarrier spacing 15 kHz, 30 kHz, 60 kHz.
- param cyclic_prefix:
NORMal | EXTended EXTended cyclic prefix is only possible for 60-kHz SC spacing.
- param number_rb:
numeric Number of RBs in the bandwidth part. Range: 11 to 273
- param start_rb:
numeric Index of the first RB in the bandwidth part. Range: 0 to 262
- param carrierComponent:
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cc’)
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.nrSubMeas.cc.bwPart.clone()
Subgroups