Branch current magnitude and angle?
Is there a way to get each branch's current magnitude and angle. The only one I'm finding is aflowreal to get the magnitude but is there a way to get the angle?
add a comment
Is there a way to get each branch's current magnitude and angle. The only one I'm finding is aflowreal to get the magnitude but is there a way to get the angle?
How about aflowcplx?
ierr, xarray = psspy.aflowcplx(sid, owner, ties, flag, 'PQ')
angles = [numpy.angle(x) for x in xarray]