plots.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef CT_PLOTS_H
00015 #define CT_PLOTS_H
00016
00017
00018 #include "Array.h"
00019 #include "ctexceptions.h"
00020
00021 #include <vector>
00022 #include <string>
00023 #include <fstream>
00024
00025 namespace Cantera {
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 void writePlotFile(const std::string &fname, const std::string &fmt,
00038 const std::string &plotTitle, const std::vector<std::string> &names,
00039 const Array2D& data);
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 void outputTEC(std::ostream &s, const std::string &title,
00051 const std::vector<std::string>& names,
00052 const Array2D& data);
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 void outputExcel(std::ostream &s, const std::string &title,
00064 const std::vector<std::string>& names,
00065 const Array2D& data);
00066 }
00067
00068 #endif