First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Have you considered using the matplotlib
library bundled with the PSS/E? Sample code after you have your time, and channel data read into memory:
from matplotlib import pyplot as plt
plt.plot(time_data, channel_one_data, label='channel_one')
plt.plot(time_data, channel_two_data, label='channel_two')
plt.legend()
plt.show()