Package org.orekit.time
Class PerfectClockModel
- java.lang.Object
-
- org.orekit.time.PerfectClockModel
-
- All Implemented Interfaces:
ClockModel
public class PerfectClockModel extends Object implements ClockModel
Clock model for perfect clock with constant zero offset.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description PerfectClockModel()
-
Method Summary
All Methods Instance Methods Concrete 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
public AbsoluteDate getValidityStart()
Get validity start.- Specified by:
getValidityStart
in interfaceClockModel
- Returns:
- model validity start
-
getValidityEnd
public AbsoluteDate getValidityEnd()
Get validity end.- Specified by:
getValidityEnd
in interfaceClockModel
- Returns:
- model validity end
-
getOffset
public ClockOffset getOffset(AbsoluteDate date)
Get the clock offset at date.- Specified by:
getOffset
in interfaceClockModel
- Parameters:
date
- date at which offset is requested- Returns:
- clock offset at specified date
-
getOffset
public <T extends CalculusFieldElement<T>> FieldClockOffset<T> getOffset(FieldAbsoluteDate<T> date)
Get the clock offset at date.- Specified by:
getOffset
in interfaceClockModel
- Type Parameters:
T
- type of the field elements- Parameters:
date
- date at which offset is requested- Returns:
- clock offset at specified date
-
-