Astronomical Almanac 2020 Pluto elements (#2 #22)

This commit is contained in:
mathar 2021-07-27 13:35:30 +02:00 committed by Brandon Rhodes
parent 258f7c1918
commit 26e5d1abc3
1 changed files with 9 additions and 9 deletions

View File

@ -45,17 +45,17 @@ pluto_ell (
double mj, /* epoch */ double mj, /* epoch */
double *ret) /* ecliptic coordinates {l,b,r} at equinox of date */ double *ret) /* ecliptic coordinates {l,b,r} at equinox of date */
{ {
/* mean orbital elements of Pluto. /* Mean orbital elements of Pluto.
* The origin of these is somewhat obscure. * Astronomical Almanac 2020 page G3.
*/ */
double a = 39.543, /* semimajor axis, au */ double a = 39.789, /* semimajor axis, au */
e = 0.2490, /* excentricity */ e = 0.252, /* excentricity */
inc0 = 17.140, /* inclination, deg */ inc0 = 17.097, /* inclination, deg */
Om0 = 110.307, /* long asc node, deg */ Om0 = 110.297, /* long asc node, deg */
omeg0 = 113.768, /* arg of perihel, deg */ omeg0 = 115.058, /* arg of perihel, deg */
mjp = 2448045.539 - MJD0, /* epoch of perihel */ mjp = 2459000.5 - MJD0, /* epoch of perihel */
mjeq = J2000, /* equinox of elements */ mjeq = J2000, /* equinox of elements */
n = 144.9600/36525.; /* daily motion, deg */ n = 0.0039; /* daily motion, deg */
double inc, Om, omeg; /* orbital elements at epoch of date */ double inc, Om, omeg; /* orbital elements at epoch of date */
double ma, ea, nu; /* mean, excentric and true anomaly */ double ma, ea, nu; /* mean, excentric and true anomaly */