Click or drag to resize

RungeKuttaAlgorithm Properties

The RungeKuttaAlgorithm type exposes the following members.

Properties
  NameDescription
Public propertyCoefficients
Gets the coefficients "a". These represent the factors multiplying the derivatives to provide the intermediate state information.
Public propertyDerivativeFunction
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.
Public propertyDerivatives
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.
Public propertyIsThreadSafe
Gets a value indicating whether the methods on this instance are safe to call from multiple threads simultaneously.
Public propertyNumberOfStages
Gets the total number of stages in this instance of the Runge-Kutta integrator.
Public propertyStages
Gets the coefficients "c". These represent the factors multiplying the step size by which to advance the independent variable at each stage.
Public propertyWeights
Gets the coefficients "b". These represent the coefficients of the "k" stages summed together to represent the slope.
Protected propertyWorkingArray
Gets the working array used as a means to efficiently update the intermediate state information when calling the derivative DerivativeFunction.
Top
See Also