First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
In my dynamic simulation of the IEEE9 bus system, I wish to retrieve the real power generation data of generator buses w.r.t. time. However there seems to be an inconsistency between the values of Real Power retrieved when I use
ierr, current_PGEN = psspy.amachreal(-1, string = "PGEN")
or
ierr, current_PGEN = psspy.agenbusreal(-1, string = "PGEN")
which show the same constant values as in steady state
as opposed to the command
chnfobj = dyntools.CHNF(outfile)
which shows the correct values for the real powers generated in its POWR columns in the resultant excel file.
Some context for the simulation:
agenbusreal
and amachreal
) give values for only that instant, I'm appending the output values to one table for the whole run, instance by instance.