Package org.orekit.time
Interface ClockModel
-
- All Known Implementing Classes:
AggregatedClockModel
,PerfectClockModel
,QuadraticClockModel
,SampledClockModel
public interface ClockModel
Offset clock model.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClockOffset
getOffset(AbsoluteDate date)
Get the clock offset at date.<T extends CalculusFieldElement<T>>
FieldClockOffset<T>getOffset(FieldAbsoluteDate<T> date)
Get the clock offset at date.AbsoluteDate
getValidityEnd()
Get validity end.AbsoluteDate
getValidityStart()
Get validity start.
-
-
-
Method Detail
-
getValidityStart
AbsoluteDate getValidityStart()
Get validity start.- Returns:
- model validity start
-
getValidityEnd
AbsoluteDate getValidityEnd()
Get validity end.- Returns:
- model validity end
-
getOffset
ClockOffset getOffset(AbsoluteDate date)
Get the clock offset at date.- Parameters:
date
- date at which offset is requested- Returns:
- clock offset at specified date
-
getOffset
<T extends CalculusFieldElement<T>> FieldClockOffset<T> getOffset(FieldAbsoluteDate<T> date)
Get the clock offset at date.- Type Parameters:
T
- type of the field elements- Parameters:
date
- date at which offset is requested- Returns:
- clock offset at specified date
-
-