OrbitalElementsConvertHyperbolicAnomalyToTimeFromPeriapsis Method  | 
 
            Converts the hyperbolic anomaly to the time of flight from the corresponding periapsis passage in seconds. The value returned is signed and monotonic even for periodic orbits.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static double ConvertHyperbolicAnomalyToTimeFromPeriapsis(
	double hyperbolicAnomaly,
	double radiusOfPeriapsis,
	double eccentricity,
	double gravitationalParameter
)
Public Shared Function ConvertHyperbolicAnomalyToTimeFromPeriapsis ( 
	hyperbolicAnomaly As Double,
	radiusOfPeriapsis As Double,
	eccentricity As Double,
	gravitationalParameter As Double
) As Double
public:
static double ConvertHyperbolicAnomalyToTimeFromPeriapsis(
	double hyperbolicAnomaly, 
	double radiusOfPeriapsis, 
	double eccentricity, 
	double gravitationalParameter
)
static member ConvertHyperbolicAnomalyToTimeFromPeriapsis : 
        hyperbolicAnomaly : float * 
        radiusOfPeriapsis : float * 
        eccentricity : float * 
        gravitationalParameter : float -> float 
Parameters
- hyperbolicAnomaly
 - Type: SystemDouble
The hyperbolic anomaly (radians). - radiusOfPeriapsis
 - Type: SystemDouble
The radius of periapsis. - eccentricity
 - Type: SystemDouble
The eccentricity of the orbit. - gravitationalParameter
 - Type: SystemDouble
The gravitational parameter of the central body being orbited. 
Return Value
Type: 
DoubleThe time since the last periapsis passage.
Exceptions| Exception | Condition | 
|---|
| ArgumentOutOfRangeException | Thrown when eccentricity is less than or equal to one (indicating that the orbit is not hyperbolic), or if it is negative, or radiusOfPeriapsis or gravitationalParameter is negative or zero. | 
See Also