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.
This interface represents an event enabling predicate function.
- Since:
- 7.1
- Author:
- Luc Maisonobe
-
Method Summary
Modifier and TypeMethodDescriptionstatic EnablingPredicateandCombine(EnablingPredicate... enablingPredicates) Method combining predicated based on the AND logic operator.default booleanMethod 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 Details
-
eventIsEnabled
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
Method combining predicated based on the OR logic operator.- Parameters:
enablingPredicates- predicates- Returns:
- combined predicate
- Since:
- 13.1
-
andCombine
Method combining predicated based on the AND logic operator.- Parameters:
enablingPredicates- predicates- Returns:
- combined predicate
- Since:
- 13.1
-