Cantera
2.2.1
|
Wrapper class for 'cvodes' integrator from LLNL. More...
#include <CVodesIntegrator.h>
Public Member Functions | |
CVodesIntegrator () | |
Constructor. More... | |
virtual void | setTolerances (double reltol, size_t n, double *abstol) |
Set or reset the number of equations. More... | |
virtual void | setTolerances (double reltol, double abstol) |
Set error tolerances. More... | |
virtual void | setSensitivityTolerances (double reltol, double abstol) |
Set the sensitivity error tolerances. More... | |
virtual void | setProblemType (int probtype) |
Set the problem type. More... | |
virtual void | initialize (double t0, FuncEval &func) |
Initialize the integrator for a new problem. More... | |
virtual void | reinitialize (double t0, FuncEval &func) |
virtual void | integrate (double tout) |
Integrate the system of equations. More... | |
virtual doublereal | step (double tout) |
Integrate the system of equations. More... | |
virtual double & | solution (size_t k) |
The current value of the solution of equation k. More... | |
virtual double * | solution () |
The current value of the solution of the system of equations. More... | |
virtual int | nEquations () const |
The number of equations. More... | |
virtual int | nEvals () const |
The number of function evaluations. More... | |
virtual void | setMaxOrder (int n) |
Set the maximum integration order that will be used. More... | |
virtual void | setMethod (MethodType t) |
Set the solution method. More... | |
virtual void | setIterator (IterType t) |
Set the linear iterator. More... | |
virtual void | setMaxStepSize (double hmax) |
Set the maximum step size. More... | |
virtual void | setMinStepSize (double hmin) |
Set the minimum step size. More... | |
virtual void | setMaxSteps (int nmax) |
virtual void | setMaxErrTestFails (int n) |
Set the maximum permissible number of error test failures. More... | |
virtual void | setBandwidth (int N_Upper, int N_Lower) |
virtual int | nSensParams () |
virtual double | sensitivity (size_t k, size_t p) |
virtual std::string | getErrorInfo (int N) |
Returns a string listing the weighted error estimates associated with each solution component. More... | |
Public Member Functions inherited from Integrator | |
Integrator () | |
Default Constructor. More... | |
virtual | ~Integrator () |
Destructor. More... | |
Public Attributes | |
std::string | m_error_message |
Error message information provide by CVodes. More... | |
Protected Member Functions | |
void | applyOptions () |
Applies user-specified options to the underlying CVODES solver. More... | |
Private Member Functions | |
void | sensInit (double t0, FuncEval &func) |
Private Attributes | |
size_t | m_neq |
void * | m_cvode_mem |
double | m_t0 |
double | m_time |
The current integrator time. More... | |
N_Vector | m_y |
N_Vector | m_abstol |
int | m_type |
int | m_itol |
int | m_method |
int | m_iter |
int | m_maxord |
double | m_reltol |
double | m_abstols |
double | m_reltolsens |
double | m_abstolsens |
size_t | m_nabs |
double | m_hmax |
double | m_hmin |
int | m_maxsteps |
int | m_maxErrTestFails |
FuncData * | m_fdata |
N_Vector * | m_yS |
size_t | m_np |
int | m_mupper |
int | m_mlower |
bool | m_sens_ok |
Indicates whether the sensitivities stored in m_yS have been updated for at the current integrator time. More... | |
Wrapper class for 'cvodes' integrator from LLNL.
Definition at line 36 of file CVodesIntegrator.h.
CVodesIntegrator | ( | ) |
Constructor.
Default settings: dense Jacobian, no user-supplied Jacobian function, Newton iteration.
Definition at line 99 of file CVodesIntegrator.cpp.
|
virtual |
Set or reset the number of equations.
Set error tolerances.
reltol | scalar relative tolerance |
n | Number of equations |
abstol | array of N absolute tolerance values |
Reimplemented from Integrator.
Definition at line 153 of file CVodesIntegrator.cpp.
|
virtual |
Set error tolerances.
reltol | scalar relative tolerance |
abstol | scalar absolute tolerance |
Reimplemented from Integrator.
Definition at line 169 of file CVodesIntegrator.cpp.
|
virtual |
Set the sensitivity error tolerances.
reltol | scalar relative tolerance |
abstol | scalar absolute tolerance |
Reimplemented from Integrator.
Definition at line 176 of file CVodesIntegrator.cpp.
|
virtual |
Set the problem type.
probtype | Type of the problem |
Reimplemented from Integrator.
Definition at line 182 of file CVodesIntegrator.cpp.
|
virtual |
Initialize the integrator for a new problem.
Call after all options have been set.
t0 | initial time |
func | RHS evaluator object for system of equations. |
Reimplemented from Integrator.
Definition at line 270 of file CVodesIntegrator.cpp.
References CVodesIntegrator::applyOptions(), Cantera::cvodes_err(), Cantera::cvodes_rhs(), DATA_PTR, FuncEval::getInitialConditions(), CVodesIntegrator::m_time, FuncEval::neq(), and FuncEval::nparams().
|
virtual |
Integrate the system of equations.
tout | Integrate to this time. Note that this is the absolute time value, not a time interval. |
Reimplemented from Integrator.
Definition at line 408 of file CVodesIntegrator.cpp.
References CVodesIntegrator::getErrorInfo(), Cantera::int2str(), CVodesIntegrator::m_error_message, CVodesIntegrator::m_sens_ok, and CVodesIntegrator::m_time.
|
virtual |
Integrate the system of equations.
tout | integrate to this time. Note that this is the absolute time value, not a time interval. |
Reimplemented from Integrator.
Definition at line 418 of file CVodesIntegrator.cpp.
References CVodesIntegrator::getErrorInfo(), Cantera::int2str(), CVodesIntegrator::m_error_message, CVodesIntegrator::m_sens_ok, and CVodesIntegrator::m_time.
|
virtual |
The current value of the solution of equation k.
Reimplemented from Integrator.
Definition at line 143 of file CVodesIntegrator.cpp.
|
virtual |
The current value of the solution of the system of equations.
Reimplemented from Integrator.
Definition at line 148 of file CVodesIntegrator.cpp.
|
inlinevirtual |
The number of equations.
Reimplemented from Integrator.
Definition at line 55 of file CVodesIntegrator.h.
|
virtual |
The number of function evaluations.
Reimplemented from Integrator.
Definition at line 430 of file CVodesIntegrator.cpp.
|
inlinevirtual |
Set the maximum integration order that will be used.
Reimplemented from Integrator.
Definition at line 59 of file CVodesIntegrator.h.
|
virtual |
Set the solution method.
Reimplemented from Integrator.
Definition at line 187 of file CVodesIntegrator.cpp.
References Cantera::Adams_Method, and Cantera::BDF_Method.
|
virtual |
Set the linear iterator.
Reimplemented from Integrator.
Definition at line 230 of file CVodesIntegrator.cpp.
References Cantera::Functional_Iter, and Cantera::Newton_Iter.
|
virtual |
Set the maximum step size.
Reimplemented from Integrator.
Definition at line 198 of file CVodesIntegrator.cpp.
|
virtual |
Set the minimum step size.
Reimplemented from Integrator.
Definition at line 206 of file CVodesIntegrator.cpp.
|
virtual |
Set the maximum permissible number of error test failures.
Reimplemented from Integrator.
Definition at line 222 of file CVodesIntegrator.cpp.
|
virtual |
Returns a string listing the weighted error estimates associated with each solution component.
This information can be used to identify which variables are responsible for integrator failures or unexpected small timesteps.
Definition at line 460 of file CVodesIntegrator.cpp.
Referenced by CVodesIntegrator::integrate(), and CVodesIntegrator::step().
|
protected |
Applies user-specified options to the underlying CVODES solver.
Called during integrator initialization or reinitialization.
Definition at line 365 of file CVodesIntegrator.cpp.
Referenced by CVodesIntegrator::initialize().
std::string m_error_message |
Error message information provide by CVodes.
Definition at line 84 of file CVodesIntegrator.h.
Referenced by Cantera::cvodes_err(), CVodesIntegrator::integrate(), and CVodesIntegrator::step().
|
private |
The current integrator time.
Definition at line 97 of file CVodesIntegrator.h.
Referenced by CVodesIntegrator::initialize(), CVodesIntegrator::integrate(), and CVodesIntegrator::step().
|
private |
Indicates whether the sensitivities stored in m_yS have been updated for at the current integrator time.
Definition at line 118 of file CVodesIntegrator.h.
Referenced by CVodesIntegrator::integrate(), and CVodesIntegrator::step().