TDS: IEEE14 bus system, Use Case: 1.1 demo_DGPRCT1.ipynb #255
-
Hi Dr. Cui, I followed the 1.1 demo_DGPRCT1.ipynb use case. After running the TDS, I'm plotting the graph using following command:
It plotted the graph as shown below: I checked the data in variable ss.TGOV1.LAG_y, it contains following data: The data contained in array v seems to be the starting point of the lines. Please correct me If I'm wrong. My query is: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
The full data can be retrieved at Also see https://github.com/cuihantao/andes/blob/master/examples/2.%20inspect_data.ipynb, although it needs improving by adding examples. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your response, I checked the data at It does not seem to have any value to draw the lines of the above mentioned plot. |
Beta Was this translation helpful? Give feedback.
ss.TGOV1.LAT_y.v
contains the data for the very last time stamp.The full data can be retrieved at
ss.dae.ts.x[:, ss.TGOV1.LAG_y.a]
, and the corresponding timestamps are inss.dae.ts.t
.Also see https://github.com/cuihantao/andes/blob/master/examples/2.%20inspect_data.ipynb, although it needs improving by adding examples.