exporting dynamic simulation results to excel using python
Hello all!
Does anybody know how to export the contents of the CHANNELs after a dynamic simulation to excel, using python commands?
thanks; and best regards!
Pieter
First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
Hello all!
Does anybody know how to export the contents of the CHANNELs after a dynamic simulation to excel, using python commands?
thanks; and best regards!
Pieter
You can try use 'dyntools' module. the function CHNF will read the dynamic simulation result files. then you can use 'xlsout' function to export to excel.
import os import sys sys.path.append('C:/Program Files (x86)/PTI/PSSEUniversity33/pssbin') sys.path.append('C:/Program Files (x86)/PTI/PSSEUniversity33/psslib')
import dyntools
achnf = dyntools.CHNF(outfile1); achnf.xlsout(self, channels='', show=True, xlsfile='', outfile='', sheet='', overwritesheet=True);
Hey,my bro.I want to know the dyntools in detail.I have PSSE V34.But I do not find dyntools.I find dyntools_demos.Are dyntools and dyntools_demo the same files?And dyntools_demo in PSSE V34 do not have attribute 'CHNF'.What should I do?
Thank you sir! It worked great! Dyntools is indeed the way to export channel data. For xlsout, pywin32 module must be installed. This didn't work for me, but i found another command to export the channel data to a txt file: chnfobj.txtout(channels=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22], txtfile='outfile.txt')
In my case, i first did a dynamic simulation (before exporting the channel data to txt file), and before starting the dyn simulation, assigned the generator speed deviations, SPEED, to chans 1 till 22. I had 22 generators. Chan 1 corresponded to SPEED of generator 1013, chan 2 to gen 2035 annd so on
You can refer to the PDF file named API.This file you can find it in DOCS folder.
Asked: Nov 18 '13
Seen: 3,118 times
Last updated: Nov 19 '13
Dynamic Simulation Relative Angle
run dynamic simulation without having dynamic parameters in the *.dyr file
IEEE 39 BUS DYNAMIC SIMULATION IN PSSE
Best way to read *.out file with PSSExplore34? Excel or python?
How to ramp the value of exciter output voltage in dynamic simulation?
How do I export short circuit data(.sc) to an excel file using pss/e and python?
create dynamic data for a PSSE network file