First time here? Check out the FAQ!
1

Read CHAN(7) from .out file

How to read the data of CHAN(7) from .out file.

Thanks

XRW's avatar
13
XRW
asked 2014-04-01 15:13:28 -0500, updated 2014-04-01 15:13:48 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

1

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]
EBahr's avatar
420
EBahr
answered 2014-04-02 15:39:17 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments