Main Content

Orbit Propagation Methods

The Aerospace Blockset™ 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:

orbital 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 Blockset 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, α:

ξ=v022μr0α=2ξμ,

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

    χ0μ(Δt)α,

    where Δt is the propagation step size (simulation time step). If Δt exceeds the orbital period T=2πa3μ, wrap Δt.

  • Parabolic orbit

    χ0p2cot(2w),

    where:

    h=r0×v0p=hhμcot(2s)=3μp3(Δt)tan3(w)=tan(s).

  • Hyperbolic orbit:

    χ0sign(Δt)1αln(2μα(Δt)r0v0+sign(Δt)μα(1r0α)).

    Perform Newton-Raphson iteration while |xn-xn-1| > tolerance.

    χn+1=χn+μ(Δt)χn3c3r0v0μχn2c2r0χn(1ψc3)χn2c2+r0v0μχn(1ψc3)+r0(1ψc2)χnχn+1,

    where:

    ψ=χn2α.

    (if ψ>0),

    c2=1cos(ψ)ψc3=ψsin(ψ)ψ3.

    (if ψ<0),

    c2=1cosh(ψ)ψc3=sinh(ψ)ψ(ψ)3.

    (if ψ≈0),

    c2=12c3=16.

    Calculate universal variables f, f˙, g, and g˙.

    f=1χn2r0c2f˙=μrr0χn(ψc31)g=(Δt)χn3μc3g˙=1χn2rc2.

    Assemble position and velocity output vectors:

    ricrf=fr0+gv0vicrf=f˙r0+g˙v0.

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:

  1. The block transforms position and velocity states into the fixed-frame.

  2. The block calculates nonspherical gravity in the fixed-frame.

  3. The block transforms resulting acceleration into the inertial frame, where it is summed with the other acceleration terms and integrated.

aicrf=acentralbodygravity+aappliedaicrfintegratericrf,vicrf

Central Body

Methods for computing central body acceleration include point-mass, oblate ellipsoid, or spherical harmonics.

  • Point-mass (available for all central bodies) — This option treats the central body as a point-mass, including only the effects of spherical gravity using Newton's law of universal gravitation.

    acentralbodygravity=μr2ricrfr,

    where μ is the standard gravitation parameter of the central body.

  • Oblate ellipsoid (J2) (available for all central bodies) — 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.

    acentralbodygravity=μr2ricrfr+fixed2inertial(anonspherical),

    where:

    anonspherical={[1rrUrffkr2rffi2+rffj2ϕU]rffi}i+{[1rrU+rffkr2rffi2+rffj2ϕU]rffj}j+{1r(rU)rk+rffi2+rffj2r2ϕU}k,

    given the partial derivatives in spherical coordinates:

    rU=3μr2(Rcbr)2P2,0[sin(ϕ)]J2ϕU=μr(Rcbr)2P2,1[sin(ϕ)]J2

    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.

  • Spherical Harmonics (available for Earth, Moon, Mars, Custom) — 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.

    acentralbodygravity=μr2ricrfr+fixed2inertial(anonspherical),

    where:

    anonspherical={[1rrUrffkr2rffi2+rffj2ϕU]rffi[1rffi2+rffj2λU]rffj}i+{[1rrU+rffkr2rffi2+rffj2ϕU]rffj+[1rffi2+rffj2λU]rffi}j+{1r(rU)rffk+rffi2+rffj2r2ϕU}k,

    given the following partial derivatives in spherical coordinates:

    rU=μr2l=2lmaxm=0l(Rcbr)l(l+1)Pl,m[sin(ϕ)]{Cl,mcos(mλ)+Sl,msin(mλ)}ϕU=μrl=2lmaxm=0l(Rcbr)l{Pl,m+1[sin(ϕ)](m)tan(ϕ)Pl,m[sin(ϕ)]}{Cl,mcos(mλ)+Sl,msin(mλ)}λU=μrl=2lmaxm=0l(Rcbr)l(m)Pl,m[sin(ϕ)]{Sl,mcos(mλ)Cl,msin(mλ)},

    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.

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.

atmospheric drag of satellite

The Aerospace Blockset uses this atmospheric drag equation:

adrag=12ρ(CDAm)v2relvrelvrel

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=vsat+vatmos

  • vrel — Velocity relative to atmosphere.

    vrel=vicrfω×ricrf

    where ω is the central body angular velocity.

Third Body

In Aerospace Blockset, 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.

athird_body=μthird(rsat,3r3sat,3rr3)

where:

  • μthird — Gravitational parameter of the third body.

  • rsat,3 — Vector from the satellite to the third body.

  • r — 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 Blockset uses this solar radiation pressure equation:

asrp=υCrAsmPsrp(AUrsat,sun)2rsat,sunrsat,sun

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)

  • |rsat,sun| — Vector from the satellite to the Sun origin

See Also

Blocks