Class ApsideDetector
- All Implemented Interfaces:
EventDetector
This class finds apside crossing events (i.e. apogee or perigee crossing).
The default implementation behavior is to continue
propagation at apogee crossing and to stop propagation
at perigee crossing. This can be changed by calling
AbstractDetector.withHandler(EventHandler) after construction.
Beware that apside detection will fail for almost circular orbits. If
for example an apside detector is used to trigger an ImpulseManeuver and the maneuver
change the orbit shape to circular, then the detector may completely fail just
after the maneuver has been performed!
- Author:
- Luc Maisonobe
- See Also:
-
Field Summary
Fields inherited from class org.orekit.propagation.events.AbstractDetector
DEFAULT_MAX_CHECK, DEFAULT_MAX_ITER, DEFAULT_THRESHOLD -
Constructor Summary
ConstructorsModifierConstructorDescriptionApsideDetector(double keplerianPeriod) Build a new instance.ApsideDetector(double threshold, Orbit orbit) Build a new instance.ApsideDetector(Orbit orbit) Build a new instance.ApsideDetector(EventDetectionSettings detectionSettings, EventHandler handler) Public constructor with full parameters.protectedApsideDetector(ApsideEventFunction apsideEventFunction, EventDetectionSettings detectionSettings, EventHandler handler) Protected constructor with full parameters. -
Method Summary
Modifier and TypeMethodDescriptionprotected ApsideDetectorcreate(EventDetectionSettings detectionSettings, EventHandler newHandler) Build a new instance.doubleg(SpacecraftState s) Compute the value of the switching function.Methods inherited from class org.orekit.propagation.events.AbstractDetector
checkIfForward, getDetectionSettings, getEventFunction, getHandler, init, isForward, withDetectionSettings, withHandler, withMaxCheck, withMaxCheck, withMaxIter, withThresholdMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.orekit.propagation.events.EventDetector
finish, getMaxCheckInterval, getMaxIterationCount, getThreshold, reset
-
Constructor Details
-
ApsideDetector
public ApsideDetector(double keplerianPeriod) Build a new instance.The Keplerian period is used only to set an upper bound for the max check interval to period/3 and to set the convergence threshold.
- Parameters:
keplerianPeriod- estimate of the Keplerian period- Since:
- 12.1
-
ApsideDetector
Build a new instance.The orbit is used only to set an upper bound for the max check interval to period/3 and to set the convergence threshold according to orbit size
- Parameters:
orbit- initial orbit
-
ApsideDetector
Build a new instance.The orbit is used only to set an upper bound for the max check interval to period/3
- Parameters:
threshold- convergence threshold (s)orbit- initial orbit
-
ApsideDetector
Public constructor with full parameters.This constructor is public because otherwise all accessible ones would require an orbit.
- Parameters:
detectionSettings- detection settingshandler- event handler to call at event occurrences- Since:
- 13.0
-
ApsideDetector
protected ApsideDetector(ApsideEventFunction apsideEventFunction, EventDetectionSettings detectionSettings, EventHandler handler) Protected constructor with full parameters.- Parameters:
apsideEventFunction- event functiondetectionSettings- detection settingshandler- event handler to call at event occurrences- Since:
- 14.0
-
-
Method Details
-
create
Build a new instance.- Specified by:
createin classAbstractDetector<ApsideDetector>- Parameters:
detectionSettings- detection settingsnewHandler- event handler to call at event occurrences- Returns:
- a new instance of the appropriate sub-type
-
g
Compute the value of the switching function. This function computes the dot product of the 2 vectors : position.velocity.- Parameters:
s- the current state information: date, kinematics, attitude- Returns:
- value of the switching function
-