Fix include paths for tests and samples

This commit is contained in:
Ray Speth 2012-02-12 02:47:21 +00:00
parent c31e48cfb3
commit 1bffc6e150
58 changed files with 230 additions and 229 deletions

View file

@ -8,9 +8,9 @@
#include <time.h>
#include "AxiStagnBVP.h"
#include "ArrayViewer.h"
#include "ctml.h"
#include "MultiJac.h"
#include "cantera/numerics/ArrayViewer.h"
#include "cantera/base/ctml.h"
#include "cantera/oneD/MultiJac.h"
using namespace ctml;
using namespace Cantera;

View file

@ -1,8 +1,8 @@
#ifndef CT_EXAMPLE_UTILS_H
#define CT_EXAMPLE_UTILS_H
#include <cantera/kernel/Array.h>
#include <cantera/kernel/plots.h>
#include <cantera/base/Array.h>
#include <cantera/base/plots.h>
// Save the temperature, density, pressure, and mole fractions at one
// time

View file

@ -1,5 +1,5 @@
#include "gtest/gtest.h"
#include "cantera/kernel/NasaPoly1.h"
#include "cantera/thermo/NasaPoly1.h"
namespace Cantera
{

View file

@ -2,9 +2,9 @@
* Copyright 2002 California Institute of Technology
*/
#include "Cantera.h"
#include "IdealGasMix.h"
#include "equilibrium.h"
#include "cantera/Cantera.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equilibrium.h"
using namespace std;
using namespace Cantera;

View file

@ -3,14 +3,14 @@
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "ThermoPhase.h"
#include "IdealGasMix.h"
#include "equil.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equil/equil.h"
#else
#include "Cantera.h"
#include "IdealGasMix.h"
#include "equilibrium.h"
#include "cantera/Cantera.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equilibrium.h"
#endif
using namespace std;

View file

@ -1,12 +1,12 @@
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "ThermoPhase.h"
#include "IdealGasMix.h"
#include "equil.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equil/equil.h"
#else
#include "Cantera.h"
#include "IdealGasMix.h"
#include "equilibrium.h"
#include "cantera/Cantera.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equilibrium.h"
#endif

View file

@ -3,14 +3,14 @@
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "ThermoPhase.h"
#include "IdealGasMix.h"
#include "equil.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equil/equil.h"
#else
#include "Cantera.h"
#include "IdealGasMix.h"
#include "equilibrium.h"
#include "cantera/Cantera.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equilibrium.h"
#endif
using namespace std;

View file

@ -20,11 +20,11 @@ using namespace std;
/*****************************************************************/
/*****************************************************************/
#include "Cantera.h"
#include "transport.h"
#include "IdealGasMix.h"
#include "cantera/Cantera.h"
#include "cantera/transport.h"
#include "cantera/IdealGasMix.h"
#include "kernel/TransportFactory.h"
#include "cantera/transport/TransportFactory.h"
using namespace Cantera;

View file

@ -2,6 +2,7 @@ from buildutils import *
Import('env','buildTargets','installTargets')
localenv = env.Clone()
localenv.Append(CPPPATH=['#include', '#src'])
os.environ['PYTHONPATH'] = pjoin(os.getcwd(), '..', 'Cantera', 'python')
os.environ['CANTERA_DATA'] = pjoin(os.getcwd(), '..', 'data', 'inputs')

View file

@ -2,15 +2,15 @@
* Copyright 2002 California Institute of Technology
*/
#include "Cantera.h"
#include "equilibrium.h"
#include "kernel/vcs_MultiPhaseEquil.h"
#include "kernel/vcs_internal.h"
#include "cantera/Cantera.h"
#include "cantera/equilibrium.h"
#include "cantera/equil/vcs_MultiPhaseEquil.h"
#include "equil/vcs_internal.h"
#include "kernel/ThermoFactory.h"
#include "kernel/IdealGasPhase.h"
#include "kernel/HMWSoln.h"
#include "kernel/StoichSubstanceSSTP.h"
#include "cantera/thermo/ThermoFactory.h"
#include "cantera/thermo/IdealGasPhase.h"
#include "cantera/thermo/HMWSoln.h"
#include "cantera/thermo/StoichSubstanceSSTP.h"
using namespace Cantera;
using namespace std;

View file

@ -2,12 +2,12 @@
* Copyright 2002 California Institute of Technology
*/
#include "Cantera.h"
#include "IdealGasMix.h"
#include "equilibrium.h"
#include "kernel/IdealSolnGasVPSS.h"
#include "kernel/ThermoFactory.h"
#include "kernel/PrintCtrl.h"
#include "cantera/Cantera.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equilibrium.h"
#include "cantera/thermo/IdealSolnGasVPSS.h"
#include "cantera/thermo/ThermoFactory.h"
#include "cantera/base/PrintCtrl.h"
using namespace std;
using namespace Cantera;

View file

@ -3,13 +3,13 @@
* @file DH_graph_1
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "DebyeHuckel.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "kernel/DebyeHuckel.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#endif
#include <cstdio>

View file

@ -3,13 +3,13 @@
* @file DH_graph_1
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "DebyeHuckel.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "kernel/DebyeHuckel.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#endif
#include <cstdio>

View file

@ -3,13 +3,13 @@
* @file DH_graph_1
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "DebyeHuckel.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "kernel/DebyeHuckel.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#endif
#include <cstdio>

View file

@ -3,13 +3,13 @@
* @file DH_graph_1
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "DebyeHuckel.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "kernel/DebyeHuckel.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#endif
#include <cstdio>

View file

@ -3,13 +3,13 @@
* @file DH_graph_1
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "DebyeHuckel.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "kernel/DebyeHuckel.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/DebyeHuckel.h"
#endif
#include <cstdio>

View file

@ -3,18 +3,18 @@
* @file HMW_graph_1.cpp
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "TemperatureTable.h"
#include "ThermoPhase.h"
#include "HMWSoln.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/thermo/HMWSoln.h"
#include "importCTML.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "thermo.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo.h"
#include "TemperatureTable.h"
#include "kernel/HMWSoln.h"
#include "cantera/thermo/HMWSoln.h"
#endif
#include <cstdio>

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -3,18 +3,18 @@
* @file HMW_graph_1.cpp
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "TemperatureTable.h"
#include "ThermoPhase.h"
#include "HMWSoln.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/thermo/HMWSoln.h"
#include "importCTML.h"
#else
#include "Cantera.h"
#include "kernel/logger.h"
#include "thermo.h"
#include "cantera/Cantera.h"
#include "cantera/base/logger.h"
#include "cantera/thermo.h"
#include "TemperatureTable.h"
#include "kernel/HMWSoln.h"
#include "cantera/thermo/HMWSoln.h"
#endif
#include <cstdio>

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -2,10 +2,10 @@
*
* @file HMW_graph_1.cpp
*/
#include "Cantera.h"
#include "cantera/Cantera.h"
#include "kernel/logger.h"
#include "kernel/HMWSoln.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/HMWSoln.h"
#include <cstdio>

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -3,17 +3,17 @@
* @file HMW_graph_1.cpp
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "ThermoPhase.h"
#include "HMWSoln.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/thermo/HMWSoln.h"
#include "importCTML.h"
#else
#include "Cantera.h"
#include "kernel/ThermoPhase.h"
#include "kernel/logger.h"
#include "thermo.h"
#include "kernel/HMWSoln.h"
#include "cantera/Cantera.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/base/logger.h"
#include "cantera/thermo.h"
#include "cantera/thermo/HMWSoln.h"
#endif
#include "TemperatureTable.h"

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -2,9 +2,9 @@
*
* @file HMW_graph_1.cpp
*/
#include "Cantera.h"
#include "thermo.h"
#include "kernel/HMWSoln.h"
#include "cantera/Cantera.h"
#include "cantera/thermo.h"
#include "cantera/thermo/HMWSoln.h"
#include "TemperatureTable.h"
#include <cstdio>

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -2,20 +2,20 @@
* @file HMW_graph_VvT
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "TemperatureTable.h"
#include "HMWSoln.h"
#include "cantera/thermo/HMWSoln.h"
#include "importCTML.h"
#else
//#include "vcsc.h"
#include "Cantera.h"
#include "cantera/Cantera.h"
//#include "vcs_Cantera_input.h"
//#include "vcs_Cantera_convert.h"
#include "kernel/logger.h"
#include "thermo.h"
#include "cantera/base/logger.h"
#include "cantera/thermo.h"
#include "TemperatureTable.h"
#include "kernel/HMWSoln.h"
#include "cantera/thermo/HMWSoln.h"
#endif

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -1,5 +1,5 @@
#include "Cantera.h"
#include "kernel/HMWSoln.h"
#include "cantera/Cantera.h"
#include "cantera/thermo/HMWSoln.h"
#include <cstdio>

View file

@ -1,9 +1,9 @@
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "HMWSoln.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/HMWSoln.h"
#else
#include "Cantera.h"
#include "kernel/HMWSoln.h"
#include "cantera/Cantera.h"
#include "cantera/thermo/HMWSoln.h"
#endif
#include <cstdio>

View file

@ -20,9 +20,9 @@
#include <vector>
#include "Cantera.h"
#include "kernel/IdealSolidSolnPhase.h"
#include "kernel/IdealSolnGasVPSS.h"
#include "cantera/Cantera.h"
#include "cantera/thermo/IdealSolidSolnPhase.h"
#include "cantera/thermo/IdealSolnGasVPSS.h"
#include <cstdio>

View file

@ -19,11 +19,11 @@
#include <vector>
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "IdealMolalSoln.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/IdealMolalSoln.h"
#else
#include "Cantera.h"
#include "kernel/IdealMolalSoln.h"
#include "cantera/Cantera.h"
#include "cantera/thermo/IdealMolalSoln.h"
#endif
#include <cstdio>

View file

@ -20,11 +20,11 @@
#include <vector>
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "IdealSolidSolnPhase.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/IdealSolidSolnPhase.h"
#else
#include "Cantera.h"
#include "kernel/IdealSolidSolnPhase.h"
#include "cantera/Cantera.h"
#include "cantera/thermo/IdealSolidSolnPhase.h"
#endif
#include <cstdio>

View file

@ -7,7 +7,7 @@
#ifndef TEMPERATURE_TABLE_H
#define TEMPERATURE_TABLE_H
//#include "mdp_allo.h"
//#include "cantera/base/mdp_allo.h"
#include <vector>
using std::vector;

View file

@ -3,15 +3,15 @@
* @file HMW_graph_1.cpp
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "logger.h"
#include "ThermoPhase.h"
#include "StoichSubstanceSSTP.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/logger.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/thermo/StoichSubstanceSSTP.h"
#include "importCTML.h"
#else
#include "Cantera.h"
#include "thermo.h"
#include "kernel/StoichSubstanceSSTP.h"
#include "cantera/Cantera.h"
#include "cantera/thermo.h"
#include "cantera/thermo/StoichSubstanceSSTP.h"
#endif
#include "TemperatureTable.h"

View file

@ -1,4 +1,4 @@
#include "kernel/WaterPropsIAPWSphi.h"
#include "cantera/thermo/WaterPropsIAPWSphi.h"
#include <new>
#include <cstdio>

View file

@ -1,5 +1,5 @@
#include "kernel/WaterPropsIAPWS.h"
#include "cantera/thermo/WaterPropsIAPWS.h"
#include <new>
#include <cstdio>

View file

@ -1,5 +1,5 @@
#include "kernel/WaterPropsIAPWS.h"
#include "cantera/thermo/WaterPropsIAPWS.h"
#include <new>
#include <cstdio>

View file

@ -1,11 +1,11 @@
#include "kernel/ct_defs.h"
#include "kernel/ctexceptions.h"
#include "kernel/global.h"
#include "kernel/xml.h"
#include "kernel/ctml.h"
#include "kernel/PDSS_Water.h"
#include "kernel/ThermoPhase.h"
#include "kernel/VPStandardStateTP.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/ctexceptions.h"
#include "cantera/base/global.h"
#include "cantera/base/xml.h"
#include "cantera/base/ctml.h"
#include "cantera/thermo/PDSS_Water.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/thermo/VPStandardStateTP.h"
#include <new>
#include <cstdio>

View file

@ -1,6 +1,6 @@
#include "Cantera.h"
#include "thermo.h"
#include "kernel/WaterSSTP.h"
#include "cantera/Cantera.h"
#include "cantera/thermo.h"
#include "cantera/thermo/WaterSSTP.h"
#include <cstdio>
#include <cmath>

View file

@ -1,14 +1,14 @@
#include "kernel/ct_defs.h"
#include "kernel/ctexceptions.h"
#include "kernel/global.h"
#include "kernel/xml.h"
#include "kernel/ctml.h"
#include "kernel/ThermoPhase.h"
#include "kernel/VPStandardStateTP.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/ctexceptions.h"
#include "cantera/base/global.h"
#include "cantera/base/xml.h"
#include "cantera/base/ctml.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/thermo/VPStandardStateTP.h"
#include "kernel/WaterSSTP.h"
#include "kernel/WaterTransport.h"
#include "cantera/thermo/WaterSSTP.h"
#include "cantera/transport/WaterTransport.h"
#include <new>
#include <cstdio>

View file

@ -1,8 +1,8 @@
#ifndef CT_EXAMPLE_UTILS_H
#define CT_EXAMPLE_UTILS_H
#include <cantera/kernel/Array.h>
#include <cantera/kernel/plots.h>
#include <cantera/base/Array.h>
#include <cantera/base/plots.h>
// Save the temperature, density, pressure, and mole fractions at one
// time

View file

@ -26,8 +26,8 @@ int iDebug_HKM = 0;
/*****************************************************************/
/*****************************************************************/
#include "Cantera.h"
#include "kinetics.h"
#include "cantera/Cantera.h"
#include "cantera/kinetics.h"
using namespace Cantera;

View file

@ -26,8 +26,8 @@ int iDebug_HKM = 0;
/*****************************************************************/
/*****************************************************************/
#include "Cantera.h"
#include "kinetics.h"
#include "cantera/Cantera.h"
#include "cantera/kinetics.h"
using namespace Cantera;

View file

@ -28,15 +28,15 @@ int iDebug_HKM = 0;
/*****************************************************************/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "ctml.h"
#include "GasKinetics.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/ctml.h"
#include "cantera/kinetics/GasKinetics.h"
#include "importCTML.h"
#include "ThermoPhase.h"
#include "InterfaceKinetics.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/kinetics/InterfaceKinetics.h"
#else
#include "Cantera.h"
#include "kinetics.h"
#include "cantera/Cantera.h"
#include "cantera/kinetics.h"
#endif
using namespace Cantera;

View file

@ -27,8 +27,8 @@ int iDebug_HKM = 0;
/*****************************************************************/
/*****************************************************************/
#include "Cantera.h"
#include "kinetics.h"
#include "cantera/Cantera.h"
#include "cantera/kinetics.h"
using namespace Cantera;

View file

@ -1,14 +1,14 @@
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "ctml.h"
#include "GasKinetics.h"
#include "cantera/base/ct_defs.h"
#include "cantera/base/ctml.h"
#include "cantera/kinetics/GasKinetics.h"
#include "importCTML.h"
#include "ThermoPhase.h"
#include "InterfaceKinetics.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/kinetics/InterfaceKinetics.h"
#else
#include "Cantera.h"
#include "kinetics.h"
#include "cantera/Cantera.h"
#include "cantera/kinetics.h"
#endif
using namespace Cantera;

View file

@ -32,11 +32,11 @@ using namespace std;
/*****************************************************************/
/*****************************************************************/
#include "Cantera.h"
#include "transport.h"
#include "IdealGasMix.h"
#include "cantera/Cantera.h"
#include "cantera/transport.h"
#include "cantera/IdealGasMix.h"
#include "kernel/TransportFactory.h"
#include "cantera/transport/TransportFactory.h"
using namespace Cantera;

View file

@ -32,11 +32,11 @@ using namespace std;
/*****************************************************************/
/*****************************************************************/
#include "Cantera.h"
#include "transport.h"
#include "IdealGasMix.h"
#include "cantera/Cantera.h"
#include "cantera/transport.h"
#include "cantera/IdealGasMix.h"
#include "kernel/TransportFactory.h"
#include "cantera/transport/TransportFactory.h"
using namespace Cantera;

View file

@ -1,5 +1,5 @@
#include "Cantera.h"
#include "kinetics.h"
#include "cantera/Cantera.h"
#include "cantera/kinetics.h"
#include <string>

View file

@ -3,9 +3,9 @@
#include <cmath>
#include <sstream>
#include "Cantera.h"
#include "kernel/PrintCtrl.h"
#include "kernel/LogPrintCtrl.h"
#include "cantera/Cantera.h"
#include "cantera/base/PrintCtrl.h"
#include "base/LogPrintCtrl.h"
using namespace Cantera;
using namespace std;

View file

@ -1,4 +1,4 @@
#include "PureFluid.h"
#include "cantera/PureFluid.h"
#include <new>
#include <cstdio>
#include <cmath>

View file

@ -3,14 +3,14 @@
*/
#ifdef SRCDIRTREE
#include "ct_defs.h"
#include "ThermoPhase.h"
#include "IdealGasMix.h"
#include "equil.h"
#include "cantera/base/ct_defs.h"
#include "cantera/thermo/ThermoPhase.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equil/equil.h"
#else
#include "Cantera.h"
#include "IdealGasMix.h"
#include "equilibrium.h"
#include "cantera/Cantera.h"
#include "cantera/IdealGasMix.h"
#include "cantera/equilibrium.h"
#endif
using namespace std;

View file

@ -1,7 +1,7 @@
#include "Cantera.h"
#include "spectra.h"
#include "kernel/Nuclei.h"
#include "cantera/Cantera.h"
#include "cantera/spectra.h"
#include "spectra/Nuclei.h"
#include <iostream>
using namespace std;
using namespace Cantera;

View file

@ -34,12 +34,12 @@ static void printUsage()
}
#include "Cantera.h"
#include "Interface.h"
#include "cantera/Cantera.h"
#include "cantera/Interface.h"
#include "kinetics.h"
#include "kernel/ImplicitSurfChem.h"
#include "kernel/solveSP.h"
#include "cantera/kinetics.h"
#include "kinetics/ImplicitSurfChem.h"
#include "kinetics/solveSP.h"
using namespace Cantera;

View file

@ -33,12 +33,12 @@ static void printUsage()
}
#include "Cantera.h"
#include "Interface.h"
#include "cantera/Cantera.h"
#include "cantera/Interface.h"
#include "kinetics.h"
#include "kernel/ImplicitSurfChem.h"
#include "kernel/solveSP.h"
#include "cantera/kinetics.h"
#include "kinetics/ImplicitSurfChem.h"
#include "kinetics/solveSP.h"
using namespace Cantera;

View file

@ -2,11 +2,11 @@
* Sample program that solves an implicit problem for surface
* site fractions.
*/
#include "Cantera.h"
#include "cantera/Cantera.h"
#include <iostream>
#include "IdealGasMix.h"
#include "Interface.h"
#include "cantera/IdealGasMix.h"
#include "cantera/Interface.h"
using namespace Cantera;
using namespace std;