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

Ask Your Question
0

How to get MVA at "to" end of branch through API

asked Jan 15 '15

JDRobers gravatar image

Hello forum,

For starters, I am using PSSE version 33.4.

I am trying to create a program that calculates and reports adjusted MVA values for branches. However, I need to report the maximum adjusted MVA for each branch, as in:

max(MVAfrom/frombusperunitvoltage, MVAto/tobusperunitvoltage)

The problem is that the API documentation for abrnreal suggests that I can only get either the MVA at the from bus, or the MAXMVA, meaning either the MVA at the from bus or the to bus, whichever is greater. But if the maximum MVA happens to be at the from bus, then I can't possibly read the MVA at the to bus end.

Is there another way to just get the MVA at the to bus end?

3 answers

Sort by » oldest newest most voted
0

answered Feb 13 '15

JDRobers gravatar image

Thanks guys.

What I wound up doing was using the abrnreal API call, and used the entry = 2 parameter to have each branch listed twice; once going from-to and the other going to-from. It takes some filtering and quite a bit of data storage, but I can indeed query P, Q, and MVA at both ends. I just have to see if the entry has been found already first (in which case I am looking at the to-from entry rather than the from-to entry.)

I appreciate the responses!

link
0

answered Jan 26 '15

rimux gravatar image

from API manual:

ierr, rval = brnmsc(ibus,jbus,ickt,string)
P Branch MW flow at the IBUS end of the branch.
Q Branch Mvar flow at the IBUS end of the branch.

You can get P and Q at the desired branch end just by placing correct bus number into ibus place. Formula for MVA:

S=sqrt(P^2+Q^2)
link
0

answered Jan 21 '15

jconto gravatar image

updated Jan 21 '15

You can use "aflowreal" to get the flows between two buses in the defined SID. Flows are calculated on both directions. The attached file outputs the flows in a branch (both direction). With a little code added, you can select the MAXMVA flow between them. To run the code, load a case in to PSSe,set the SID parameters (by the end of the code) and run it.

download C:\fakepath\branchflows.gif

by right-click and select 'save link as', and changing the xx.gif to branchflows.py.

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

1 follower

Stats

Asked: Jan 15 '15

Seen: 3,017 times

Last updated: Feb 13 '15