BulirschStoerIntegratorSafetyFactorTwo 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 7/10.
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 SafetyFactorTwo { get; set; }
Public Property SafetyFactorTwo As Double
Get
Set
public:
property double SafetyFactorTwo {
double get ();
void set (double value);
}
member SafetyFactorTwo : float with get, set
Property Value
Type:
DoubleSee Also