First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
I use python to export Bus, Branches, Machines from PSS/E; I write code similar to:
istrings = ['number', 'type', 'area', 'zone', 'status'] ierr, idata = psspy.agenbusint(1,1,istrings)
rstrings = ['base', 'pu', 'kv', 'angle', 'pgen', 'qgen', 'mva', 'percent', 'pmax', 'pmin', 'qmax', 'qmin'] ierr, rdata = psspy.agenbusreal(1,1,rstrings)
cstrings = ['name', 'exname'] ierr, cdata = psspy.agenbuschar(1,1,cstrings)
But I don't know how to export Load and Transformers data from PSS/E.
2 | syntax highlighting |
I use python to export Bus, Branches, Machines from PSS/E; I write code similar to:
istrings = ['number', 'type', 'area', 'zone', 'status']
ierr, idata = But I don't know how to export Load and Transformers data from PSS/E.