TimeRange

SCPI Command :

SEARch:TRIGger:WINDow:TIMerange
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) TriggerSearchRangeMode[source]
# SEARch:TRIGger:WINDow:TIMerange
value: enums.TriggerSearchRangeMode = driver.search.trigger.window.timeRange.get(search = 'abc')

Selects how the time limit of the window is defined. Time conditioning is available for the vertical conditions WITHin and OUTSide (see method RsRtx.search.trigger.window.range.set() ) .

Parameters:

search – Search definition

Returns:

time_range_mode: WITHin | OUTSide | SHORter | LONGer

  • WITHin: Triggers if the signal stays inside or outside the vertical window limits at least for the time Width - Delta and for Width + Delta at the most.

  • OUTSide: Outside is the opposite definition of Within. The instrument triggers if the signal stays inside or outside the vertical window limits for a time shorter than Width - Delta or longer than Width + Delta.

  • SHORter: Triggers if the signal crosses vertical limits before the specified Width time is reached.

  • LONGer: Triggers if the signal crosses vertical limits before the specified Width time is reached.

set(search: str, time_range_mode: TriggerSearchRangeMode) None[source]
# SEARch:TRIGger:WINDow:TIMerange
driver.search.trigger.window.timeRange.set(search = 'abc', time_range_mode = enums.TriggerSearchRangeMode.LONGer)

Selects how the time limit of the window is defined. Time conditioning is available for the vertical conditions WITHin and OUTSide (see method RsRtx.search.trigger.window.range.set() ) .

Parameters:
  • search – Search definition

  • time_range_mode

    WITHin | OUTSide | SHORter | LONGer

    • WITHin: Triggers if the signal stays inside or outside the vertical window limits at least for the time Width - Delta and for Width + Delta at the most.

    • OUTSide: Outside is the opposite definition of Within. The instrument triggers if the signal stays inside or outside the vertical window limits for a time shorter than Width - Delta or longer than Width + Delta.

    • SHORter: Triggers if the signal crosses vertical limits before the specified Width time is reached.

    • LONGer: Triggers if the signal crosses vertical limits before the specified Width time is reached.