Awgn

SCPI Commands :

CONFigure:WLAN:SIGNaling<instance>:FADing:AWGN:ENABle
CONFigure:WLAN:SIGNaling<instance>:FADing:AWGN:SNRatio
class AwgnCls[source]

Awgn commands group definition. 3 total commands, 1 Subgroups, 2 group commands

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

Enables or disables AWGN insertion via the fading module.

return:

enable: OFF | ON

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

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

return:

ratio: numeric Range: 0 dB to 40 dB, Unit: dB

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

Enables or disables AWGN insertion via the fading module.

param enable:

OFF | ON

set_sn_ratio(ratio: float) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:FADing:AWGN:SNRatio
driver.configure.fading.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: 0 dB to 40 dB, Unit: dB

Cloning the Group

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

Subgroups