#include "cantera/numerics/CVodesIntegrator.h"
#include "cantera/base/stringUtils.h"
#include <iostream>
#include "sundials/sundials_types.h"
#include "sundials/sundials_math.h"
#include "sundials/sundials_nvector.h"
#include "nvector/nvector_serial.h"
#include "cvodes/cvodes.h"
#include "cvodes/cvodes_dense.h"
#include "cvodes/cvodes_band.h"
#include "cvodes/cvodes_diag.h"
#include "cvodes/cvodes_spgmr.h"
Go to the source code of this file.
|
#define | CV_SS 1 |
|
#define | CV_SV 2 |
|
|
static int | cvodes_rhs (realtype t, N_Vector y, N_Vector ydot, void *f_data) |
| Function called by cvodes to evaluate ydot given y. More...
|
|
static void | cvodes_err (int error_code, const char *module, const char *function, char *msg, void *eh_data) |
| Function called by CVodes when an error is encountered instead of writing to stdout. More...
|
|