OrbitalElements.ComputeMeanMotion Method |
Calculates the mean motion 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 double ComputeMeanMotion(
double radiusOfPeriapsis,
double eccentricity,
double gravitationalParameter
)
Public Shared Function ComputeMeanMotion (
radiusOfPeriapsis As Double,
eccentricity As Double,
gravitationalParameter As Double
) As Double
public:
static double ComputeMeanMotion(
double radiusOfPeriapsis,
double eccentricity,
double gravitationalParameter
)
static member ComputeMeanMotion :
radiusOfPeriapsis : float *
eccentricity : float *
gravitationalParameter : float -> float
Parameters
- radiusOfPeriapsis
- Type: System.Double
The radius of periapsis. - eccentricity
- Type: System.Double
The eccentricity of the orbit. - gravitationalParameter
- Type: System.Double
The gravitational parameter.
Return Value
Type:
DoubleThe mean motion of the orbit.
ExceptionsException | Condition |
---|
ArgumentOutOfRangeException | Thrown when eccentricity is negative or radiusOfPeriapsis or gravitationalParameter is negative or zero. |
See Also