Read CHAN(7) from .out file
How to read the data of CHAN(7) from .out file.
Thanks
add a comment
First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
I would suggest looking into the dyntools
package.
import dyntools
chan = dyntools.CHNF("C:\\PATH\\TO\\YOUR\\CHAN.OUT")
data = chan.get_data()
chan_7_title = data[1][7]
chan_7_data = data[2][7]
Asked: 2014-04-01 15:13:28 -0500
Seen: 2,477 times
Last updated: Apr 02 '14