Package org.orekit.frames
Class EOPFittedModel
- java.lang.Object
-
- org.orekit.frames.EOPFittedModel
-
public class EOPFittedModel extends Object
Container for fitted model for Earth Orientation Parameters.- Since:
- 12.0
- Author:
- Luc Maisonobe
- See Also:
PredictedEOPHistory
,EOPFitter
-
-
Constructor Summary
Constructors Constructor Description EOPFittedModel(SecularAndHarmonic dut1, SecularAndHarmonic xP, SecularAndHarmonic yP, SecularAndHarmonic dx, SecularAndHarmonic dy)
Simple constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SecularAndHarmonic
getDUT1()
Get the fitted secular and harmonics model for DUT1/LOD.SecularAndHarmonic
getDx()
Get the fitted secular and harmonics model for nutation x component.SecularAndHarmonic
getDy()
Get the fitted secular and harmonics model for nutation y component.SecularAndHarmonic
getXp()
Get the fitted secular and harmonics model for pole x component.SecularAndHarmonic
getYp()
Get the fitted secular and harmonics model for pole y component.
-
-
-
Constructor Detail
-
EOPFittedModel
public EOPFittedModel(SecularAndHarmonic dut1, SecularAndHarmonic xP, SecularAndHarmonic yP, SecularAndHarmonic dx, SecularAndHarmonic dy)
Simple constructor.- Parameters:
dut1
- fitted model for dut1 and LODxP
- fitted model for pole x componentyP
- fitted model for pole y componentdx
- fitted model for nutation x componentdy
- fitted model for nutation y component
-
-
Method Detail
-
getDUT1
public SecularAndHarmonic getDUT1()
Get the fitted secular and harmonics model for DUT1/LOD.LOD can be computed from DUT1 as
-Constants.JULIAN_DAY * getDUT1().osculatingDerivative(date)
- Returns:
- fitted secular and harmonics model for DUT1/LOD
-
getXp
public SecularAndHarmonic getXp()
Get the fitted secular and harmonics model for pole x component.- Returns:
- fitted secular and harmonics model for pole x component
-
getYp
public SecularAndHarmonic getYp()
Get the fitted secular and harmonics model for pole y component.- Returns:
- fitted secular and harmonics model for pole y component
-
getDx
public SecularAndHarmonic getDx()
Get the fitted secular and harmonics model for nutation x component.- Returns:
- fitted secular and harmonics model for nutation x component
-
getDy
public SecularAndHarmonic getDy()
Get the fitted secular and harmonics model for nutation y component.- Returns:
- fitted secular and harmonics model for nutation y component
-
-