OrbitalElementsTryConvertParabolicAnomalyToTimeFromPeriapsis Method |
Tries to convert the parabolic 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: 24.2.419.0 (24.2.419.0)
Syntax public static bool TryConvertParabolicAnomalyToTimeFromPeriapsis(
double parabolicAnomaly,
double radiusOfPeriapsis,
double eccentricity,
double gravitationalParameter,
out double timeFromPeriapsis
)
Public Shared Function TryConvertParabolicAnomalyToTimeFromPeriapsis (
parabolicAnomaly As Double,
radiusOfPeriapsis As Double,
eccentricity As Double,
gravitationalParameter As Double,
<OutAttribute> ByRef timeFromPeriapsis As Double
) As Boolean
public:
static bool TryConvertParabolicAnomalyToTimeFromPeriapsis(
double parabolicAnomaly,
double radiusOfPeriapsis,
double eccentricity,
double gravitationalParameter,
[OutAttribute] double% timeFromPeriapsis
)
static member TryConvertParabolicAnomalyToTimeFromPeriapsis :
parabolicAnomaly : float *
radiusOfPeriapsis : float *
eccentricity : float *
gravitationalParameter : float *
timeFromPeriapsis : float byref -> bool
Parameters
- parabolicAnomaly
- Type: SystemDouble
The parabolic 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. - timeFromPeriapsis
- Type: SystemDouble
On return,
the time since the last periapsis passage.
Return Value
Type:
Boolean if
eccentricity is not equal to one (indicating that the orbit is not parabolic)
or
radiusOfPeriapsis or
gravitationalParameter is negative or zero; otherwise
.
See Also