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

Methods

  NameDescription
Equals
Determines whether the specified Object is equal to the current Object.
(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
Returns a String that represents the current Object.
(Inherited from Object.)

Properties

  NameDescription
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.

See Also