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.
First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
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.
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
Asked: 2015-04-26 04:49:59 -0500
Seen: 1,864 times
Last updated: Apr 28 '15
Retrieve MW and MVAR from Load
Commands to output branch data in PSSE 32
How can you edit branch data from PSSE raw file using Python? [closed]
How to save report data to program memory?
Is there anyway I can count number of branches between specific buses?
Automatically Change All Rates
How does PSSE file match real-time branch flow measurements?
How does PSSE file match real-time branch flow measurements?