phasereport.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifdef WIN32
00016 #pragma warning(disable:4786)
00017 #pragma warning(disable:4503)
00018 #endif
00019
00020 #include "ThermoPhase.h"
00021 #include "PureFluidPhase.h"
00022 #include "mix_defs.h"
00023
00024 #include <cstdio>
00025
00026 using namespace std;
00027
00028 namespace Cantera {
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 std::string report(const ThermoPhase& th, const bool show_thermo) {
00039 return th.report(show_thermo);
00040 }
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 void writephase(const ThermoPhase& th, bool show_thermo) {
00052 std::string s = report(th, show_thermo);
00053 writelog(s+"\n");
00054 }
00055
00056
00057
00058 }
00059
00060