Package org.orekit.propagation.events
Interface EnablingPredicate
-
- 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 EnablingPredicate
This interface represents an event enabling predicate function.- Since:
- 7.1
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static EnablingPredicateandCombine(EnablingPredicate... enablingPredicates)Method combining predicated based on the AND logic operator.default booleandependsOnMainVariablesOnly()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).booleaneventIsEnabled(SpacecraftState state, EventDetector detector, double g)Compute an event enabling function of state.static EnablingPredicateorCombine(EnablingPredicate... enablingPredicates)Method combining predicated based on the OR logic operator.
-
-
-
Method Detail
-
eventIsEnabled
boolean eventIsEnabled(SpacecraftState state, EventDetector detector, double g)
Compute an event enabling function of state.- Parameters:
state- current statedetector- underlying detectorg- 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
-
orCombine
static EnablingPredicate orCombine(EnablingPredicate... enablingPredicates)
Method combining predicated based on the OR logic operator.- Parameters:
enablingPredicates- predicates- Returns:
- combined predicate
- Since:
- 13.1
-
andCombine
static EnablingPredicate andCombine(EnablingPredicate... enablingPredicates)
Method combining predicated based on the AND logic operator.- Parameters:
enablingPredicates- predicates- Returns:
- combined predicate
- Since:
- 13.1
-
-