Ask Your Question
0

Export line data

asked 2016-12-06 13:16:31 -0500

vikram gravatar image

How would you export line data with admittances, line connections, angle at all the buses after running a power flow, B inverse matrix by using PSSE?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2016-12-08 16:46:53 -0500

mjinli gravatar image

Admittance matrix:

psspy.output_y_matrix(0,1,0,0,r"""C:\example.dat""")

and then use the csv module to read the file you create.

You can also read the line connections from that file after removing self-admittance entries.

For bus angles, you can use

ierr, rarray = abusreal(0, 2, "ANGLED")

See the API documentation for more options for abusreal if you want to specify a subsystem or limit the results to only in-service buses.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

[hide preview]

Question Tools

1 follower

Stats

Asked: 2016-12-06 13:16:31 -0500

Seen: 1,786 times

Last updated: Dec 08 '16