Limit

SCPI Command :

[SENSe]:DETect:LIMit
class LimitCls[source]

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

get() bool[source]
# SCPI: [SENSe]:DETect:LIMit
value: bool = driver.applications.k6Pulse.sense.detect.limit.get()

If enabled, the number of pulses to be detected is restricted. When the maximum number is exceeded, measurement is stopped for the current capture buffer. This limitation can be used to speed up the measurement if only a small number of pulses is of interest. The maximum number of pulses to be detected is defined using the [SENSe:]DETect:LIMit:COUNt command.

return

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

set(state: bool) None[source]
# SCPI: [SENSe]:DETect:LIMit
driver.applications.k6Pulse.sense.detect.limit.set(state = False)

If enabled, the number of pulses to be detected is restricted. When the maximum number is exceeded, measurement is stopped for the current capture buffer. This limitation can be used to speed up the measurement if only a small number of pulses is of interest. The maximum number of pulses to be detected is defined using the [SENSe:]DETect:LIMit:COUNt command.

param state

ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.applications.k6Pulse.sense.detect.limit.clone()

Subgroups