Searches for the time when a satellite orbit decays.
Namespace: Zeptomoby.OrbitTools.TrackAssembly: Zeptomoby.OrbitTools.Track (in Zeptomoby.OrbitTools.Track.dll) Version: 1.5.0.0 (1.5.0.0)
Syntax
C# |
---|
public static Nullable<DateTime> CalcDecayTime( this IOrbit orbit, DateTime t1, DateTime t2 ) |
Visual Basic |
---|
<ExtensionAttribute> _ Public Shared Function CalcDecayTime ( _ orbit As IOrbit, _ t1 As DateTime, _ t2 As DateTime _ ) As Nullable(Of DateTime) |
Visual C++ |
---|
[ExtensionAttribute] public: static Nullable<DateTime> CalcDecayTime( IOrbit^ orbit, DateTime t1, DateTime t2 ) |
Parameters
- orbit
- Type: IOrbit
The satellite orbit.
- t1
- Type: System..::..DateTime
The search start time.
- t2
- Type: System..::..DateTime
The search end time
Return Value
The time that the orbit decays, else null to indicate no decay condition detected.Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IOrbit. When you use instance method syntax to call this method, omit the first parameter. For more information, seeRemarks
For best results, always use a t1 value equal to the satellite
orbit's epoch time.