Click or drag to resize

InitialOrbitSolver Class

Solves for an initial orbit under two body conditions.
Inheritance Hierarchy
SystemObject
  AGI.Foundation.PropagatorsInitialOrbitSolver

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public class InitialOrbitSolver : ICloneable

The InitialOrbitSolver type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyGravitationalParameter
Gets or sets the gravitational parameter used to determine the orbit.
Top
Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSolve(Cartesian, Cartesian, Cartesian)
Solves the initial orbit determination problem using the Gibbs method.
Public methodSolve(Cartesian, Cartesian, Cartesian, JulianDate, JulianDate, JulianDate)
Solves the initial orbit determination problem using the Herrick-Gibbs method for closely spaced positions.
Public methodSolveForAllVelocities(Cartesian, Cartesian, Cartesian)
Solves the initial orbit determination problem using the Gibbs method.
Public methodSolveForAllVelocities(Cartesian, Cartesian, Cartesian, JulianDate, JulianDate, JulianDate)
Solves the initial orbit determination problem using the Herrick-Gibbs method for closely spaced positions.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Note that there are requirements for the input positions and times. In both methods the positions should be approximately co-planar (within a degree or two). The input positions should have large angular separation when using the positions only (Gibbs) solver, and small angular separation when using the positions and times (Herrick-Gibbs) solver. As outlined in "Fundamentals of Astrodynamics and Applications", below 1° in angular separation the Herrick-Gibbs method is recommended, and above 5° the Gibbs method is recommended.
See Also