FlexPro Forum – Discuss Your Topic!

Extracting Events from One Signal, applying Time to Another

Home > Community > General > Extracting Events from One Signal, applying Time to Another

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #12568

    I have speed data from two fans. I use a formula to calculate the difference between them and event isolation to determine times when this difference is greater than +/- 30 rpm.

    I then wish to use the associated time stamps to observe the vibration responses when the fan speed difference is greater than +/- 30 rpm.

    The raw data are in separate signals but all have the same time base. I am using version 8.0.24 standard

    #8231

    I have speed data from two fans. I use a formula to calculate the difference between them and event isolation to determine times when this difference is greater than +/- 30 rpm.

    I then wish to use the associated time stamps to observe the vibration responses when the fan speed difference is greater than +/- 30 rpm.

    The raw data are in separate signals but all have the same time base. I am using version 8.0.24 standard

    #8914
    Bernhard KantzBernhard Kantz
    Participant

    For this you can use the index operator.

    Example:

    
    Dim idx = ValuesInInterval(Speed1 - Speed2, -30, 30, EVENT_INDEX + EVENT_COMPLEMENT)
    Speed1.X[idx]
    

    support@weisang.com

    #8915

    I think I see how that gets me the time stamps in “speed1” but how do I apply this to “response1”?

    #8916
    Bernhard KantzBernhard Kantz
    Participant

    If you have a FPScript formula IDX which calculates the indices you can create an additional formula. This formula creates a signal with the y-values of the data set ‘response1’ and the x-values of ‘speed1’.

    
    Signal(response1[IDX], speed1.X[IDX]
    

    support@weisang.com

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.