RungeKuttaAlgorithm Properties |
The RungeKuttaAlgorithm type exposes the following members.
Name | Description | |
---|---|---|
Coefficients |
Gets the coefficients "a".
These represent the factors multiplying the derivatives to provide the intermediate state information.
| |
DerivativeFunction |
Gets the delegate which defines the first order differential equation representing the
derivative of the dependent variables as a function of independent variable and dependent variables.
| |
Derivatives |
Gets the derivative information used in the algorithm. These represent the
values of "k" in the Butcher Tableau for each dependent variable, with the
first index representing the stage "i" and the second representing the index
of the dependent variable.
| |
IsThreadSafe |
Gets a value indicating whether the methods on this instance are safe to call from
multiple threads simultaneously.
| |
NumberOfStages |
Gets the total number of stages in this instance of the Runge-Kutta integrator.
| |
Stages |
Gets the coefficients "c".
These represent the factors multiplying the step size by which to advance the independent variable at each stage.
| |
Weights |
Gets the coefficients "b".
These represent the coefficients of the "k" stages summed together to represent the slope.
| |
WorkingArray |
Gets the working array used as a means to efficiently update the intermediate state information
when calling the derivative DerivativeFunction.
|