Areset
SCPI Commands :
ACQuire:ARESet:MODE
ACQuire:ARESet:TIME
ACQuire:ARESet:COUNt
- Commands in total: 4Subgroups: 1Direct child commands: 3
- get_count() int[source]
# ACQuire:ARESet:COUNt value: int = driver.acquire.areset.get_count()
Defines the number of acquired waveforms after which the envelope and average evaluation restarts. The setting is relevant if method
RsRtx.acquire.areset.mode()is set to WFMS.- Returns:
nof_waveforms: 2 to 16.7772E+6
- get_mode() StatisticMode[source]
# ACQuire:ARESet:MODE value: enums.StatisticMode = driver.acquire.areset.get_mode()
Defines when the envelope and average evaluation restarts.
- Returns:
artm_rst: NONE | TIME | WFMS
TIME: Restarts the envelope and average calculation after the time defined with ACQuire:ARESet:TIME.
WFMS: Restarts the envelope and average calculation after a number of acquired waveforms defined with ACQuire:ARESet:COUNt.
- get_time() float[source]
# ACQuire:ARESet:TIME value: float = driver.acquire.areset.get_time()
Defines the time after which the envelope and average evaluation restarts. The setting is relevant if method
RsRtx.acquire.areset.mode()is set to TIME.
- set_count(nof_waveforms: int) None[source]
# ACQuire:ARESet:COUNt driver.acquire.areset.set_count(nof_waveforms = 1)
Defines the number of acquired waveforms after which the envelope and average evaluation restarts. The setting is relevant if method
RsRtx.acquire.areset.mode()is set to WFMS.- Parameters:
nof_waveforms – 2 to 16.7772E+6
- set_mode(artm_rst: StatisticMode) None[source]
# ACQuire:ARESet:MODE driver.acquire.areset.set_mode(artm_rst = enums.StatisticMode.MEAS)
Defines when the envelope and average evaluation restarts.
- Parameters:
artm_rst –
NONE | TIME | WFMS
TIME: Restarts the envelope and average calculation after the time defined with ACQuire:ARESet:TIME.
WFMS: Restarts the envelope and average calculation after a number of acquired waveforms defined with ACQuire:ARESet:COUNt.
- set_time(envlp_tout: float) None[source]
# ACQuire:ARESet:TIME driver.acquire.areset.set_time(envlp_tout = 1.0)
Defines the time after which the envelope and average evaluation restarts. The setting is relevant if method
RsRtx.acquire.areset.mode()is set to TIME.- Parameters:
envlp_tout – 0.1 to 10000
Cloning the Group
# Create a copy of the original group, that exists independently
areset_copy = driver.acquire.areset.clone()
Subgroups