public class MaskingDetector extends AbstractDetector
Sensor masking detector.
The default implementation behaviour is to
continue propagation at raising and to stop propagation at setting. This can be changed by using provided constructors.
SensorModel,
Serialized FormEventDetector.ActionDEFAULT_MAXCHECK, DEFAULT_THRESHOLDDECREASING, INCREASING, INCREASING_DECREASING| Constructor and Description |
|---|
MaskingDetector(Assembly assembly,
String partName,
double maxCheck,
double threshold)
Constructor for the sensor masking detector.
|
MaskingDetector(SensorModel sensorModel,
double maxCheck,
double threshold)
Constructor for the sensor masking detector.
|
MaskingDetector(SensorModel sensorModel,
double maxCheck,
double threshold,
EventDetector.Action raising,
EventDetector.Action setting)
Constructor for the sensor masking detector.
|
MaskingDetector(SensorModel sensorModel,
double maxCheck,
double threshold,
EventDetector.Action raising,
EventDetector.Action setting,
boolean removeRaising,
boolean removeSetting)
Constructor for the sensor masking detector.
|
| Modifier and Type | Method and Description |
|---|---|
EventDetector.Action |
eventOccurred(SpacecraftState s,
boolean increasing,
boolean forward)
Handle "masking" event and choose what to do next.
|
double |
g(SpacecraftState s)
Compute the value of the switching function.
|
Assembly |
getAssembly()
Get the assembly.
|
String |
getMaskingObjectName()
Get the masking object.
|
String |
getMaskingPartName()
Get the masking part.
|
SensorModel |
getSensor()
Get the sensor.
|
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, resetStatepublic MaskingDetector(SensorModel sensorModel, double maxCheck, double threshold)
The default implementation behavior is to
continue propagation at raising and to
stop propagation at setting.
sensorModel - the spacecraft's sensor model. A main target and some masking objects must have been set to compute
this detection.maxCheck - maximal checking interval (s)threshold - convergence threshold (s)public MaskingDetector(SensorModel sensorModel, double maxCheck, double threshold, EventDetector.Action raising, EventDetector.Action setting)
sensorModel - the spacecraft's sensor model. A main target and some masking objects must have been set to compute
this detection.maxCheck - maximal checking interval (s)threshold - convergence threshold (s)raising - action performed when propagation at raisingsetting - action performed when propagation at settingpublic MaskingDetector(SensorModel sensorModel, double maxCheck, double threshold, EventDetector.Action raising, EventDetector.Action setting, boolean removeRaising, boolean removeSetting)
sensorModel - the spacecraft's sensor model. A main target and some masking objects must have been set to compute
this detection.maxCheck - maximal checking interval (s)threshold - convergence threshold (s)raising - action performed when propagation at raisingsetting - action performed when propagation at settingremoveRaising - true if detector should be removed at raisingremoveSetting - true if detector should be removed at settingpublic MaskingDetector(Assembly assembly, String partName, double maxCheck, double threshold)
assembly - the spacecraft's modelpartName - the name of the part supporting the sensormaxCheck - maximal checking interval (s)threshold - convergence threshold (s)public 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.
init in interface EventDetectorinit in class AbstractDetectors0 - initial statet - target time for the integrationpublic EventDetector.Action eventOccurred(SpacecraftState s, boolean increasing, boolean forward) throws PatriusException
eventOccurred in interface EventDetectoreventOccurred in class AbstractDetectors - the current state information : date, kinematics, attitudeincreasing - if true, the value of the switching function increases when times increases around event.forward - 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 EventDetectorshouldBeRemoved in class AbstractDetectorpublic double g(SpacecraftState s) throws PatriusException
g in interface EventDetectorg in class AbstractDetectors - the current state information: date, kinematics, attitude for forces
and events computation, mass provider, and additional statesPatriusException - if some specific error occurspublic String getMaskingObjectName()
public String getMaskingPartName()
public SensorModel getSensor()
public Assembly getAssembly()
Copyright © 2017 CNES. All rights reserved.