Altaxo.Calc.Ode.Obsolete Namespace |
[Missing <summary> documentation for "N:Altaxo.Calc.Ode.Obsolete"]
Classes | Class | Description |
---|
| Characters | |
| CommonBlock | |
| FortranLib | |
| Gauss | Provides implementation of Gaussian elimination with partial pivoting |
| GearsBDFOptions | Options for a former ODE solver. |
| Matrix | Matrix class. |
| Ode |
Realization of some numerical methods for ODE solving.
|
| OdeAdamsMoulton |
Solves an initial-value problem for nonstiff ordinary differential equations using
the Adams-Moulton method.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| OdeGearsBDF | Obsolete.
Solves an initial-value problem for stiff ordinary differential equations using
the Gear’s BDF method.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| OdeHelpers | |
| OdeImplicitRungeKutta5 |
Solves an initial-value problem for stiff ordinary differential equations using
the implicit Runge-Kutta method of order 5.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| Odouble | |
| Oint | |
| Options | ODE solver options |
| SparseMatrix | Sparse matrix class |
| xBaseOdeRungeKutta |
Represents a base class for the Runge-Kutta classes.
|
| xOdeBase |
Represents the base class for the Odes.
|
Structures | Structure | Description |
---|
| SolutionPoint | Structure to represent solution point. Current point has form (t,x1,x2,...,xn), where
n is problem's dimension |
| SparseVector | |
| Vector | Vector implementation. This is thin wrapper over 1D array |
Delegates | Delegate | Description |
---|
| OdeFunction |
Delegate defining the Ordinary Differential Equations (ODEs) dy(i)/dt = f(i) = f(i,t,y(1),y(2),...,y(N)).
|
| OdeJacobian |
Delegate that compute the Jacobian matrix df/dy (size NxN), as a function of the scalar t and the vector y.
|
| OdeSolution |
Delegate used for solution output.
|
Enumerations | Enumeration | Description |
---|
| ErrorToleranceEnum |
Specifies the type of the relative error and absolute error tolerances.
|