cantera/interfaces/python/Cantera/excel.py
Ray Speth 2528df0f75 Reorganized source tree structure
These changes make it unnecessary to copy header files around during
the build process, which tends to confuse IDEs and debuggers. The
headers which comprise Cantera's external C++ interface are now in
the 'include' directory.

All of the samples and demos are now in the 'samples' subdirectory.
2012-02-12 02:27:14 +00:00

31 lines
861 B
Python
Executable file

"""EXCEL CSV file utilities."""
def write_CSV_data(fname, names, npts, nvar, append, data):
"""
Write CSV data that can be imported into Excel
fname -- file name
names -- sequence of variable names
npts -- number of data points
nvar -- number of variables
append -- if > 0, append to plot file, otherwise overwrite
data -- object to generate plot data. This object must have a
method 'value', defined so that data.value(j,n) returns
the value of variable n at point j.
"""
if append > 0:
f = open(fname,'a')
else:
f = open(fname,'w')
for nm in names:
f.write(nm+',')
f.write('\n')
for j in range(npts):
for n in range(nvar):
f.write('%10.4e, ' % data.value(j,n))
f.write('\n')
f.close()