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: 25.1.421.0 (25.1.421.0)
Syntaxpublic static J4Propagator CreateEarthCircularOrbit(
	JulianDate orbitEpoch,
	double altitude,
	double inclination,
	double rightAscensionOfAscendingNode
)
Public Shared Function CreateEarthCircularOrbit ( 
	orbitEpoch As JulianDate,
	altitude As Double,
	inclination As Double,
	rightAscensionOfAscendingNode As Double
) As J4Propagator
public:
static J4Propagator^ CreateEarthCircularOrbit(
	JulianDate orbitEpoch, 
	double altitude, 
	double inclination, 
	double rightAscensionOfAscendingNode
)
static member CreateEarthCircularOrbit : 
        orbitEpoch : JulianDate * 
        altitude : float * 
        inclination : float * 
        rightAscensionOfAscendingNode : float -> J4Propagator 
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
Remarks
See Also