Click or drag to resize

VariableOrderOdeSolver Class

Solver for stiff and non-stiff ordinary differential equations. The algorithm uses higher order methods and smaller step size when the solution varies rapidly.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreOdeSolverBase
    CenterSpace.NMath.CoreVariableOrderOdeSolver

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public class VariableOrderOdeSolver : OdeSolverBase

The VariableOrderOdeSolver type exposes the following members.

Constructors
 NameDescription
Public methodVariableOrderOdeSolverInitializes a new instance of the VariableOrderOdeSolver class
Top
Properties
 NameDescription
Public propertyNumberOfFunctionEvals Gets the number of times that the function f in the differential equation y' = f(t,y) was evaluted.
Top
Methods
 NameDescription
Public methodSolve Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y) or y' = M(t,y)*f(t,y) for problems that involve a mass matrix M.
Top
Remarks
Solves the given initial value problem for ordinary differential equations of the form y' = f(t,y) or y' = M(t,y)*f(t,y) for problems that involve a mass matrix M.
See Also