T
- type of the detectorpublic abstract class AbstractDetector<T extends AbstractDetector<T>> extends Object implements EventDetector
Propagator.addEventDetector(EventDetector)
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_MAX_ITER
Default maximum number of iterations in the event time search.
|
static double |
DEFAULT_MAXCHECK
Default maximum checking interval (s).
|
static double |
DEFAULT_THRESHOLD
Default convergence threshold (s).
|
Modifier | Constructor and Description |
---|---|
protected |
AbstractDetector(AdaptableInterval maxCheck,
double threshold,
int maxIter,
EventHandler handler)
Build a new instance.
|
protected |
AbstractDetector(double maxCheck,
double threshold,
int maxIter,
EventHandler handler)
Build a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected abstract T |
create(AdaptableInterval newMaxCheck,
double newThreshold,
int newMaxIter,
EventHandler newHandler)
Build a new instance.
|
abstract double |
g(SpacecraftState s)
Compute the value of the switching function.
|
EventHandler |
getHandler()
Get the handler.
|
AdaptableInterval |
getMaxCheckInterval()
Get maximal time interval between switching function checks.
|
int |
getMaxIterationCount()
Get maximal number of iterations in the event time search.
|
double |
getThreshold()
Get the convergence threshold in the event time search.
|
void |
init(SpacecraftState s0,
AbsoluteDate t)
Initialize event handler at the start of a propagation.
|
boolean |
isForward()
Check if the current propagation is forward or backward.
|
T |
withHandler(EventHandler newHandler)
Setup the event handler to call at event occurrences.
|
T |
withMaxCheck(AdaptableInterval newMaxCheck)
Setup the maximum checking interval.
|
T |
withMaxCheck(double newMaxCheck)
Setup the maximum checking interval.
|
T |
withMaxIter(int newMaxIter)
Setup the maximum number of iterations in the event time search.
|
T |
withThreshold(double newThreshold)
Setup the convergence threshold.
|
public static final double DEFAULT_MAXCHECK
public static final double DEFAULT_THRESHOLD
public static final int DEFAULT_MAX_ITER
protected AbstractDetector(double maxCheck, double threshold, int maxIter, EventHandler handler)
maxCheck
- maximum checking interval, must be strictly positive (s)threshold
- convergence threshold (s)maxIter
- maximum number of iterations in the event time searchhandler
- event handler to call at event occurrencesprotected AbstractDetector(AdaptableInterval maxCheck, double threshold, int maxIter, EventHandler handler)
maxCheck
- maximum checking intervalthreshold
- convergence threshold (s)maxIter
- maximum number of iterations in the event time searchhandler
- event handler to call at event occurrencespublic 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.
The default implementation does nothing
This implementation sets the direction of propagation and initializes the event
handler. If a subclass overrides this method it should call super.init(s0, t)
.
init
in interface EventDetector
s0
- initial statet
- target time for the integrationpublic abstract double g(SpacecraftState s)
g
in interface EventDetector
s
- the current state information: date, kinematics, attitudepublic AdaptableInterval getMaxCheckInterval()
getMaxCheckInterval
in interface EventDetector
public int getMaxIterationCount()
getMaxIterationCount
in interface EventDetector
public double getThreshold()
getThreshold
in interface EventDetector
public T withMaxCheck(double newMaxCheck)
This will override a maximum checking interval if it has been configured previously.
newMaxCheck
- maximum checking interval (s)public T withMaxCheck(AdaptableInterval newMaxCheck)
This will override a maximum checking interval if it has been configured previously.
newMaxCheck
- maximum checking interval (s)public T withMaxIter(int newMaxIter)
This will override a number of iterations if it has been configured previously.
newMaxIter
- maximum number of iterations in the event time searchpublic T withThreshold(double newThreshold)
This will override a convergence threshold if it has been configured previously.
newThreshold
- convergence threshold (s)public T withHandler(EventHandler newHandler)
This will override a handler if it has been configured previously.
newHandler
- event handler to call at event occurrencespublic EventHandler getHandler()
getHandler
in interface EventDetector
protected abstract T create(AdaptableInterval newMaxCheck, double newThreshold, int newMaxIter, EventHandler newHandler)
newMaxCheck
- maximum checking interval (s)newThreshold
- convergence threshold (s)newMaxIter
- maximum number of iterations in the event time searchnewHandler
- event handler to call at event occurrencespublic boolean isForward()
Copyright © 2002-2023 CS GROUP. All rights reserved.