Count

SCPI Commands

SENSe:SWEep:COUNt
class CountCls[source]

Count commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get() float[source]
# SCPI: [SENSe]:SWEep:COUNt
value: float = driver.sense.sweep.count.get()

This command defines the number of measurements that the application uses to average traces. In continuous measurement mode, the application calculates the moving average over the average count. In single measurement mode, the application stops the measurement and calculates the average after the average count has been reached.

return

sweep_count: When you set a sweep count of 0 or 1, the R&S FSWP performs one single measurement in single measurement mode. In continuous measurement mode, if the sweep count is set to 0, a moving average over 10 measurements is performed. Range: 0 to 200000

set(sweep_count: float) None[source]
# SCPI: [SENSe]:SWEep:COUNt
driver.sense.sweep.count.set(sweep_count = 1.0)

This command defines the number of measurements that the application uses to average traces. In continuous measurement mode, the application calculates the moving average over the average count. In single measurement mode, the application stops the measurement and calculates the average after the average count has been reached.

param sweep_count

When you set a sweep count of 0 or 1, the R&S FSWP performs one single measurement in single measurement mode. In continuous measurement mode, if the sweep count is set to 0, a moving average over 10 measurements is performed. Range: 0 to 200000

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sense.sweep.count.clone()

Subgroups