Click or drag to resize

OrbitalElements.TryComputeSemimajorAxis Method

Tries to calculate the semimajor axis 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)
Syntax
public static bool TryComputeSemimajorAxis(
	double radiusOfPeriapsis,
	double eccentricity,
	out double semimajorAxis
)

Parameters

radiusOfPeriapsis
Type: System.Double
The radius of periapsis.
eccentricity
Type: System.Double
The eccentricity of the orbit.
semimajorAxis
Type: System.Double
On return, the semimajor axis of the orbit.

Return Value

Type: Boolean
false if eccentricity is negative or radiusOfPeriapsis is negative or zero; otherwise true.
Remarks
The result will be given in the same units as radiusOfPeriapsis.
See Also