Class FieldNodeDetector<T extends org.hipparchus.RealFieldElement<T>>
- java.lang.Object
-
- org.orekit.propagation.events.FieldAbstractDetector<FieldNodeDetector<T>,T>
-
- org.orekit.propagation.events.FieldNodeDetector<T>
-
- All Implemented Interfaces:
FieldEventDetector<T>
public class FieldNodeDetector<T extends org.hipparchus.RealFieldElement<T>> extends FieldAbstractDetector<FieldNodeDetector<T>,T>
Finder for node crossing events.This class finds equator crossing events (i.e. ascending or descending node crossing).
The default implementation behavior is to
continue
propagation at descending node crossing and tostop
propagation at ascending node crossing. This can be changed by callingFieldAbstractDetector.withHandler(FieldEventHandler)
after construction.Beware that node detection will fail for almost equatorial orbits. If for example a node detector is used to trigger an
ImpulseManeuver
and the maneuver turn the orbit plane to equator, then the detector may completely fail just after the maneuver has been performed! This is a real case that has been encountered during validation ...- Author:
- Luc Maisonobe
- See Also:
FieldPropagator.addEventDetector(FieldEventDetector)
-
-
Field Summary
-
Fields inherited from class org.orekit.propagation.events.FieldAbstractDetector
DEFAULT_MAX_ITER, DEFAULT_MAXCHECK, DEFAULT_THRESHOLD
-
-
Constructor Summary
Constructors Constructor Description FieldNodeDetector(FieldOrbit<T> orbit, Frame frame)
Build a new instance.FieldNodeDetector(T threshold, FieldOrbit<T> orbit, Frame frame)
Build a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected FieldNodeDetector<T>
create(T newMaxCheck, T newThreshold, int newMaxIter, FieldEventHandler<? super FieldNodeDetector<T>,T> newHandler)
Build a new instance.T
g(FieldSpacecraftState<T> s)
Compute the value of the switching function.Frame
getFrame()
Get the frame in which the equator is defined.-
Methods inherited from class org.orekit.propagation.events.FieldAbstractDetector
eventOccurred, getHandler, getMaxCheckInterval, getMaxIterationCount, getThreshold, init, isForward, resetState, withHandler, withMaxCheck, withMaxIter, withThreshold
-
-
-
-
Constructor Detail
-
FieldNodeDetector
public FieldNodeDetector(FieldOrbit<T> orbit, Frame frame)
Build a new instance.The orbit is used only to set an upper bound for the max check interval to period/3 and to set the convergence threshold according to orbit size.
-
FieldNodeDetector
public FieldNodeDetector(T threshold, FieldOrbit<T> orbit, Frame frame)
Build a new instance.The orbit is used only to set an upper bound for the max check interval to period/3.
-
-
Method Detail
-
create
protected FieldNodeDetector<T> create(T newMaxCheck, T newThreshold, int newMaxIter, FieldEventHandler<? super FieldNodeDetector<T>,T> newHandler)
Build a new instance.- Specified by:
create
in classFieldAbstractDetector<FieldNodeDetector<T extends org.hipparchus.RealFieldElement<T>>,T extends org.hipparchus.RealFieldElement<T>>
- Parameters:
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 occurrences- Returns:
- a new instance of the appropriate sub-type
-
getFrame
public Frame getFrame()
Get the frame in which the equator is defined.- Returns:
- the frame in which the equator is defined
-
g
public T g(FieldSpacecraftState<T> s)
Compute the value of the switching function. This function computes the Z position in the defined frame.- Specified by:
g
in interfaceFieldEventDetector<T extends org.hipparchus.RealFieldElement<T>>
- Specified by:
g
in classFieldAbstractDetector<FieldNodeDetector<T extends org.hipparchus.RealFieldElement<T>>,T extends org.hipparchus.RealFieldElement<T>>
- Parameters:
s
- the current state information: date, kinematics, attitude- Returns:
- value of the switching function
-
-