added phi title to output csv file

This commit is contained in:
Dave Goodwin
2005-09-22 03:45:45 +00:00
parent 29825431df
commit abd8130e99

View File

@@ -86,7 +86,7 @@ for i in range(npoints):
csvfile = 'adiabatic.csv'
f = open(csvfile,'w')
writeCSV(f,['T (K)']+mix.speciesNames())
writeCSV(f,['phi','T (K)']+mix.speciesNames())
for n in range(npoints):
writeCSV(f,[phi[n], tad[n]]+list(xeq[:,n]))
f.close()