State transition matrix (STM)
The State Transition Matrix (STM, \(\boldsymbol \Phi\)) is a linearization tool for dynamical systems: it is a local approximation of the dynamics of the system.
In the field of astrodynamics, it is an approximation of the forces applied to the spacecraft over a short period of time. The STM is a necessary tool in orbit determination and in the circular restricted three-body problem (CRTBP), and may also be used in trajectory optimization.
For example, in orbit determination, the STM is computed from a propagated spacecraft state. It is considered a reasonable approximation of the forces acting on a spacecraft until the next time step (typically the next tracking measurement) through the time-propagation of the whole matrix.
System Dynamics¶
Consider an orbital state \(\boldsymbol{X}\) in a Cartesian frame, comprising position \(\boldsymbol{r} = [x,y,z]\) and velocity \(\boldsymbol{v} = [\dot{x}, \dot{y}, \dot{z}]\):
The time derivative \(\boldsymbol{\dot{X}}\) represents system dynamics:
For two-body problems, acceleration \(\boldsymbol{\dot{v}}\) is \(-\frac{\mu}{r^3}\boldsymbol{X}\). More complex dynamics extend \(F\) to include additional state components. For example, when enabling Solar Radiation Pressure (SRP) estimation in Nyx, the state vector is expanded to include the coefficient of reflectivity \(C_r\).
Computation¶
The STM is computed via the partials matrix (or Jacobian) \(\boldsymbol A\) of the state \(\boldsymbol X\) at a time \(t\). A first order Taylor series expansion is used to compute this Jacobian.
where \(\boldsymbol{X^*}\) is a reference state vector, e.g. the state at \(t_0\).
In practice, this Jacobian is the matrix of partial derivatives of the acceleration of the system, forming the \(A\) matrix, where \(\boldsymbol{a_{x,y,z}}\) is the acceleration in the X, Y, and Z axes:
Dual Numbers and Hyper-Dual Spaces¶
Nyx computes STMs using dual number theory because it avoids manual derivation errors via its error-free auto-differentiation properties. This is implemented via the hyperdual Rust crate. Refer to the page on Dual Number theory for a primer on the topic.
Application in Kalman Filtering and Orbit determination¶
In statistical orbital determination, the STM is computed around an orbit reference point and propagated forward. The partials matrix \(\boldsymbol A(t)\) relates to the STM as:
Refer to the Kalman filtering page for details on how the state transition matrix is used in orbit determination in Nyx.
Dual numbers provide these derivatives directly from equations of motion, enabling efficient computation even in complex systems. For details, refer to the AAS-19-716 conference paper Application of Dual Number Theory to Statistical Orbital Determination, Rabotin.
-
For detailed STM discussion, refer to section 1.2.5 and 4.2.1. "Statistical Orbit Determination" by Tapley et al., Elsevier 2004. ↩