SchModel

SCPI Command :

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

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

class ValueStruct[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_value() ValueStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SCHModel
value: ValueStruct = driver.configure.connection.pcc.schModel.get_value()

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

return:

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

set_value(value: ValueStruct) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection[:PCC]:SCHModel
structure = driver.configure.connection.pcc.schModel.ValueStruct()
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.pcc.schModel.set_value(value = structure)

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

param value:

see the help for ValueStruct structure arguments.

Cloning the Group

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

Subgroups