LambertOrbitSolver.FailedToConvergeEventArgs Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.Propagators
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic FailedToConvergeEventArgs(
int finalIteration,
double finalEpsilon,
int revolutionCount,
LambertPathType pathType,
OrbitDirectionType directionOfFlight
)
Public Sub New (
finalIteration As Integer,
finalEpsilon As Double,
revolutionCount As Integer,
pathType As LambertPathType,
directionOfFlight As OrbitDirectionType
)
public:
FailedToConvergeEventArgs(
int finalIteration,
double finalEpsilon,
int revolutionCount,
LambertPathType pathType,
OrbitDirectionType directionOfFlight
)
new :
finalIteration : int *
finalEpsilon : float *
revolutionCount : int *
pathType : LambertPathType *
directionOfFlight : OrbitDirectionType -> FailedToConvergeEventArgs
Parameters
- finalIteration
- Type: System.Int32
The final iteration number that the solver reached. - finalEpsilon
- Type: System.Double
The final error that the solver achieved. - revolutionCount
- Type: System.Int32
The number of revolutions in this orbit. - pathType
- Type: AGI.Foundation.Propagators.LambertPathType
Whether the path is large or small semi major axis. - directionOfFlight
- Type: AGI.Foundation.Coordinates.OrbitDirectionType
The rotation sense of the Lambert transfer orbit.
See Also