public class ExtremaElevationDetector extends AbstractDetector
MIN
, MAX
and
MIN_MAX
for both.
The default implementation behaviour is to stop
propagation when the
minimum/maximum elevation is reached. This can be changed by using provided constructors.
EventDetector
,
Serialized FormEventDetector.Action
Modifier and Type | Field and Description |
---|---|
static int |
MAX
Flag for local maximum elevation detection.
|
static int |
MIN
Flag for local minimum elevation detection.
|
static int |
MIN_MAX
Flag for both local minimum and maximum elevation detection.
|
DEFAULT_MAXCHECK, DEFAULT_THRESHOLD
DECREASING, INCREASING, INCREASING_DECREASING
Constructor and Description |
---|
ExtremaElevationDetector(TopocentricFrame topoFrame,
int extremumType,
double maxCheck)
Constructor for a min and max elevation detector.
|
ExtremaElevationDetector(TopocentricFrame topoFrame,
int extremumType,
double maxCheck,
double threshold)
Constructor for a min or max elevation detector.
|
ExtremaElevationDetector(TopocentricFrame topoFrame,
int extremumType,
double maxCheck,
double threshold,
EventDetector.Action action)
Constructor for a min or max elevation detector.
|
ExtremaElevationDetector(TopocentricFrame topoFrame,
int extremumType,
double maxCheck,
double threshold,
EventDetector.Action action,
boolean remove)
Constructor for a min or max elevation detector.
|
Modifier and Type | Method and Description |
---|---|
EventDetector.Action |
eventOccurred(SpacecraftState s,
boolean increasing,
boolean forward)
Handle an extrema distance event and choose what to do next.
|
double |
g(SpacecraftState s)
Compute the value of the switching function.
|
TopocentricFrame |
getTopocentricFrame() |
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, getSlopeSelection, getThreshold, resetState
public static final int MIN
public static final int MAX
public static final int MIN_MAX
public ExtremaElevationDetector(TopocentricFrame topoFrame, int extremumType, double maxCheck)
This constructor takes default value for convergence threshold (AbstractDetector.DEFAULT_THRESHOLD
).
The maximal interval between elevation checks should be smaller than the half duration of the minimal pass to handle, otherwise some short passes could be missed.
public ExtremaElevationDetector(TopocentricFrame topoFrame, int extremumType, double maxCheck, double threshold)
The maximal interval between elevation checks should be smaller than the half duration of the minimal pass to handle, otherwise some short passes could be missed.
The default implementation behavior is to stop
propagation when the expected
extremum is reached.
topoFrame
- topocentric frame in which elevation should be evaluatedextremumType
- MIN
for minimal elevation detection,
MAX
for maximal elevation detection
or MIN_MAX
for both shortest and
farthest elevation detectionmaxCheck
- maximal checking interval (s)threshold
- convergence threshold (s)public ExtremaElevationDetector(TopocentricFrame topoFrame, int extremumType, double maxCheck, double threshold, EventDetector.Action action)
The maximal interval between elevation checks should be smaller than the half duration of the minimal pass to handle, otherwise some short passes could be missed.
topoFrame
- topocentric frame in which elevation should be evaluatedextremumType
- MIN
for minimal elevation detection,
MAX
for maximal elevation detection
or MIN_MAX
for both shortest and
farthest elevation detectionmaxCheck
- maximal checking interval (s)threshold
- convergence threshold (s)action
- action performed at extrema elevation detectionpublic ExtremaElevationDetector(TopocentricFrame topoFrame, int extremumType, double maxCheck, double threshold, EventDetector.Action action, boolean remove)
The maximal interval between elevation checks should be smaller than the half duration of the minimal pass to handle, otherwise some short passes could be missed.
topoFrame
- topocentric frame in which elevation should be evaluatedextremumType
- MIN
for minimal elevation detection,
MAX
for maximal elevation detection
or MIN_MAX
for both shortest and
farthest elevation detectionmaxCheck
- maximal checking interval (s)threshold
- convergence threshold (s)action
- action performed at extrema elevation detectionremove
- true if detector should be removed at extrema elevation detectionpublic void init(SpacecraftState s0, AbsoluteDate t)
AbstractDetector
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 EventDetector
init
in class AbstractDetector
s0
- initial statet
- target time for the integrationpublic EventDetector.Action eventOccurred(SpacecraftState s, boolean increasing, boolean forward) throws PatriusException
eventOccurred
in interface EventDetector
eventOccurred
in class AbstractDetector
s
- the current state information : date, kinematics, attitudeincreasing
- if true, the value of the switching function increases
when times 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 EventDetector
shouldBeRemoved
in class AbstractDetector
public double g(SpacecraftState s) throws PatriusException
AbstractDetector
g
in interface EventDetector
g
in class AbstractDetector
s
- the current state information: date, kinematics, attitude for forces
and events computation, mass provider, and additional statesPatriusException
- if some specific error occurspublic TopocentricFrame getTopocentricFrame()
Copyright © 2017 CNES. All rights reserved.