Propagation Setup#
In this part of the user guide, we will explain the relevant inputs as well as present the different categories of numerical propagation.
Inputs and setup#
Using Tudat, you can propagate different kinds of equations of motion, including those for translation and/or rotational dynamics. These equations can be propagated for one or more bodies, and over a single arc or multiple arcs. The figure below gives an overview of the inputs that are required to define so-called propagator settings in Tudat

On the left is a list of arguments (some optional) that can be provided to the propagator settings, regardless of their type:
Initial conditions The initial time and state for the numerical propagation
Numerical integrator: the solver used to create an approximate solution, described here. This setting is mandatory
List of propagated bodies: the names of the bodies for which the dynamics is to be propagated.
Termination conditions: when to terminate the propagation, described here. This setting is mandatory
Dependent variables: which quantities to save as output, in addition to the states, described here. These settings are optional (none by default).
Processing/output settings: what to print to the terminal before, during and after propagation, and what to do with the numerical results after propagation, both described here. This setting is optional (no terminal output or resetting of environment by default)
Note
The initial state should always be provided in the ‘typical’ formulation (also called ‘processed’ formulation, for instance the Cartesian state for translational dynamics), regardless of propagator type (for translational dynamics, for instance, even wen using an Encke propagator) For more information, see Processed vs. Propagated State Elements.
Dynamics types#
There are a number different types of dynamics that Tudat can numerically propagate, settings for which are created by calling the associated functions in the propagator module. Below, we provide links for pages discussing each type in more detail
Translational Dynamics: the translational state of a body is propagated;
Rotational Dynamics: the rotational state of a body is propagated;
Mass Dynamics: the mass of a body is propagated.
Custom Dynamics: an arbitrary user-defined state derivative model, see
custom_state()
(typically in the context of a multi-type propagation).
Furthermore, any combination of any number of types of dynamics for any number of bodies can be defined. Therefore, in Tudat we also have:
Multi-type dynamics: more than one dynamical quantity is propagated for a single body;
Multi-body dynamics: only one dynamical quantity is propagated for multiple bodies;
A combination of the two: more than one dynamical quantity is propagated for multiple bodies.
The above list defines different types of dynamics that are propagated over a single continuous arc. Propagation using a multi-arc setup is also supported in Tudat.