0

branch loading

How to find the loading(MW) of a single branch (ex: from bus 12 to bus 13) in the system? Is there any python API that I could use? Thanks in advance.

qoovm0vm0's avatar
13
qoovm0vm0
asked 2015-04-26 04:49:59 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

The brnflo method will return MW and MVAR for a branch with sign according to first bus to second bus. The branch ID must always be in single quotes.

ierr, branchflow = psspy.brnflo(12,13,'1')

To see the result, use print branchflow. To see just the MW, use print branchflow.real. To see just the MVAR, use print branchflow.imag

nwilson's avatar
100
nwilson
answered 2015-04-28 09:01:04 -0500, updated 2015-04-28 09:01:55 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Login/Signup to Answer