Pusch

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>[:CC<no>]:ALLocation<Allocation>:PUSCh
class PuschCls[source]

Pusch commands group definition. 4 total commands, 3 Subgroups, 1 group commands

class PuschStruct[source]

Structure for setting input parameters. Fields:

  • Mapping_Type: enums.MappingType: PUSCH mapping type

  • No_Symbols: int: Number of allocated OFDM symbols in each uplink slot.

  • Start_Symbol: int: Index of the first allocated symbol in each uplink slot. For mapping type A, only 0 is allowed.

  • Auto: bool: Automatic detection of NoRBs and StartRB

  • No_Rbs: int: Number of allocated UL RBs.

  • Start_Rb: int: Index of the first allocated RB.

  • Mod_Scheme: enums.ModulationScheme: Modulation scheme AUTO: Auto-detection BPSK, BPWS: π/2-BPSK, π/2-BPSK with shaping QPSK, Q16, Q64, Q256: QPSK, 16QAM, 64QAM, 256QAM

get(carrierComponent=CarrierComponent.Nr1, 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.Nr1, 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 ‘RB allocation for uplink measurements’ and ‘Slots and symbols for PUSCH and PUCCH’.

param carrierComponent:

optional repeated capability selector. Default value: Nr1

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.Nr1, 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.Nr1, 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 ‘RB allocation for uplink measurements’ and ‘Slots and symbols for PUSCH and PUCCH’.

param structure:

for set value, see the help for PuschStruct structure arguments.

param carrierComponent:

optional repeated capability selector. Default value: Nr1

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