Awgn

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:ENABle
CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:FOFFset
CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:SNRatio
CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:MEASurement
class AwgnCls[source]

Awgn commands group definition. 6 total commands, 1 Subgroups, 4 group commands

get_enable() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:ENABle
value: bool = driver.configure.fading.pcc.awgn.get_enable()

Enables or disables AWGN insertion via the fading module.

return:

enable: OFF | ON

get_foffset() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:FOFFset
value: float = driver.configure.fading.pcc.awgn.get_foffset()

Shifts the center frequency of the noise bandwidth relative to the carrier center frequency.

return:

offset: numeric Range: -40 MHz to 40 MHz, Unit: Hz

get_measurement() AwgnMeasurement[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:MEASurement
value: enums.AwgnMeasurement = driver.configure.fading.pcc.awgn.get_measurement()

No command help available

return:

measurement: No help available

get_sn_ratio() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:SNRatio
value: float = driver.configure.fading.pcc.awgn.get_sn_ratio()

Specifies the signal to noise ratio for the AWGN inserted on the internal fading module.

return:

ratio: numeric Range: -50 dB to 40 dB, Unit: dB

set_enable(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:ENABle
driver.configure.fading.pcc.awgn.set_enable(enable = False)

Enables or disables AWGN insertion via the fading module.

param enable:

OFF | ON

set_foffset(offset: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:FOFFset
driver.configure.fading.pcc.awgn.set_foffset(offset = 1.0)

Shifts the center frequency of the noise bandwidth relative to the carrier center frequency.

param offset:

numeric Range: -40 MHz to 40 MHz, Unit: Hz

set_measurement(measurement: AwgnMeasurement) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:MEASurement
driver.configure.fading.pcc.awgn.set_measurement(measurement = enums.AwgnMeasurement.NOISe)

No command help available

param measurement:

No help available

set_sn_ratio(ratio: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:FADing[:PCC]:AWGN:SNRatio
driver.configure.fading.pcc.awgn.set_sn_ratio(ratio = 1.0)

Specifies the signal to noise ratio for the AWGN inserted on the internal fading module.

param ratio:

numeric Range: -50 dB to 40 dB, Unit: dB

Cloning the Group

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

Subgroups