Click or drag to resize

SpecializedOrbitSolverCreateEarthCircularOrbit Method

Creates a circular orbit using default Earth parameters with the desired characteristics.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static J4Propagator CreateEarthCircularOrbit(
	JulianDate orbitEpoch,
	double altitude,
	double inclination,
	double rightAscensionOfAscendingNode
)

Parameters

orbitEpoch
Type: AGI.Foundation.TimeJulianDate
The epoch associated with the initial conditions of the propagated orbit.
altitude
Type: SystemDouble
The distance of the circular orbit above the equatorial radius of the Earth.
inclination
Type: SystemDouble
The inclination of the orbit.
rightAscensionOfAscendingNode
Type: SystemDouble
The right ascension of the ascending node of the orbit.

Return Value

Type: J4Propagator
A J4Propagator object that is initialized at its ascending node with the desired orbit epoch and orbital elements.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown if altitude is negative.
ArgumentOutOfRangeException Thrown if inclination is less than zero or greater than pi radians.
Remarks
Uses constants from the EarthGravitationalModel2008 for gravitational parameter, J2, J4, and reference distance. The inertial reference frame is defined by the instance of EarthCentralBody in the CentralBodiesFacet of the CalculationContext.
See Also