|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.orekit.propagation.events.AbstractDetector fr.cnes.sirius.patrius.events.sensor.MaskingDetector
public class MaskingDetector
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 FormNested Class Summary |
---|
Nested classes/interfaces inherited from interface org.orekit.propagation.events.EventDetector |
---|
EventDetector.Action |
Field Summary |
---|
Fields inherited from class org.orekit.propagation.events.AbstractDetector |
---|
DEFAULT_MAXCHECK, DEFAULT_THRESHOLD |
Fields inherited from interface org.orekit.propagation.events.EventDetector |
---|
DECREASING, INCREASING, INCREASING_DECREASING |
Constructor Summary | |
---|---|
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. |
Method Summary | |
---|---|
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(org.orekit.propagation.SpacecraftState, boolean, boolean) has been triggered. |
Methods inherited from class org.orekit.propagation.events.AbstractDetector |
---|
getMaxCheckInterval, getMaxIterationCount, getSlopeSelection, getThreshold, resetState |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public 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)Method Detail |
---|
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 EventDetector
init
in class AbstractDetector
s0
- initial statet
- target time for the integrationpublic EventDetector.Action eventOccurred(SpacecraftState s, boolean increasing, boolean forward) throws OrekitException
eventOccurred
in interface EventDetector
eventOccurred
in class AbstractDetector
s
- 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.
OrekitException
- if some specific error occurspublic boolean shouldBeRemoved()
EventDetector.eventOccurred(org.orekit.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 EventDetector
shouldBeRemoved
in class AbstractDetector
public double g(SpacecraftState s) throws OrekitException
g
in interface EventDetector
g
in class AbstractDetector
s
- the current state information: date, kinematics, attitude for forces
and events computation, mass provider, and additional states
OrekitException
- if some specific error occurspublic String getMaskingObjectName()
public String getMaskingPartName()
public SensorModel getSensor()
public Assembly getAssembly()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |