Ask Your Question

Revision history [back]

click to hide/show revision 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.