NewtonRaphsonEpsilon Property |
Epsilon, used in stopping criteria in the Newton-Raphson method.
Default value is 1e-6
Both the Epsilon and the FEpsilon
criteria must be met before the method is stopped
Namespace:
DHI.Mike1D.Generic.MathAlgorithms
Assembly:
DHI.Mike1D.Generic (in DHI.Mike1D.Generic.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public double Epsilon { get; set; }
Property Value
Type:
DoubleRemarks
Stopping criteria:
|x_new -x_old| less than Epsilon*(|x_new|+|x_old|+1)
See Also