Click or drag to resize

TwoBodyPropagator Constructor (JulianDate, ReferenceFrame, EquinoctialElements)

Initializes a new instance.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public TwoBodyPropagator(
	JulianDate orbitEpoch,
	ReferenceFrame referenceFrame,
	EquinoctialElements elements
)

Parameters

orbitEpoch
Type: AGI.Foundation.TimeJulianDate
The Julian date at which the initial conditions are defined.
referenceFrame
Type: AGI.Foundation.GeometryReferenceFrame
The reference frame in which the elements are defined. Generally this should be the InertialFrame of the central body around which you are propagating. See the Remarks section for more information.
elements
Type: AGI.Foundation.CoordinatesEquinoctialElements
The elements from which to propagate.
Remarks
For correct results, referenceFrame generally must be an inertial reference frame. However, it is easy to obtain ephemeris in any desired ReferenceFrame (such as the FixedFrame) by transforming it after it has been produced by the propagator. To do so, call Propagate(JulianDate, JulianDate, Duration, Int32, ReferenceFrame). Or, call CreatePoint and then use ObservePoint(Point, ReferenceFrame) to get an evaluator that can be used to find the propagated position in the specified reference frame.
See Also