Class RungeKutta45OdeSolver solves an initial value, Ordinary Differential
Equation (ODE) using an explicit Runge-Kutta (4,5) formula known as the Dormand-Prince pair.
The RungeKutta45OdeSolver..::.Solution<(Of <(Ytype>)>) type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| RungeKutta45OdeSolver..::.Solution<(Of <(Ytype>)>) | Initializes a new instance of the RungeKutta45OdeSolver..::.Solution<(Of <(Ytype>)>) class |
Methods
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| GetHashCode |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
| GetType |
Gets the Type of the current instance.
(Inherited from Object.) | |
| ToString | (Inherited from Object.) |
Properties
| Name | Description | |
|---|---|---|
| NumFailedSteps |
Number of falied integration steps during the calculation. This is the number
of times a new step size needed to be recalculated because the
current one's error estimate was too large.
| |
| NumFunctionEvaluations |
Number of time sthe ODE function was evaluated.
| |
| NumSuccessfulSteps |
Number of successful integration steps during the calculation. A
successful step is when the current stepn size yields an acceptable
error estimate and hence does not need to be recalculated.
| |
| T |
The time values for the solution.
| |
| Y |
The state values for the solution.
|