Mcluster

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDCHannels:MCLuster:UL
class MclusterCls[source]

Mcluster commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class UplinkStruct[source]

Structure for setting input parameters. Fields:

  • Number_Rb_1: int: numeric Number of allocated resource blocks, cluster 1

  • Start_Rb_1: int: numeric Position of first RB, cluster 1

  • Number_Rb_2: int: numeric Number of allocated resource blocks, cluster 2

  • Start_Rb_2: int: numeric Position of first RB, cluster 2

  • Modulation: enums.Modulation: QPSK | Q16 | Q64 | Q256 Modulation type QPSK | 16-QAM | 64-QAM | 256-QAM

  • Trans_Block_Size_Idx: int: numeric Transport block size index

get_uplink() UplinkStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDCHannels:MCLuster:UL
value: UplinkStruct = driver.configure.connection.pcc.udChannels.mcluster.get_uplink()

Configures a user-defined uplink channel with multi-cluster allocation. The allowed input ranges have dependencies and are described in the background information, see ‘User-defined channels’.

return:

structure: for return value, see the help for UplinkStruct structure arguments.

set_uplink(value: UplinkStruct) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:UDCHannels:MCLuster:UL
structure = driver.configure.connection.pcc.udChannels.mcluster.UplinkStruct()
structure.Number_Rb_1: int = 1
structure.Start_Rb_1: int = 1
structure.Number_Rb_2: int = 1
structure.Start_Rb_2: int = 1
structure.Modulation: enums.Modulation = enums.Modulation.Q1024
structure.Trans_Block_Size_Idx: int = 1
driver.configure.connection.pcc.udChannels.mcluster.set_uplink(value = structure)

Configures a user-defined uplink channel with multi-cluster allocation. The allowed input ranges have dependencies and are described in the background information, see ‘User-defined channels’.

param value:

see the help for UplinkStruct structure arguments.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.connection.pcc.udChannels.mcluster.clone()

Subgroups