First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!

Ask Your Question
0

branch loading

asked Apr 26 '15

qoovm0vm0 gravatar image

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.

1 answer

Sort by » oldest newest most voted
0

answered Apr 28 '15

nwilson gravatar image

updated Apr 28 '15

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

link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.
Want to format code in your answer? Here is a one minute demo on Youtube

Add Answer

[hide preview]

Question Tools

Stats

Asked: Apr 26 '15

Seen: 1,911 times

Last updated: Apr 28 '15