Click or drag to resize

BulirschStoerIntegratorSubdivisions Property

Gets or sets the set of successive subdivisions used to take steps. For each step the Bulirsch-Stoer integrator takes, it will divide the step size according to the subdivisions and analyze the error. If the error doesn't converge, it will continue to subdivide until it either converges or decides that the step size itself is problematic and starts over with a new step size.

The default set is derived from the work of Deuflhard: { 2, 4, 6, 8, 10 }

When changing the set, make sure to check for stability as having too few or too many subdivisions can change the behavior of the algorithm.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public int[] Subdivisions { get; set; }

Property Value

Type: Int32
See Also