First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
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)