OrbitalElementsConvertMeanAnomalyToTimeUntilNextPeriapsis Method  | 
 
            Converts the mean anomaly to the time of flight until the next periapsis passage in seconds. The value returned is positive and, for closed orbits, periodic.
            
 
    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 ConvertMeanAnomalyToTimeUntilNextPeriapsis(
	double meanAnomaly,
	double radiusOfPeriapsis,
	double eccentricity,
	double gravitationalParameter
)
Public Shared Function ConvertMeanAnomalyToTimeUntilNextPeriapsis ( 
	meanAnomaly As Double,
	radiusOfPeriapsis As Double,
	eccentricity As Double,
	gravitationalParameter As Double
) As Double
public:
static double ConvertMeanAnomalyToTimeUntilNextPeriapsis(
	double meanAnomaly, 
	double radiusOfPeriapsis, 
	double eccentricity, 
	double gravitationalParameter
)
static member ConvertMeanAnomalyToTimeUntilNextPeriapsis : 
        meanAnomaly : float * 
        radiusOfPeriapsis : float * 
        eccentricity : float * 
        gravitationalParameter : float -> float 
Parameters
- meanAnomaly
 - Type: SystemDouble
The mean 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 until the next periapsis passage.
Exceptions| Exception | Condition | 
|---|
| ArgumentOutOfRangeException | Thrown when eccentricity is negative or radiusOfPeriapsis or gravitationalParameter is negative or zero
            or if the orbit is open (parabolic or hyperbolic) and meanAnomaly is positive or zero. | 
See Also