SchModel

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CONNection:SCC<Carrier>:SCHModel
class SchModelCls[source]

SchModel commands group definition. 5 total commands, 3 Subgroups, 1 group commands

class SchModelStruct[source]

Structure for setting input parameters. Fields:

  • H_11_Abs: float: numeric Square of magnitude of h11 Range: 0 to 1

  • H_11_Phi: int: numeric Phase of h11 Range: 0 deg to 345 deg, Unit: deg

  • H_12_Phi: int: numeric Phase of h12 Range: 0 deg to 345 deg, Unit: deg

  • H_21_Abs: float: numeric Square of magnitude of h21 Range: 0 to 1

  • H_21_Phi: int: numeric Phase of h21 Range: 0 deg to 345 deg, Unit: deg

  • H_22_Phi: int: numeric Phase of h22 Range: 0 deg to 345 deg, Unit: deg

get(secondaryCompCarrier=SecondaryCompCarrier.Default) SchModelStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:SCC<Carrier>:SCHModel
value: SchModelStruct = driver.configure.connection.scc.schModel.get(secondaryCompCarrier = repcap.SecondaryCompCarrier.Default)

Configures the channel coefficients, characterizing the radio channel for MIMO 2x2.

param secondaryCompCarrier:

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

return:

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

set(structure: SchModelStruct, secondaryCompCarrier=SecondaryCompCarrier.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:SCC<Carrier>:SCHModel
structure = driver.configure.connection.scc.schModel.SchModelStruct()
structure.H_11_Abs: float = 1.0
structure.H_11_Phi: int = 1
structure.H_12_Phi: int = 1
structure.H_21_Abs: float = 1.0
structure.H_21_Phi: int = 1
structure.H_22_Phi: int = 1
driver.configure.connection.scc.schModel.set(structure, secondaryCompCarrier = repcap.SecondaryCompCarrier.Default)

Configures the channel coefficients, characterizing the radio channel for MIMO 2x2.

param structure:

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

param secondaryCompCarrier:

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

Cloning the Group

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

Subgroups