Bandwidth

SCPI Commands :

[SOURce<HW>]:AWGN:BWIDth:NOISe
[SOURce<HW>]:AWGN:BWIDth:RATio
[SOURce<HW>]:AWGN:BWIDth
Commands in total: 4
Subgroups: 1
Direct child commands: 3
get_noise() float[source]
# [SOURce<HW>]:AWGN:BWIDth:NOISe
value: float = driver.source.awgn.bandwidth.get_noise()

Queries the real noise bandwidth.

Returns:

noise: float Range: 0 to 200E6

get_ratio() float[source]
# [SOURce<HW>]:AWGN:BWIDth:RATio
value: float = driver.source.awgn.bandwidth.get_ratio()

Sets the ratio of minimum real noise bandwidth to system bandwidth, see also ‘Signal and noise parameters’.

Returns:

ratio: float Range: 1 to Max

get_value() float[source]
# [SOURce<HW>]:AWGN:BWIDth
value: float = driver.source.awgn.bandwidth.get_value()

Sets the system bandwidth.

Returns:

bwidth: float Range: 1000 to 80E6

set_ratio(ratio: float) None[source]
# [SOURce<HW>]:AWGN:BWIDth:RATio
driver.source.awgn.bandwidth.set_ratio(ratio = 1.0)

Sets the ratio of minimum real noise bandwidth to system bandwidth, see also ‘Signal and noise parameters’.

Parameters:

ratio – float Range: 1 to Max

set_value(bwidth: float) None[source]
# [SOURce<HW>]:AWGN:BWIDth
driver.source.awgn.bandwidth.set_value(bwidth = 1.0)

Sets the system bandwidth.

Parameters:

bwidth – float Range: 1000 to 80E6

Cloning the Group

# Create a copy of the original group, that exists independently
bandwidth_copy = driver.source.awgn.bandwidth.clone()

Subgroups