:SENSe:SWEep:DWELl
Description
This command gets or sets the dwell (DUT settling time) of the sweep. The DUT settling time is the time between applying an input to the DUT and measuring the data. So at each measurement point (each measurement frequency) input is applied, dwell time is waited and afterwards the measurement data is retrieved.
Syntax
:SENSe<ch>:SWEep:DWELl
| Command | Query | Query Response |
|---|---|---|
| Yes | Yes | The dwell or DUT settling time in s (seconds). |
| Parameters | Accepted Format |
Allowed Suffixes |
Possible Errors |
Description |
|---|---|---|---|---|
{ <numeric> | MINimum | MAXimum } |
Range from 0s to 60s |
s |
Numeric data error |
The dwell or DUT settling time in s (seconds). |
To learn more about channels and traces, please refer to the SCPI command structure
Presets
For presets please refer to Measurement Modes and Default Settings.
Sample usage
Configure and start a sweep measurement with a dwell of 1 second.
visaSession.write(':SENS:FREQ:STAR 10kHz;STOP 20kHz\n')
visaSession.write(':SENS:SWE:POIN 500\n')
visaSession.write(':SENS:SWE:DWEL 1\n')
visaSession.write(':TRIG:SING\n')
visaSession.query('*OPC?\n')
frequencyValues = visaSession.query(':SENS:FREQ:DATA?\n')
measurementValues = visaSession.query(':CALC:DATA:SDAT?\n')