First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
The magnetizing admittance is returned as a complex value. Hence, API ATRNCPLX
shall be used. See example below:
ierr, [ymag] = psspy.atrncplx(-1, entry=1, string=['YMAG'])
for c in ymag:
print(c.real,c.imag)
Here list ymag contains the complex value of (G,B) in pu system base.