RKDispersionOrder[rk]

computes the linear, homogeneous order of dissipation of rk.

Details and Options

  • A RungeKutta method has order of dispersion if , where is the dispersion error function.
  • RKDispersionOrder returns an even integer or .
  • The following options can be given:
  • EmbeddedFalsewhether to use the embedded coefficients
    StageNonetreat a stage as the solution
    DenseOutputFalsehow to evaluate dense output

Examples

open allclose all

Basic Examples  (1)Summary of the most common use cases

Get the order of dispersion of the classical fourth order RungeKutta method:

Out[1]=1
Out[1]=1

Options  (3)Common values & functionality for each option

Embedded  (1)

Get the order of dispersion for an embedded method:

Out[1]=1
Out[1]=1

Stage  (1)

Get the order of dispersion for a particular stage:

Out[1]=1
Out[1]=1

DenseOutput  (1)

Get the order of dispersion for the dense output solution:

Out[1]=1
Out[1]=1
Tech Notes