OrbitalElements.TryComputeRadiusOfApoapsis Method |
Tries to calculate the radius of apoapsis of the orbit.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool TryComputeRadiusOfApoapsis(
double radiusOfPeriapsis,
double eccentricity,
out double radiusOfApoapsis
)
Public Shared Function TryComputeRadiusOfApoapsis (
radiusOfPeriapsis As Double,
eccentricity As Double,
<OutAttribute> ByRef radiusOfApoapsis As Double
) As Boolean
public:
static bool TryComputeRadiusOfApoapsis(
double radiusOfPeriapsis,
double eccentricity,
[OutAttribute] double% radiusOfApoapsis
)
static member TryComputeRadiusOfApoapsis :
radiusOfPeriapsis : float *
eccentricity : float *
radiusOfApoapsis : float byref -> bool
Parameters
- radiusOfPeriapsis
- Type: System.Double
The radius of periapsis of the orbit (distance). - eccentricity
- Type: System.Double
The eccentricity of the orbit. - radiusOfApoapsis
- Type: System.Double
On return,
the radius of apoapsis of the orbit.
Return Value
Type:
Booleanfalse if
eccentricity is negative or
radiusOfPeriapsis is negative or zero; otherwise
true.
RemarksThe result will be given in the same units as radiusOfPeriapsis.
See Also