-
Notifications
You must be signed in to change notification settings - Fork 0
unsettable fields in voltage level filter modification #92
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
unsettable fields in voltage level filter modification #92
Conversation
Signed-off-by: Mathieu DEHARBE <[email protected]>
Signed-off-by: Mathieu DEHARBE <[email protected]>
Signed-off-by: Mathieu DEHARBE <[email protected]>
Signed-off-by: Mathieu DEHARBE <[email protected]>
Signed-off-by: Mathieu DEHARBE <[email protected]>
src/main/java/org/gridsuite/modification/dto/byfilter/equipmentfield/GeneratorField.java
Outdated
Show resolved
Hide resolved
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.
Group issues :
- Unsetting Transient reactance on Generator does not seems to work.
- Crash if you change Transient reactance and Transformer reactance in the same time.
src/main/java/org/gridsuite/modification/modifications/GeneratorModification.java
Outdated
Show resolved
Hide resolved
src/main/java/org/gridsuite/modification/modifications/GeneratorModification.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Mathieu DEHARBE <[email protected]>
} | ||
case RATED_NOMINAL_POWER -> { | ||
Double ratedNominalPower = Double.parseDouble(newValue); | ||
Double ratedNominalPower = newValue != null ? Double.parseDouble(newValue) : Double.NaN; |
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.
maybe you should make a function og this as it is repeated several times
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.
Done here : 50d2b43
Signed-off-by: Mathieu DEHARBE <[email protected]>
|
No description provided.