-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor nominal voltage filter to support voltage ranges #101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Replaced nominal voltage field with voltage ranges in `GlobalFilter`. Updated related methods, rules, and tests to handle range-based filtering using `BETWEEN` operator. Signed-off-by: Florent MILLOT <[email protected]> Signed-off-by: Florent MILLOT <[email protected]>
src/main/java/org/gridsuite/filter/globalfilter/GlobalFilterUtils.java
Outdated
Show resolved
Hide resolved
Mathieu-Deharbe
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK (given that the specific OperatorType.BETWEEN with open ended end will be done in an other PR)
…ils.java Co-authored-by: Mathieu Deharbe <[email protected]>
EtienneLt
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code OK Test OK
in another issue to fix the min max
# Conflicts: # src/main/java/org/gridsuite/filter/globalfilter/GlobalFilterUtils.java # src/test/java/org/gridsuite/filter/globalfilter/GlobalFilterUtilsTest.java
|



PR Summary
Replaced the
nominal voltagefield inGlobalFilterbyvoltage ranges. Updated methods, rules, and tests to enable filtering based on ranges using theBETWEENoperator.