Package org.orekit.time
Class SampledClockModel
- java.lang.Object
-
- org.orekit.time.SampledClockModel
-
- All Implemented Interfaces:
ClockModel
public class SampledClockModel extends Object implements ClockModel
Offset clock model backed up by a sample.- Since:
- 12.1
- Author:
- Luc Maisonobe
-
-
Constructor Summary
Constructors Constructor Description SampledClockModel(List<ClockOffset> sample, int nbInterpolationPoints)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableTimeStampedCache<ClockOffset>
getCache()
Get the clock offsets cache.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.
-
-
-
Constructor Detail
-
SampledClockModel
public SampledClockModel(List<ClockOffset> sample, int nbInterpolationPoints)
Simple constructor.- Parameters:
sample
- clock offsets samplenbInterpolationPoints
- number of points to use in interpolation
-
-
Method Detail
-
getCache
public ImmutableTimeStampedCache<ClockOffset> getCache()
Get the clock offsets cache.- Returns:
- clock offsets cache
-
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
-
-