Replies: 2 comments 1 reply
-
@TheASingh and @rana253, are you from the same research group? The recent questions seem closely related. It looks like |
Beta Was this translation helpful? Give feedback.
0 replies
-
Today, I updated ANDES to version 1.7.3. But still Line object doesn't have attribute 'get_field' and System has no attribute 'Breaker'. Please guide why I'm not able to successfully invoke the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
I was searching for a way to break/disable a
Line
dynamically while the TDS is running. I found that in Streaming.py, there is a functionhandle_event(self, Event)
.I tried to call it within the Streaming file. I got an error in following line of code (line number 345 in Streaming.py):
AttributeError: 'Line' object has no attribute 'get_field'
Then to bypass it, I somehow used a static value for bus variable. Then I got the error in following line of code (line number 355 in Streaming.py)
self.system.Breaker.insert(**param)
AttributeError: 'System' object has no attribute 'Breaker'
Please help me understand why I'm facing these errors? Or is this function still a part of testing/RND?
Beta Was this translation helpful? Give feedback.
All reactions