Pusch

SCPI Command :

CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent<no>[:CC<cc>]: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 the measured slot. Range: 4 to 14

  • Start_Symbol: int: numeric Index of the first allocated symbol in the measured slot. For mapping type A, only 0 is allowed. Range: 0 to 10

  • Nrb_Auto: bool: OFF | ON Automatic detection of NoRBs and StartRB

  • No_Rb: int: numeric Number of allocated RBs in the measured slot. Range: 1 to 273

  • Start_Rb: int: numeric Index of the first allocated RB in the measured slot. Range: 0 to max(NoRB) - NoRB

  • 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(sEGMent=SEGMent.Default, carrierComponent=CarrierComponent.Default, allocation=Allocation.Default) PuschStruct[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent<no>[:CC<cc>]:ALLocation<Allocation>:PUSCh
value: PuschStruct = driver.configure.nrSubMeas.listPy.segment.cc.allocation.pusch.get(sEGMent = repcap.SEGMent.Default, carrierComponent = repcap.CarrierComponent.Default, allocation = repcap.Allocation.Default)

Specifies settings related to the PUSCH allocation, for carrier <cc>, allocation <a> in segment <no>. The ranges for the allocated RBs and symbols have dependencies, see ‘Resource elements, grids and blocks’ and ‘Scheduled UL slots and allocated symbols’.

param sEGMent:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Segment’)

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, sEGMent=SEGMent.Default, carrierComponent=CarrierComponent.Default, allocation=Allocation.Default) None[source]
# SCPI: CONFigure:NRSub:MEASurement<Instance>:LIST:SEGMent<no>[:CC<cc>]:ALLocation<Allocation>:PUSCh
structure = driver.configure.nrSubMeas.listPy.segment.cc.allocation.pusch.PuschStruct()
structure.Mapping_Type: enums.MappingType = enums.MappingType.A
structure.No_Symbols: int = 1
structure.Start_Symbol: int = 1
structure.Nrb_Auto: bool = False
structure.No_Rb: int = 1
structure.Start_Rb: int = 1
structure.Mod_Scheme: enums.ModulationScheme = enums.ModulationScheme.AUTO
driver.configure.nrSubMeas.listPy.segment.cc.allocation.pusch.set(structure, sEGMent = repcap.SEGMent.Default, carrierComponent = repcap.CarrierComponent.Default, allocation = repcap.Allocation.Default)

Specifies settings related to the PUSCH allocation, for carrier <cc>, allocation <a> in segment <no>. 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 sEGMent:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Segment’)

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.listPy.segment.cc.allocation.pusch.clone()

Subgroups