Resolution
SCPI Command :
[SENSe]:BWIDth[:RESolution]
- class ResolutionCls[source]
Resolution commands group definition. 5 total commands, 4 Subgroups, 1 group commands
- get() float [source]
# SCPI: [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.
- return
bandwidth: refer to specifications document Unit: Hz
- set(bandwidth: float) None [source]
# SCPI: [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.
- param bandwidth
refer to specifications document Unit: Hz
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.sense.bandwidth.resolution.clone()
Subgroups