First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Hello, I have been using the following lines of code to generate the .out and excel files after a dynamic simulation:
psspy.set_chnfil_type(0) # generate .out file (0), not .outx (1)
psspy.change_channel_out_file(outFile)
# run dynamic simulation
psspy.strt_2([0,1],outFile)
*dynamic simuation here*
import dyntools
chnfobj=dyntools.CHNF(outFile)
chnfobj.xlsout(channels=[],show= False)
Now when I open PSSPLT, select CHNF and select a .out file, there is an error that says Invalid file type <file_path> (RWFIL)
Thank you.