Interface FieldEnablingPredicate<T extends CalculusFieldElement<T>>

  • Type Parameters:
    T - type of the field elements
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface FieldEnablingPredicate<T extends CalculusFieldElement<T>>
    This interface represents an event enabling predicate function.
    Since:
    12.0
    Author:
    Luc Maisonobe
    See Also:
    EnablingPredicate
    • Method Detail

      • eventIsEnabled

        boolean eventIsEnabled​(FieldSpacecraftState<T> state,
                               FieldEventDetector<T> detector,
                               T g)
        Compute an event enabling function of state.
        Parameters:
        state - current state
        detector - underlying detector
        g - value of the underlying detector for the current state
        Returns:
        true if the event is enabled (i.e. it can be triggered), false if it should be ignored
      • dependsOnMainVariablesOnly

        default boolean dependsOnMainVariablesOnly()
        Method returning true if and only if the predicate does not depend on dependent variables, other than the Cartesian coordinates (or equivalent), mass and attitude (excepts for its rates). It should thus return false if the STM or other secondary variables are needed to evaluate the predicate. This information is used for performance in propagation. The default implementation returns false.
        Returns:
        flag
        Since:
        14.0