#include "CVodeInt.h"
#include <iostream>
#include "../../ext/cvode/include/llnltyps.h"
#include "../../ext/cvode/include/llnlmath.h"
#include "../../ext/cvode/include/cvode.h"
#include "../../ext/cvode/include/cvdense.h"
#include "../../ext/cvode/include/cvdiag.h"
#include "../../ext/cvode/include/cvspgmr.h"
#include "../../ext/cvode/include/nvector.h"
#include "cantera/base/stringUtils.h"
Go to the source code of this file.
|
static N_Vector | nv (void *x) |
|
static void | cvode_rhs (integer N, real t, N_Vector y, N_Vector ydot, void *f_data) |
| Function called by cvode to evaluate ydot given y.
|
|
static void | cvode_jac (integer N, DenseMat J, RhsFn f, void *f_data, real t, N_Vector y, N_Vector fy, N_Vector ewt, real h, real uround, void *jac_data, long int *nfePtr, N_Vector vtemp1, N_Vector vtemp2, N_Vector vtemp3) |
| Function called by cvode to evaluate the Jacobian matrix.
|
|