Timing

SCPI Command :

SENSe:[POWer]:SWEep:POWer:TIMing:[MODE]
class TimingCls[source]

Timing commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get_mode() MeasRespTimingMode[source]
# SCPI: SENSe:[POWer]:SWEep:POWer:TIMing:[MODE]
value: enums.MeasRespTimingMode = driver.sense.power.sweep.power.timing.get_mode()

Selects the timing mode of the measurement.

return:

mode: FAST| NORMal| HPRecision | FAST| NORMal FAST Selection FAST leads to a fast measurement with a short integration times for each measurement step. NORMal NORMal leads to a longer but more precise measurement due to a higher integration time for each step.

set_mode(mode: MeasRespTimingMode) None[source]
# SCPI: SENSe:[POWer]:SWEep:POWer:TIMing:[MODE]
driver.sense.power.sweep.power.timing.set_mode(mode = enums.MeasRespTimingMode.FAST)

Selects the timing mode of the measurement.

param mode:

FAST| NORMal| HPRecision | FAST| NORMal FAST Selection FAST leads to a fast measurement with a short integration times for each measurement step. NORMal NORMal leads to a longer but more precise measurement due to a higher integration time for each step.