BulirschStoerIntegratorSafetyFactorOne Property |
Gets or sets a safety factor used when analyzing roundoff error and determining the new step size.
The equation for the step size update is: Hnew = S1 * H * (S2 / Error)^-(2k+1)
where "H" is the step size, "Error" is the roundoff error, and "k" is the iteration index into the
Subdivisions array. The default value is 1/4.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public double SafetyFactorOne { get; set; }
Public Property SafetyFactorOne As Double
Get
Set
public:
property double SafetyFactorOne {
double get ();
void set (double value);
}
member SafetyFactorOne : float with get, set
Property Value
Type:
DoubleSee Also