Class TriggerDate

  • All Implemented Interfaces:
    ManeuverTriggersResetter, AdditionalStateProvider

    public class TriggerDate
    extends Object
    implements AdditionalStateProvider, ManeuverTriggersResetter
    Generator for one column of a Jacobian matrix for special case of trigger dates.

    Typical use cases for this are estimation of maneuver start and stop date during either orbit determination or maneuver optimization.

    Let (t0,y0)(t0,y0) be the state at propagation start, (t1,y1)(t1,y1) be the state at maneuver trigger time, (tt,yt)(tt,yt) be the state at any arbitrary time tt during propagation, and fm(t,y)fm(t,y) be the contribution of the maneuver to the global ODE dydt=f(t,y)dydt=f(t,y). We are interested in the Jacobian column ytt1ytt1.

    There are two parts in this Jacobian: the primary part corresponds to the full contribution of the acceleration due to the maneuver as it is delayed by a small amount dt1dt1, whereas the secondary part corresponds to change of acceleration after maneuver start as the mass depletion is delayed and therefore the spacecraft mass is different from the mass for nominal start time.

    The primary part is computed as follows. After trigger time t1t1 (according to propagation direction), ytt1=±yty1fm(t1,y1)ytt1=±yty1fm(t1,y1) where the sign depends on t1t1 being a start or stop trigger and propagation being forward or backward.

    We don't have yty1yty1 available if t1t0t1t0, but we have yty0yty0 at any time since it can be computed by integrating variational equations for numerical propagation or by other closed form expressions for analytical propagators. We use the classical composition rule to recover the state transition matrix with respect to intermediate time t1t1: yty0=yty1y1y0yty0=yty1y1y0 We deduce yty1=yty0(y1y0)1yty1=yty0(y1y0)1

    The contribution of the primary part to the Jacobian column can therefore be computed using the following closed-form expression: ytt1=±yty0(y1y0)1fm(t1,y1)=yty0c1ytt1=±yty0(y1y0)1fm(t1,y1)=yty0c1 where c1c1 is the signed contribution of maneuver at t1t1 and is computed at trigger time by solving y1y0c1=±fm(t1,y1)y1y0c1=±fm(t1,y1).

    As the primary part of the column is generated using a closed-form expression, this generator implements the AdditionalStateProvider interface and stores the column directly in the primary state during propagation.

    As the closed-form expression requires picking c1c1 at trigger time t1t1, it works only if propagation starts outside of the maneuver and passes over t1t1 during integration.

    The secondary part is computed as follows. We have acceleration Γ=FmΓ=Fm and m=m0q(tts)m=m0q(tts), where mm is current mass, m0m0 is initial mass and tsts is maneuver trigger time. A delay dtsdts on trigger time induces delaying mass depletion. We get: dΓ=Fm2dm=Fm2qdts=ΓqmdtsdΓ=Fm2dm=Fm2qdts=Γqmdts From this total differential, we extract the partial derivative of the acceleration Γts=ΓqmΓts=Γqm

    The contribution of the secondary part to the Jacobian column can therefore be computed by integrating the partial derivative of the acceleration, to get the partial derivative of the position.

    As the secondary part of the column is generated using a differential equation, a separate underlying generator implementing the AdditionalDerivativesProvider interface is set up to perform the integration during propagation.

    This generator takes care to sum up the primary and secondary parts so the full column of the Jacobian is computed.

    The implementation takes care to not resetting c1 at propagation start. This allows to get proper Jacobian if we interrupt propagation in the middle of a maneuver and restart propagation where it left.

    Since:
    11.1
    Author:
    Luc Maisonobe
    See Also:
    MedianDate, Duration
    • Constructor Detail

      • TriggerDate

        public TriggerDate​(String stmName,
                           String triggerName,
                           boolean manageStart,
                           Maneuver maneuver,
                           double threshold)
        Simple constructor.
        Parameters:
        stmName - name of State Transition Matrix state
        triggerName - name of the parameter corresponding to the trigger date column
        manageStart - if true, we compute derivatives with respect to maneuver start
        maneuver - maneuver force model
        threshold - event detector threshold
    • Method Detail

      • getName

        public String getName()
        Get the name of the additional state.

        If a provider just modifies one of the basic elements (orbit, attitude or mass) without adding any new state, it should return the empty string as its name.

        Specified by:
        getName in interface AdditionalStateProvider
        Returns:
        name of the additional state (names containing "orekit" with any case are reserved for the library internal use)
      • yields

        public boolean yields​(SpacecraftState state)
        Check if this provider should yield so another provider has an opportunity to add missing parts.

        Decision to yield is often based on an additional state being already available in the provided state (but it could theoretically also depend on an additional state derivative being already available, or any other criterion). If for example a provider needs the state transition matrix, it could implement this method as:

        
         public boolean yields(final SpacecraftState state) {
             return !state.getAdditionalStates().containsKey("STM");
         }
         

        The default implementation returns false, meaning that state data can be generated immediately.

        The column state can be computed only if the State Transition Matrix state is available.

        Specified by:
        yields in interface AdditionalStateProvider
        Parameters:
        state - state to handle
        Returns:
        true if this provider should yield so another provider has an opportunity to add missing parts as the state is incrementally built up
      • getMassDepletionDelay

        public MassDepletionDelay getMassDepletionDelay()
        Get the mass depletion effect processor.
        Returns:
        mass depletion effect processor
      • getAdditionalState

        public double[] getAdditionalState​(SpacecraftState state)
        Get the additional state.
        Specified by:
        getAdditionalState in interface AdditionalStateProvider
        Parameters:
        state - spacecraft state to which additional state should correspond
        Returns:
        additional state corresponding to spacecraft state
      • maneuverTriggered

        public void maneuverTriggered​(SpacecraftState state,
                                      boolean start)
        Observe a maneuver trigger.

        The start parameter corresponds to physical flow of time from past to future, not to propagation direction which can be backward. This means that during forward propagations, the first call will have start set to true and the second call will have start set to false, whereas in backward propagation, the first call will have start set to false and the second call will have start set to true.

        Specified by:
        maneuverTriggered in interface ManeuverTriggersResetter
        Parameters:
        state - spacecraft state at trigger date (before applying the maneuver)
        start - if true, the trigger is the start of the maneuver