public class DistanceDetector extends AbstractDetector
The default implementation behaviour is to stop propagation when the distance is
reached. This can be changed by using provided constructors.
EventDetector,
Serialized FormAbstractDetector.PropagationDelayTypeEventDetector.ActionDEFAULT_MAXCHECK, DEFAULT_THRESHOLDDECREASING, INCREASING, INCREASING_DECREASING| Constructor and Description |
|---|
DistanceDetector(PVCoordinatesProvider dBody,
double dist)
Constructor for a DistanceDetector instance.
|
DistanceDetector(PVCoordinatesProvider dBody,
double dist,
double maxCheck,
double threshold)
Constructor for a DistanceDetector instance with complimentary parameters.
|
DistanceDetector(PVCoordinatesProvider dBody,
double dist,
double maxCheck,
double threshold,
EventDetector.Action action)
Constructor for a DistanceDetector instance with complimentary parameters.
|
DistanceDetector(PVCoordinatesProvider dBody,
double dist,
double maxCheck,
double threshold,
EventDetector.Action action,
boolean remove)
Constructor for a DistanceDetector instance with complimentary parameters.
|
| Modifier and Type | Method and Description |
|---|---|
EventDetector |
copy()
A copy of the detector.
|
EventDetector.Action |
eventOccurred(SpacecraftState s,
boolean increasing,
boolean forward)
Handle a distance event and choose what to do next.
|
double |
g(SpacecraftState s)
Compute the value of the switching function.
|
PVCoordinatesProvider |
getBody()
Returns the body.
|
double |
getDistance()
Returns the distance triggering the event.
|
void |
init(SpacecraftState s0,
AbsoluteDate t)
Initialize event handler at the start of a propagation.
|
boolean |
shouldBeRemoved()
This method is called after
EventDetector.eventOccurred(fr.cnes.sirius.patrius.propagation.SpacecraftState, boolean, boolean) has been triggered. |
getMaxCheckInterval, getMaxIterationCount, getPropagationDelayType, getSignalEmissionDate, getSignalReceptionDate, getSlopeSelection, getThreshold, resetState, setPropagationDelayTypepublic DistanceDetector(PVCoordinatesProvider dBody, double dist)
dBody - the body whose distance is watched.dist - distance in m triggering the event.IllegalArgumentException - when the distance is negativepublic DistanceDetector(PVCoordinatesProvider dBody, double dist, double maxCheck, double threshold)
The default implementation behavior is to stop propagation when the distance is
reached.
dBody - the body whose distance is watched.dist - distance in m triggering the event.maxCheck - maximum check (see AbstractDetector)threshold - threshold (see AbstractDetector)IllegalArgumentException - when the distance is negativepublic DistanceDetector(PVCoordinatesProvider dBody, double dist, double maxCheck, double threshold, EventDetector.Action action)
dBody - the body whose distance is watched.dist - distance in m triggering the event.maxCheck - maximum check (see AbstractDetector)threshold - threshold (see AbstractDetector)action - action performed at distance detectionIllegalArgumentException - when the distance is negativepublic DistanceDetector(PVCoordinatesProvider dBody, double dist, double maxCheck, double threshold, EventDetector.Action action, boolean remove)
dBody - the body whose distance is watched.dist - distance in m triggering the event.maxCheck - maximum check (see AbstractDetector)threshold - threshold (see AbstractDetector)action - action performed at distance detectionremove - true if detector should be removedIllegalArgumentException - when the distance is negativepublic EventDetector.Action eventOccurred(SpacecraftState s, boolean increasing, boolean forward) throws PatriusException
eventOccurred in interface EventDetectoreventOccurred in class AbstractDetectors - the current state information : date, kinematics, attitudeincreasing - if true, the value of the switching function increases when time increases
around eventforward - if true, the integration variable (time) increases during integration.PatriusException - if some specific error occurspublic boolean shouldBeRemoved()
EventDetector.eventOccurred(fr.cnes.sirius.patrius.propagation.SpacecraftState, boolean, boolean) has been triggered. It returns true if the
current detector should be removed after first event detection. WARNING: this method
can be called only once a event has been triggered. Before, the value is not available.shouldBeRemoved in interface EventDetectorshouldBeRemoved in class AbstractDetectorpublic double g(SpacecraftState s) throws PatriusException
g in interface EventDetectorg in class AbstractDetectors - the current state information: date, kinematics, attitude for forces and events
computation, mass provider, and additional statesPatriusException - if some specific error occurspublic void init(SpacecraftState s0, AbsoluteDate t)
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.
init in interface EventDetectorinit in class AbstractDetectors0 - initial statet - target time for the integrationpublic double getDistance()
public PVCoordinatesProvider getBody()
public EventDetector copy()
The following attributes are not deeply copied:
PVCoordinatesProviderCopyright © 2020 CNES. All rights reserved.