#include <AbstractOdeSystemWithAnalyticJacobian.hpp>


Public Member Functions | |
| AbstractOdeSystemWithAnalyticJacobian (unsigned numberOfStateVariables=0) | |
| virtual void | AnalyticJacobian (const std::vector< double > &rSolutionGuess, double **jacobian, double time, double timeStep)=0 |
Represents an ODE system with an analytic Jacobian available, which can be computed using the method AnalyticJacobian.
Definition at line 44 of file AbstractOdeSystemWithAnalyticJacobian.hpp.
| virtual void AbstractOdeSystemWithAnalyticJacobian::AnalyticJacobian | ( | const std::vector< double > & | rSolutionGuess, | |
| double ** | jacobian, | |||
| double | time, | |||
| double | timeStep | |||
| ) | [pure virtual] |
Compute the analytic Jacobian matrix of the ODE system.
| rSolutionGuess | the current guess at the solution for this time step | |
| jacobian | will be filled in with the Jacobian matrix entries | |
| time | the current simulation time | |
| timeStep | the time step in use by the integrator at present |
Implemented in TysonNovak2001OdeSystem.
1.5.5