Class AttitudesSequence.Switch
- java.lang.Object
-
- org.orekit.attitudes.AttitudesSequence.Switch
-
- All Implemented Interfaces:
DetectorModifier,EventDetector,EventHandler
- Enclosing class:
- AttitudesSequence
public class AttitudesSequence.Switch extends Object
Switch specification. Handles the transition.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActioneventOccurred(SpacecraftState s, EventDetector detector, boolean increasing)Handle an event.doubleg(SpacecraftState s)Compute the value of the switching function.EventDetectorgetDetector()Get the wrapped detector.protected AttitudeProvidergetFuture()Protected getter for future attitude provider.EventHandlergetHandler()Get the handler.protected AttitudeProvidergetPast()Protected getter for past attitude provider.protected AttitudeSwitchHandlergetSwitchHandler()Protected getter for switch handle.voidinit(SpacecraftState s0, AbsoluteDate t)Initialize event detector at the start of a propagation.protected booleanisSwitchOnDecrease()Protected getter for switch-on-decrease flag.protected booleanisSwitchOnIncrease()Protected getter for switch-on-increase flag.SpacecraftStateresetState(EventDetector detector, SpacecraftState oldState)Reset the state prior to continue propagation.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.propagation.events.DetectorModifier
finish, getDetectionSettings, reset
-
Methods inherited from interface org.orekit.propagation.events.EventDetector
getMaxCheckInterval, getMaxIterationCount, getThreshold
-
Methods inherited from interface org.orekit.propagation.events.handlers.EventHandler
finish, init
-
-
-
-
Method Detail
-
init
public void init(SpacecraftState s0, AbsoluteDate t)
Initialize event detector at the start of a propagation.This method is called once at the start of the propagation. It may be used by the event handler to initialize some internal data if needed.
The default implementation initializes the handler.
- Parameters:
s0- initial statet- target time for the integration
-
g
public double g(SpacecraftState s)
Compute the value of the switching function. This function must be continuous (at least in its roots neighborhood), as the integrator will need to find its roots to locate the events.- Parameters:
s- the current state information: date, kinematics, attitude- Returns:
- value of the switching function
-
eventOccurred
public Action eventOccurred(SpacecraftState s, EventDetector detector, boolean increasing)
Handle an event.- Parameters:
s- SpaceCraft state to be used in the evaluationdetector- object with appropriate type that can be used in determining correct return stateincreasing- with the event occurred in an "increasing" or "decreasing" slope direction- Returns:
- the Action that the calling detector should pass back to the evaluation system
-
getDetector
public EventDetector getDetector()
Get the wrapped detector.- Specified by:
getDetectorin interfaceDetectorModifier- Returns:
- wrapped detector
-
getSwitchHandler
protected AttitudeSwitchHandler getSwitchHandler()
Protected getter for switch handle.- Returns:
- switch handler
-
getFuture
protected AttitudeProvider getFuture()
Protected getter for future attitude provider.- Returns:
- future provider
-
getPast
protected AttitudeProvider getPast()
Protected getter for past attitude provider.- Returns:
- pas provider
-
isSwitchOnDecrease
protected boolean isSwitchOnDecrease()
Protected getter for switch-on-decrease flag.- Returns:
- flag
-
isSwitchOnIncrease
protected boolean isSwitchOnIncrease()
Protected getter for switch-on-increase flag.- Returns:
- flag
-
getHandler
public EventHandler getHandler()
Get the handler.- Specified by:
getHandlerin interfaceDetectorModifier- Specified by:
getHandlerin interfaceEventDetector- Returns:
- event handler to call at event occurrences
-
resetState
public SpacecraftState resetState(EventDetector detector, SpacecraftState oldState)
Reset the state prior to continue propagation.This method is called after the step handler has returned and before the next step is started, but only when
EventHandler.eventOccurred(org.orekit.propagation.SpacecraftState, org.orekit.propagation.events.EventDetector, boolean)has itself returned theAction.RESET_STATEindicator. It allows the user to reset the state for the next step, without perturbing the step handler of the finishing step. If theEventHandler.eventOccurred(org.orekit.propagation.SpacecraftState, org.orekit.propagation.events.EventDetector, boolean)never returns theAction.RESET_STATEindicator, this function will never be called, and it is safe to simply return null.The default implementation simply return its argument.
- Specified by:
resetStatein interfaceEventHandler- Parameters:
detector- object with appropriate type that can be used in determining correct return stateoldState- old state- Returns:
- new state
-
-