Class InterSatDirectViewDetector
- java.lang.Object
-
- org.orekit.propagation.events.AbstractDetector<InterSatDirectViewDetector>
-
- org.orekit.propagation.events.InterSatDirectViewDetector
-
- All Implemented Interfaces:
Serializable,EventDetector
public class InterSatDirectViewDetector extends AbstractDetector<InterSatDirectViewDetector>
Detector for inter-satellites direct view (i.e. no masking by central body limb).As this detector needs two satellites, it embeds one
coordinates providerfor the slave satellite and is registered as an event detector in the propagator of the master satellite. The slave satellite provider will therefore be driven by this detector (and hence by the propagator in which this detector is registered).In order to avoid infinite recursion, care must be taken to have the slave satellite provider being completely independent from anything else. In particular, if the provider is a propagator, it should not be run together in a
propagators parallelizerwith the propagator this detector is registered in. It is fine however to configure two separate propagators PsA and PsB with similar settings for the slave satellite and one propagator Pm for the master satellite and then use Psa in this detector registered within Pm while Pm and Psb are run in the context of apropagators parallelizer.For efficiency reason during the event search loop, it is recommended to have the slave provider be an analytical propagator or an ephemeris. A numerical propagator as a slave propagator works but is expected to be computationally costly.
The
gfunction of this detector is positive when satellites can see each other directly and negative when the central body limb is in between and blocks the direct view.This detector only checks masking by central body limb, it does not take into account satellites antenna patterns. If these patterns must be considered, then this detector can be
and combinedwith thelogical notoffield of view detectors.- Since:
- 9.3
- Author:
- Luc Maisonobe
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.orekit.propagation.events.AbstractDetector
DEFAULT_MAX_ITER, DEFAULT_MAXCHECK, DEFAULT_THRESHOLD
-
-
Constructor Summary
Constructors Constructor Description InterSatDirectViewDetector(OneAxisEllipsoid body, PVCoordinatesProvider slave)simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected InterSatDirectViewDetectorcreate(double newMaxCheck, double newThreshold, int newMaxIter, EventHandler<? super InterSatDirectViewDetector> newHandler)Build a new instance.doubleg(SpacecraftState state)Compute the value of the switching function.OneAxisEllipsoidgetCentralBody()Get the central body.PVCoordinatesProvidergetSlave()Get the provider for the slave satellite.-
Methods inherited from class org.orekit.propagation.events.AbstractDetector
eventOccurred, getHandler, getMaxCheckInterval, getMaxIterationCount, getThreshold, init, isForward, resetState, withHandler, withMaxCheck, withMaxIter, withThreshold
-
-
-
-
Constructor Detail
-
InterSatDirectViewDetector
public InterSatDirectViewDetector(OneAxisEllipsoid body, PVCoordinatesProvider slave)
simple constructor.- Parameters:
body- central bodyslave- provider for the slave satellite
-
-
Method Detail
-
getCentralBody
public OneAxisEllipsoid getCentralBody()
Get the central body.- Returns:
- central body
-
getSlave
public PVCoordinatesProvider getSlave()
Get the provider for the slave satellite.- Returns:
- provider for the slave satellite
-
create
protected InterSatDirectViewDetector create(double newMaxCheck, double newThreshold, int newMaxIter, EventHandler<? super InterSatDirectViewDetector> newHandler)
Build a new instance.- Specified by:
createin classAbstractDetector<InterSatDirectViewDetector>- 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
-
g
public double g(SpacecraftState state)
Compute the value of the switching function. This function must be continuous (at least in its roots neighborhood), as the integrator will need to find its roots to locate the events.The
gfunction of this detector is positive when satellites can see each other directly and negative when the central body limb is in between and blocks the direct view.- Specified by:
gin interfaceEventDetector- Specified by:
gin classAbstractDetector<InterSatDirectViewDetector>- Parameters:
state- the current state information: date, kinematics, attitude- Returns:
- value of the switching function
-
-