Package org.orekit.propagation.events
Class CylindricalShadowEclipseDetector
java.lang.Object
org.orekit.propagation.events.AbstractDetector<CylindricalShadowEclipseDetector>
org.orekit.propagation.events.CylindricalShadowEclipseDetector
- All Implemented Interfaces:
EventDetector
public class CylindricalShadowEclipseDetector
extends AbstractDetector<CylindricalShadowEclipseDetector>
Event detector for eclipses from a single, infinitely-distant light source, occulted by a spherical central body.
The shadow region is cylindrical, a model less accurate than a conical one but more computationally-performant.
The so-called g function is negative in eclipse, positive otherwise.
- Since:
- 12.1
- Author:
- Romain Serra
- See Also:
-
Field Summary
Fields inherited from class org.orekit.propagation.events.AbstractDetector
DEFAULT_MAX_CHECK, DEFAULT_MAX_ITER, DEFAULT_THRESHOLD -
Constructor Summary
ConstructorsConstructorDescriptionCylindricalShadowEclipseDetector(PVCoordinatesProvider sun, double occultingBodyRadius, EventDetectionSettings eventDetectionSettings, EventHandler handler) Constructor.CylindricalShadowEclipseDetector(PVCoordinatesProvider sun, double occultingBodyRadius, EventHandler handler) Constructor with default detection settings. -
Method Summary
Modifier and TypeMethodDescriptionprotected CylindricalShadowEclipseDetectorcreate(EventDetectionSettings detectionSettings, EventHandler newHandler) Build a new instance.doubleg(SpacecraftState s) Compute the value of the switching function.doubleGetter for occulting body radius.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
-
CylindricalShadowEclipseDetector
public CylindricalShadowEclipseDetector(PVCoordinatesProvider sun, double occultingBodyRadius, EventDetectionSettings eventDetectionSettings, EventHandler handler) Constructor.- Parameters:
sun- light source provider (infinitely distant)occultingBodyRadius- occulting body radiuseventDetectionSettings- detection settingshandler- event handler- Since:
- 12.2
-
CylindricalShadowEclipseDetector
public CylindricalShadowEclipseDetector(PVCoordinatesProvider sun, double occultingBodyRadius, EventHandler handler) Constructor with default detection settings.- Parameters:
sun- light source provideroccultingBodyRadius- occulting body radiushandler- event handler
-
-
Method Details
-
getOccultingBodyRadius
public double getOccultingBodyRadius()Getter for occulting body radius.- Returns:
- radius
-
g
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
-
create
protected CylindricalShadowEclipseDetector create(EventDetectionSettings detectionSettings, EventHandler newHandler) Build a new instance.- Specified by:
createin classAbstractDetector<CylindricalShadowEclipseDetector>- Parameters:
detectionSettings- detection settingsnewHandler- event handler to call at event occurrences- Returns:
- a new instance of the appropriate sub-type
-