Skip to main content

User Guide

Determine the duration of short events without rounding to index resolution

Certain events may be too brief to register at all, and rounding to the index resolution may not provide sufficient accuracy – for instance, when an event lasts for 155 seconds but is approximated as 120 seconds.

  1. Create a formula that is 1 when the criterion is true, and 0 otherwise e.g., for identifying temperature peaks within the reactor’s temperature data.

    if(Temp>=123.1,1,0) 

    Variable mapping:

    Temp = Tag of interest e.g. reactor temperature

    1__Determine_the_duration_of_short_events_without_rounding_to_index_resolution_.png
  2. Establish an integration within the formula tag by employing aggregation, wherein the integration period aligns with the duration of the longest event, ensuring that the entire event is always integrated.

    Tag to aggregate: formula tag above

    Operator: Integral

    Unit of the source tag: e.g., per minute

    Direction: e.g., Backward

    Aggregate per e.g., 10 minutes

    2__Determine_the_duration_of_short_events_without_rounding_to_index_resolution_.png
  3. Perform a value-based search based on integrals greater than 0.

    3__Determine_the_duration_of_short_events_without_rounding_to_index_resolution_.png
  4. Add a calculation to determine the maximum integral value on search results. You now have accurate measurements of event durations as calculations on your results. This grants you precise measurements of event durations, now accessible as calculations derived from your results.

    4__Determine_the_duration_of_short_events_without_rounding_to_index_resolution_.png
    5__Determine_the_duration_of_short_events_without_rounding_to_index_resolution_.png
    6__Determine_the_duration_of_short_events_without_rounding_to_index_resolution_.png