-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
It appears correct.
Are you talking about the fast transient between 0.11 s and 0.13 s? It is the fast transients after changing cutting the lines. Also, the way you plot it is not correct. Since the time stamps are not evenly spaced, you need to space them by the value, not the same spacing for consecutive samples. With that fixed, the transient will appear much faster.
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the drawing! It has to do with how fault clearance is implemented. By default, all bus voltages are restored to pre fault values upon fault clearance. This is to provide a good initial values for the voltages of post-fault equilibrium. See https://github.com/cuihantao/andes/blob/aa4567c2bfc2b80b5357316bd434717dd49dc37b/andes/models/timer.py#L178 In this case, clearing the fault on Bus 7 should not affect buses 6 or 8, as bus 7 is isolated. Can you try modifying the config file and change “restore” to 0 in section “[Fault]”? |
Beta Was this translation helpful? Give feedback.
-
Thanks again. I'm looking into this. It would be helpful if you can share your case. I'm currently starting from the original 39-bus system. |
Beta Was this translation helpful? Give feedback.
-
After some initial investigation, I found two related issues:
When voltages are restored at 0.13 s, the system without bus 7 finds a high-voltage power flow. That's the reason the left figure has voltage changes on buses 6 and 8. When voltages are not restored, the system does not have a good initial value to restore to the high-voltage solution after 0.2 s. All voltages remain low, as shown in your right figure. The workaround is to clear the fault at 0.2 s, concurrent with the closure with lines. Voltages will be restored to the pre-fault one at 0.2 s correctly. I'm not sure of a permanent solution as By the way, the voltage on Bus 7 when isolated has no mathematical meaning because there is no power flow to it. |
Beta Was this translation helpful? Give feedback.
After some initial investigation, I found two related issues:
When voltages are restored at 0.13 s, the system without bus 7 finds a high-voltage power flow. That's the reason the left figure has voltage changes on buses 6 and 8.
When voltages are not restored, the system does not have a good initial value to restore to the high-voltage solution after 0.2 s. All voltages remain low, as shown in your right figure.
The workaround is to clear the faul…