Commit 7a57e27c authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

include threshold in definition of exceedance event

parent 851a4dc2
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -40,7 +40,7 @@ namespace evalhyd ...@@ -40,7 +40,7 @@ namespace evalhyd
); );
// return a boolean-like array // return a boolean-like array
return q2 > thr; return q2 >= thr;
} }
/// Determine whether flows are strictly lower than given threshold(s) /// Determine whether flows are strictly lower than given threshold(s)
...@@ -72,7 +72,7 @@ namespace evalhyd ...@@ -72,7 +72,7 @@ namespace evalhyd
); );
// return a boolean-like array // return a boolean-like array
return q2 < thr; return q2 <= thr;
} }
} }
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment