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: 2,130 times
Last updated: Apr 28 '15
How does PSSE file match real-time branch flow measurements?
Add kneepoint to a branch object
Automatically Change All Rates
Return Branch data element in Actual value
Commands to output branch data in PSSE 32
Retrieve MW and MVAR from Load
How to save report data to program memory?
How does PSSE file match real-time branch flow measurements?
Is there anyway I can count number of branches between specific buses?
whit loves you. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.