public abstract class FieldAbstractDetector<D extends FieldEventDetector<T>,T extends org.hipparchus.RealFieldElement<T>> extends Object implements FieldEventDetector<T>
Propagator.addEventDetector(EventDetector)
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_MAX_ITER
Default cmaximum 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 |
FieldAbstractDetector(T maxCheck,
T threshold,
int maxIter,
FieldEventHandler<? super D,T> handler)
Build a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected abstract D |
create(T newMaxCheck,
T newThreshold,
int newMaxIter,
FieldEventHandler<? super D,T> newHandler)
Build a new instance.
|
FieldEventHandler.Action |
eventOccurred(FieldSpacecraftState<T> s,
boolean increasing)
Handle the event.
|
abstract T |
g(FieldSpacecraftState<T> s)
Compute the value of the switching function.
|
FieldEventHandler<? super D,T> |
getHandler()
Get the handler.
|
T |
getMaxCheckInterval()
Get maximal time interval between switching function checks.
|
int |
getMaxIterationCount()
Get maximal number of iterations in the event time search.
|
T |
getThreshold()
Get the convergence threshold in the event time search.
|
void |
init(FieldSpacecraftState<T> s0,
FieldAbsoluteDate<T> t)
Initialize event handler at the start of a propagation.
|
boolean |
isForward()
Check if the current propagation is forward or backward.
|
FieldSpacecraftState<T> |
resetState(FieldSpacecraftState<T> oldState)
Reset the state prior to continue propagation.
|
D |
withHandler(FieldEventHandler<? super D,T> newHandler)
Setup the event handler to call at event occurrences.
|
D |
withMaxCheck(T newMaxCheck)
Setup the maximum checking interval.
|
D |
withMaxIter(int newMaxIter)
Setup the maximum number of iterations in the event time search.
|
D |
withThreshold(T 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 FieldAbstractDetector(T maxCheck, T threshold, int maxIter, FieldEventHandler<? super D,T> handler)
maxCheck
- maximum checking interval (s)threshold
- convergence threshold (s)maxIter
- maximum number of iterations in the event time searchhandler
- event handler to call at event occurrencespublic void init(FieldSpacecraftState<T> s0, FieldAbsoluteDate<T> 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
init
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
s0
- initial statet
- target time for the integrationpublic abstract T g(FieldSpacecraftState<T> s) throws OrekitException
g
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
s
- the current state information: date, kinematics, attitudeOrekitException
- if some specific error occurspublic T getMaxCheckInterval()
getMaxCheckInterval
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
public int getMaxIterationCount()
getMaxIterationCount
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
public T getThreshold()
getThreshold
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
public D withMaxCheck(T newMaxCheck)
This will override a maximum checking interval if it has been configured previously.
newMaxCheck
- maximum checking interval (s)public D 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 D withThreshold(T newThreshold)
This will override a convergence threshold if it has been configured previously.
newThreshold
- convergence threshold (s)public D withHandler(FieldEventHandler<? super D,T> newHandler)
This will override a handler if it has been configured previously.
newHandler
- event handler to call at event occurrencespublic FieldEventHandler<? super D,T> getHandler()
public FieldEventHandler.Action eventOccurred(FieldSpacecraftState<T> s, boolean increasing) throws OrekitException
eventOccurred
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
s
- SpaceCraft state to be used in the evaluationincreasing
- with the event occurred in an "increasing" or "decreasing" slope directionOrekitException
- if some specific error occurspublic FieldSpacecraftState<T> resetState(FieldSpacecraftState<T> oldState) throws OrekitException
This method is called after the step handler has returned and
before the next step is started, but only when FieldEventDetector.eventOccurred(org.orekit.propagation.FieldSpacecraftState<T>, boolean)
has itself returned the FieldEventHandler.Action.RESET_STATE
indicator. It allows the user to reset the state for the next step,
without perturbing the step handler of the finishing step. If the
FieldEventDetector.eventOccurred(org.orekit.propagation.FieldSpacecraftState<T>, boolean)
never returns the FieldEventHandler.Action.RESET_STATE
indicator, this function will never be called, and it is safe to simply return null.
The default implementation simply returns its argument.
resetState
in interface FieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
oldState
- old stateOrekitException
- if the state cannot be resetedprotected abstract D create(T newMaxCheck, T newThreshold, int newMaxIter, FieldEventHandler<? super D,T> 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-2017 CS Systèmes d'information. All rights reserved.