Resolution

SCPI Command :

[SENSe]:BWIDth[:RESolution]
Commands in total: 5
Subgroups: 4
Direct child commands: 1
get() float[source]
# [SENSe]:BWIDth[:RESolution]
value: float = driver.sense.bandwidth.resolution.get()

Defines the resolution bandwidth and decouples the resolution bandwidth from the span. In the Real-Time application, the resolution bandwidth is always coupled to the span. For statistics measurements, this command defines the demodulation bandwidth. The 6 MHz Gaussian filter is provided for special measurements, such as 5G NR spurious emissions measurements. It is only available if you enter the value manually, not using the BAND:RES MAX command. It is not supported by all applications.

Returns:

bandwidth: refer to specifications document Unit: Hz

set(bandwidth: float) None[source]
# [SENSe]:BWIDth[:RESolution]
driver.sense.bandwidth.resolution.set(bandwidth = 1.0)

Defines the resolution bandwidth and decouples the resolution bandwidth from the span. In the Real-Time application, the resolution bandwidth is always coupled to the span. For statistics measurements, this command defines the demodulation bandwidth. The 6 MHz Gaussian filter is provided for special measurements, such as 5G NR spurious emissions measurements. It is only available if you enter the value manually, not using the BAND:RES MAX command. It is not supported by all applications.

Parameters:

bandwidth – refer to specifications document Unit: Hz

Cloning the Group

# Create a copy of the original group, that exists independently
resolution_copy = driver.sense.bandwidth.resolution.clone()

Subgroups