Take all load data from psse with python
Hi everyone, I have simulated and received a .out file on psse. Now I want to take all load data from psse with python. Could you help me how to take it? Thank you so much
First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
Hi everyone, I have simulated and received a .out file on psse. Now I want to take all load data from psse with python. Could you help me how to take it? Thank you so much
You can use dyntools to extract data from .outx/out file to excel and do all your data manipulation in Python.
outfile = path + r'\output_results' xlsoutput= outfile+'.xls' outfile = outfile+'.outx' xlsresult= dyntools.CHNF(outfile) dyntools.CHNF.xlsout(xlsresult, channels=[], show=False, xlsfile=xlsoutput, outfile=outfile)
Asked: 2020-05-03 09:47:51 -0500
Seen: 498 times
Last updated: May 03 '20