Pcc

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:DL[:PCC]:OCNG
CONFigure:LTE:SIGNaling<instance>:DL[:PCC]:AWGN
class PccCls[source]

Pcc commands group definition. 14 total commands, 10 Subgroups, 2 group commands

get_awgn() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:DL[:PCC]:AWGN
value: float or bool = driver.configure.downlink.pcc.get_awgn()

Specifies the total level of the additive white Gaussian noise (AWGN) interferer. The unit dBm/15 kHz indicates the spectral density integrated across one subcarrier. The range depends on several parameters. It either equals the range of the RS EPRE or is a part of this range.

return:

awgn: (float or boolean) numeric | ON | OFF Range: depends on many parameters , Unit: dBm/15kHz ON | OFF enables or disables the AWGN interferer.

get_ocng() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:DL[:PCC]:OCNG
value: bool = driver.configure.downlink.pcc.get_ocng()

Enables or disables the OFDMA channel noise generator (OCNG) .

return:

enable: OFF | ON

set_awgn(awgn: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:DL[:PCC]:AWGN
driver.configure.downlink.pcc.set_awgn(awgn = 1.0)

Specifies the total level of the additive white Gaussian noise (AWGN) interferer. The unit dBm/15 kHz indicates the spectral density integrated across one subcarrier. The range depends on several parameters. It either equals the range of the RS EPRE or is a part of this range.

param awgn:

(float or boolean) numeric | ON | OFF Range: depends on many parameters , Unit: dBm/15kHz ON | OFF enables or disables the AWGN interferer.

set_ocng(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:DL[:PCC]:OCNG
driver.configure.downlink.pcc.set_ocng(enable = False)

Enables or disables the OFDMA channel noise generator (OCNG) .

param enable:

OFF | ON

Cloning the Group

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

Subgroups