Fix ave/time as csv file

Hello,

Is it possible to have the ave/time output be comma delimited instead of space delimited?

Thanks,
Frank

This is easy to do after the simulation is done:

awk '{$1=$1; OFS=","}1' file.dat > file.csv

Simon

Sure there’s always post-processing but with fix print, it’s easy to output comma delimited files. So I was hoping there might be a way to setup the output in a similar fashion.

Does it have to be csv? There is an option for outputting yaml.

You could also experiment with the “format” keyword.