Mattes_potter Posted August 16 Share Posted August 16 Hello everybody, I want to calculate the Minima values of a continuous signal within each year, but only the Minima that are constant for a certain duration, e.g., for at least 1hour. (Maybe it would be good to define a +/- 5% fluctuation of this „constant@ value) For Example, my signal is normally around 8 bar. In year 2017 There are a few dips of 2bar but only for a few minutes and a few dips of 3,2 bar for 2h. My function should give me the 3,2 bar out for this year. For 2018 it could be different. I hope that was described well enough? Thank you Regards Mattes Link to comment Share on other sites More sharing options...
Seeq Team Kin How Posted August 22 Seeq Team Share Posted August 22 You can try the solution below. Set a low threshold to detect the minima, for example 5. Create a formula $signal.remove(($signal < 5).removeshorterthan(1h)). This will remove the short dips (shorter than 1 hour) from your data. Calculate the yearly minimum value of the signal in step 2 using Signal from Condition tool with a Yearly periodic condition as the bounding condition. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now