*** empty log message ***
This commit is contained in:
parent
7ba23949a1
commit
206ce732db
6 changed files with 1541 additions and 3802 deletions
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
// constructor
|
||||
if (job == 0) {
|
||||
n = reactornet_new(i);
|
||||
n = reactornet_new();
|
||||
plhs[0] = mxCreateNumericMatrix(1,1,mxDOUBLE_CLASS,mxREAL);
|
||||
double *h = mxGetPr(plhs[0]);
|
||||
*h = double(n);
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ mex private/ctmethods.cpp private/ctfunctions.cpp ...
|
|||
private/xmlmethods.cpp private/phasemethods.cpp ...
|
||||
private/thermomethods.cpp private/kineticsmethods.cpp ...
|
||||
private/transportmethods.cpp private/reactormethods.cpp ...
|
||||
private/reactornetmethods.cpp ...
|
||||
private/wallmethods.cpp private/flowdevicemethods.cpp ...
|
||||
private/funcmethods.cpp ...
|
||||
private/onedimmethods.cpp private/surfmethods.cpp private/write.cpp ...
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@
|
|||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
#include "../../../config.h"
|
||||
|
||||
#ifdef HAS_SSTREAM
|
||||
#include <sstream>
|
||||
#endif
|
||||
|
|
@ -25,6 +27,8 @@ using namespace std;
|
|||
#include <time.h>
|
||||
#include "../ct_defs.h"
|
||||
#include "ctml.h"
|
||||
|
||||
|
||||
using namespace Cantera;
|
||||
|
||||
namespace pip {
|
||||
|
|
|
|||
|
|
@ -308,7 +308,7 @@ namespace Cantera {
|
|||
dirs.push_back(datadir);
|
||||
}
|
||||
|
||||
// CANTERA_ROOT is defined in file ctdir.h. This file is written
|
||||
// CANTERA_ROOT is defined in file config.h. This file is written
|
||||
// during the build process (unix), and points to the directory
|
||||
// specified by the 'prefix' option to 'configure', or else to
|
||||
// /usr/local/cantera. This will generally not be defined under
|
||||
|
|
|
|||
5328
config/configure
vendored
5328
config/configure
vendored
File diff suppressed because it is too large
Load diff
6
configure
vendored
6
configure
vendored
|
|
@ -90,7 +90,7 @@ PYTHON_SITE_PACKAGE_TOPDIR=${PYTHON_SITE_PACKAGE_TOPDIR:="/usr/local"}
|
|||
# Matlab script. If this is set to "y" but Matlab is not found, the
|
||||
# Matlab toolbox will not be built.
|
||||
|
||||
BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="n"}
|
||||
BUILD_MATLAB_TOOLBOX=${BUILD_MATLAB_TOOLBOX:="y"}
|
||||
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
|
|
@ -190,6 +190,10 @@ LAPACK_FTN_STRING_LEN_AT_END='y'
|
|||
#
|
||||
CXX=${CXX:=g++}
|
||||
|
||||
# the C compiler to use. This is only used to compile CVODE and
|
||||
# the Python extension module.
|
||||
CC=${CC:=gcc}
|
||||
|
||||
# C++ compiler flags
|
||||
CXXFLAGS=${CXXFLAGS:="-O2 -Wall"}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue