Click or drag to resize

RungeKutta45OdeSolverSolutionYtype Class

Data structor contiaing solution values an statistics for an ODE solve.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreRungeKutta45OdeSolverSolutionYtype

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public class Solution<Ytype>

Type Parameters

Ytype
The type of the state vector for the ODE being solved. If a system of differential equations are being solved Ytype is a DoubleMatrix. If it is a single differential equation being solved Ytype is a DoubleVector.

The RungeKutta45OdeSolverSolutionYtype type exposes the following members.

Constructors
 NameDescription
Public methodRungeKutta45OdeSolverSolutionYtypeInitializes a new instance of the RungeKutta45OdeSolverSolutionYtype class
Top
Properties
 NameDescription
Public propertyNumFailedSteps 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.
Public propertyNumFunctionEvaluations Number of time sthe ODE function was evaluated.
Public propertyNumSuccessfulSteps 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.
Public propertyT The time values for the solution.
Public propertyY The state values for the solution.
Top
See Also