Awgn

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:FADing:AWGN:ENABle
CONFigure:EVDO:SIGNaling<Instance>:FADing:AWGN:SNRatio
class Awgn[source]

Awgn commands group definition. 4 total commands, 1 Sub-groups, 2 group commands

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

Enables or disables AWGN insertion via the fading module. For multi-carrier, the same settings are applied to all carriers. Thus it is sufficient to configure one carrier.

return

enable: OFF | ON

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

Queries the signal to noise ratio for the AWGN inserted via the internal fading module.

return

ratio: Range: -50 dB to 30 dB , Unit: dB

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

Enables or disables AWGN insertion via the fading module. For multi-carrier, the same settings are applied to all carriers. Thus it is sufficient to configure one carrier.

param enable

OFF | ON

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

Queries the signal to noise ratio for the AWGN inserted via the internal fading module.

param ratio

Range: -50 dB to 30 dB , Unit: dB

Cloning the Group

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

Subgroups