Class OceanTidesWave
java.lang.Object
org.orekit.forces.gravity.potential.OceanTidesWave
Container for ocen tides coefficients for one tide wave.
- Since:
- 6.1
- Author:
- Luc Maisonobe
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionOceanTidesWave(int doodson, int degree, int order, double[][][] coefficients) Simple constructor. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddContribution(BodiesElements elements, double[][] cnm, double[][] snm) Add the contribution of the wave to Stokes coefficients.intGet the Doodson number for the wave.intGet the maximum supported degree.intGet the maximum supported order.
-
Constructor Details
-
OceanTidesWave
public OceanTidesWave(int doodson, int degree, int order, double[][][] coefficients) Simple constructor.- Parameters:
doodson- Doodson number for the wavedegree- max degree present in the coefficients arrayorder- max order present in the coefficients arraycoefficients- Cn,m+, Sn,m+, Cn,m- and Sn,m- coefficients
-
-
Method Details
-
getMaxDegree
public int getMaxDegree()Get the maximum supported degree.- Returns:
- maximum supported degree
-
getMaxOrder
public int getMaxOrder()Get the maximum supported order.- Returns:
- maximum supported order
-
getDoodson
public int getDoodson()Get the Doodson number for the wave.- Returns:
- Doodson number for the wave
-
addContribution
Add the contribution of the wave to Stokes coefficients.- Parameters:
elements- nutation elementscnm- spherical harmonic cosine coefficients table to add contribution toosnm- spherical harmonic sine coefficients table to add contribution too
-