Pusch
SCPI Command :
CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:PUSCh
- class PuschCls[source]
Pusch commands group definition. 3 total commands, 2 Subgroups, 1 group commands
- class PuschStruct[source]
Structure for setting input parameters. Fields:
Mapping_Type: enums.MappingType: A | B PUSCH mapping type
No_Symbols: int: numeric Number of allocated OFDM symbols in each uplink slot. Range: 1 to 14
Start_Symbol: int: numeric Index of the first allocated symbol in each uplink slot. For mapping type A, only 0 is allowed. Range: 0 to 13
Auto: bool: OFF | ON Automatic detection of NoRBs and StartRB
No_Rbs: int: numeric Number of allocated UL RBs. Range: 1 to 273
Start_Rb: int: numeric Index of the first allocated RB. Range: 0 to max(NoRBs) - NoRBs
Mod_Scheme: enums.ModulationScheme: AUTO | BPSK | BPWS | QPSK | Q16 | Q64 | Q256 Modulation scheme AUTO: Auto-detection BPSK, BPWS: Pi/2-BPSK, Pi/2-BPSK with shaping QPSK, Q16, Q64, Q256: QPSK, 16-QAM, 64-QAM, 256-QAM
- get(carrierComponent=CarrierComponent.Default, allocation=Allocation.Default) PuschStruct[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:PUSCh value: PuschStruct = driver.configure.nrSubMeas.cc.allocation.pusch.get(carrierComponent = repcap.CarrierComponent.Default, allocation = repcap.Allocation.Default)
Specifies settings related to the PUSCH allocation, for carrier <no>, allocation <a>. The ranges for the allocated RBs and symbols have dependencies, see ‘Resource elements, grids and blocks’ and ‘Scheduled UL slots and allocated symbols’.
- param carrierComponent:
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cc’)
- param allocation:
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Allocation’)
- return:
structure: for return value, see the help for PuschStruct structure arguments.
- set(structure: PuschStruct, carrierComponent=CarrierComponent.Default, allocation=Allocation.Default) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:PUSCh structure = driver.configure.nrSubMeas.cc.allocation.pusch.PuschStruct() structure.Mapping_Type: enums.MappingType = enums.MappingType.A structure.No_Symbols: int = 1 structure.Start_Symbol: int = 1 structure.Auto: bool = False structure.No_Rbs: int = 1 structure.Start_Rb: int = 1 structure.Mod_Scheme: enums.ModulationScheme = enums.ModulationScheme.AUTO driver.configure.nrSubMeas.cc.allocation.pusch.set(structure, carrierComponent = repcap.CarrierComponent.Default, allocation = repcap.Allocation.Default)
Specifies settings related to the PUSCH allocation, for carrier <no>, allocation <a>. The ranges for the allocated RBs and symbols have dependencies, see ‘Resource elements, grids and blocks’ and ‘Scheduled UL slots and allocated symbols’.
- param structure:
for set value, see the help for PuschStruct structure arguments.
- param carrierComponent:
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Cc’)
- param allocation:
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Allocation’)
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.nrSubMeas.cc.allocation.pusch.clone()
Subgroups