First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
Use module dyntools
to convert the file to CSV-format.
import dyntools
output_obj = dyntools.CHNF('outfile.out')
output_obj.csvout(channels=[])
This will export all channels to CSV-file. Select specific channels with argument channels. e.g. channel 4, 5 and 6 with channels = [4,5,6]
. See also help documentation for dyntools.