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 ClockOffsetgetOffset(AbsoluteDate date)Get the clock offset at date.<T extends CalculusFieldElement<T>>
FieldClockOffset<T>getOffset(FieldAbsoluteDate<T> date)Get the clock offset at date.AbsoluteDategetValidityEnd()Get validity end.AbsoluteDategetValidityStart()Get validity start.
-
-
-
Method Detail
-
getValidityStart
public AbsoluteDate getValidityStart()
Get validity start.- Specified by:
getValidityStartin interfaceClockModel- Returns:
- model validity start
-
getValidityEnd
public AbsoluteDate getValidityEnd()
Get validity end.- Specified by:
getValidityEndin interfaceClockModel- Returns:
- model validity end
-
getOffset
public ClockOffset getOffset(AbsoluteDate date)
Get the clock offset at date.- Specified by:
getOffsetin 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:
getOffsetin interfaceClockModel- Type Parameters:
T- type of the field elements- Parameters:
date- date at which offset is requested- Returns:
- clock offset at specified date
-
-