Orbit Propagation Methods
The Aerospace Toolbox supports two top-level orbit propagation methods:
Kepler (unperturbed)
and Numerical (high
precision)
.
Kepler (unperturbed)
Kepler orbit propagation is the process of numerically computing and predicting the position and velocity of an object in space, based on Kepler's laws of planetary motion. Kepler's laws provide a mathematical description of the motion of objects in elliptical orbits around a central body, such as a planet orbiting the Sun.
To propagate a Keplerian orbit, you typically need these elements:
In this diagram, the orbital plane (yellow) intersects a reference plane (gray). For Earth-orbiting satellites, the reference plane is usually the IJ-plane of the GCRF.
These two elements define the shape and size of the ellipse:
Eccentricity (e) — Describe how elongated the shape of the ellipse is when compared to a circle.
Semimajor axis (a) — The sum of the periapsis and apoapsis distances divided by 2. Periapsis is the point at which an orbiting object is closest to the center of mass of the body it is orbiting. Apoapsis is the point at which an orbiting object is farthest away from the center of mass of the body it is orbiting. For classic two-body orbits, the semimajor axis is the distance between the centers of the bodies.
These two elements define the orientation of the orbital plane in which the ellipse is embedded:
Inclination (i) — The vertical tilt of the ellipse with respect to the reference plane measured at the ascending node. The ascending node is the location where the orbit passes upward through the reference plane (the green angle i in the diagram). The tilt angle is measured perpendicular to the line of intersection between orbital plane and the reference plane. Any three points on an ellipse defines the ellipse orbital plane.
Starting with an equatorial orbit, the orbital plane can be tilted up. The angle it is tilted up from the equator is referred to as the inclination angle, i, in the range [0,180]. Because the center of the Earth must always be in the orbital plane, the point in the orbit where the satellite passes the equator on its way up north-bound through the orbit is the ascending node, and the point where the satellite passes the equator on its way down south-bound is the descending node. Drawing a line through these two points on the equator defines the line of nodes.
Right ascension of ascending node (Ω) — The horizontal orientation of the ascending node of the ellipse (where the orbit passes upward through the reference plane) with respect to the I-axis of the reference frame. The rotation of the right ascension of the ascending node (RAAN) can be any number between 0° and 360°.
The remaining two elements are:
Argument of periapsis (ω) — The orientation of the ellipse in the orbital plane, as an angle measured from the ascending node to the periapsis in the range [0, 360).
True Anomaly (v) — The position of the orbiting body along the ellipse at a specific time. The position of the satellite on the path is measured counterclockwise from the periapsis and is called the true anomaly, ν, in the range [0, 360).
You can propagate the orbit using numerical methods such as numerical integration or Kepler's equation using these parameters. These methods allow you to calculate the position and velocity of the object at a given time. For information on each of these elements, see Orbital Elements.
The Aerospace Toolbox uses universal variables and Newton-Raphson iteration to propagate satellite orbits over time. This analytical algorithm is fast, but has limitations. Propagated orbits account only for central body spherical (point-mass) gravity. This formulation includes no other perturbations.
This propagation method is always performed in the ICRF inertial coordinate system with origin at the center of the central body. Given initial inertial position r0 and velocity v0 at time t0, first find orbital energy, ξ, and the reciprocal of the semi-major axis, α:
where μ is the standard gravitation parameter of the central body. Next, determine the orbit type from the sign of α.
α>0 => Circular or elliptical
α<0 => Hyperbolic
α≈0 => Parabolic
To initialize the Newton-Raphson iteration, select an initial guess for χ based on the orbit type:
Circular or elliptical orbit
where Δt is the propagation step size (simulation time step). If Δt exceeds the orbital period , wrap Δt.
Parabolic orbit
where:
Hyperbolic orbit:
Perform Newton-Raphson iteration while |xn-xn-1| > tolerance.
where:
(if ψ>0),
(if ψ<0),
(if ψ≈0),
Calculate universal variables , , , and .
Assemble position and velocity output vectors:
Numerical (high precision)
This option uses the Simulink® solver to integrate position and velocity from central body gravitational acceleration at each simulation timestep (Δt). The method for computing central body acceleration depends on the current setting for the Gravitational potential model parameter. You can also include custom acceleration components in the propagation algorithm using the Aicrf (applied acceleration) input port. For gravity models that include nonspherical acceleration terms, the block computes nonspherical gravity in a fixed-frame coordinate system (ITRF, in the case of Earth). Numerical integration, however, is always performed in the inertial ICRF coordinate system. Therefore, at each timestep:
The block transforms position and velocity states into the fixed-frame.
The block calculates nonspherical gravity in the fixed-frame.
The block transforms resulting acceleration into the inertial frame, where it is summed with the other acceleration terms and integrated.
where
Central Body
Methods for computing central body acceleration include point-mass, oblate ellipsoid, or spherical harmonics.
Point-mass — This option treats the central body as a point-mass, including only the effects of spherical gravity using Newton's law of universal gravitation.
where μ is the standard gravitation parameter of the central body.
Oblate ellipsoid (J2) — In addition to spherical gravity, this option includes the perturbing effects of the second-degree, zonal harmonic gravity coefficient J2, accounting for the oblateness of the central body. J2 accounts for the vast majority of the central bodies gravitational departure from a perfect sphere.
where:
given the partial derivatives in spherical coordinates:
where:
ϕ and λ — Satellite geocentric latitude and longitude.
P2,0 and P2,1 — Associated Legendre functions.
μ — Standard gravitation parameter of the central body.
Rcb — Central body equatorial radius.
The transformation
fixed2inertial
converts fixed-frame position, velocity, and acceleration into the ICRF coordinate system with origin at the center of the central body, accounting for centrifugal and coriolis acceleration. For more information about the fixed and inertial coordinate systems used for each central body, see Coordinate Systems for Navigation.Spherical Harmonics — This option adds increased fidelity by including higher-order perturbation effects accounting for zonal, sectoral, and tesseral harmonics. For reference, the second-degree, zeroth order zonal harmonic J2=-C20. The Spherical Harmonics model accounts for harmonics up to max degree l=lmax, which varies by central body and geopotential model.
where:
given the following partial derivatives in spherical coordinates:
where:
ϕ and λ — Satellite geocentric latitude and longitude.
Pl,m — Associated Legendre functions.
μ — Standard gravitation parameter of the central body.
Rcb — Central body equatorial radius.
Cl,m and Sl,m — Nonnormalized harmonic coefficients.
The transformation
fixed2inertial
converts fixed-frame position, velocity, and acceleration into the ICRF coordinate system with origin at the center of the central body, accounting for centrifugal and coriolis acceleration. For more information about the fixed and inertial coordinate systems used for each central body, see Coordinate Systems for Navigation.
Atmospheric Drag
Atmospheric drag is a force that opposes the motion of an object moving through a fluid, such as the atmosphere of the earth. Atmospheric drag is influenced by several factors, including the shape, size, and velocity of the object, and the properties of air. The primary mechanism behind atmospheric drag is the conversion of the kinetic energy of the object into heat through the process of air molecule collision and friction.
The Aerospace Toolbox uses this atmospheric drag equation:
where:
m — Spacecraft mass used by atmospheric drag calculation.
CD — Coefficient of drag assuming that it is dimensionless.
ρ — Atmospheric density.
A — Area normal to vrel, where
vrel — Velocity relative to atmosphere.
where is the central body angular velocity.
Third Body
In Aerospace Toolbox, third body refers to an additional celestial object that influences the motion of two primary bodies in a gravitational system.
This equation incorporates the third body contribution, enabling a more precise prediction of the motion of objects in space.
where:
μthird — Gravitational parameter of the third body.
— Vector from the satellite to the third body.
— Position of third body with regard to the central body, specified as a vector.
Solar Radiation Pressure
Solar Radiation Pressure (SRP) is the force produced by the impact of sunlight photons on the surface of an object in space. SRP is considered as a perturbing force that needs to be accounted for in orbit determination and prediction.
The Aerospace Toolbox uses this solar radiation pressure equation:
where:
m — Mass of the spacecraft
v — Eclipse shadow function
Cr — Spacecraft coefficient of reflectivity
As — Spacecraft solar radiation pressure area
Psrp — Solar radiation pressure at a distance of AU from the Sun
AU — Mean distance from the Sun to Earth (1AU)
|| — Vector from the satellite to the Sun origin
References
[1] Vallado, David, et al. “Revisiting Spacetrack Report #3.” AIAA/AAS Astrodynamics Specialist Conference and Exhibit, American Institute of Aeronautics and Astronautics, 2006. DOI.org (Crossref), https://doi.org/10.2514/6.2006-6753