Commit Graph

10 Commits

Author SHA1 Message Date
Don Cross
1c0c31de20 Removed the Stellarium data I used to verify initial Jupiter Moon implementation. 2021-04-11 20:01:39 -04:00
Don Cross
87f5dd1c95 Jupiter Moons: greatly increased JPL Horizons test data coverage.
I want to make sure I have thorough coverage of exercising
the Jupiter moon calculations before I start tinkering
with truncating the L1.2 models; the eventual goal is
to decrease the code size, especially later for JavaScript.
Only 101 test cases seemed far too small. Now there are 5001.

Increased the time range to cover the years 1931..2068.
Decreased the time step from 100 days to 10 days.
Eliminated all but the geometric data, because I'm testing
code without any light-time or aberration correction.

Updated the README.txt instructions for generating the
JPL Horizons test data.
2021-04-11 11:33:17 -04:00
Don Cross
260ef16781 C Jupiter Moons : cleaner generated code.
Output the Jupiter moon model data tables in a tidier format.
Format the amplitudes as fixed-point instead of exponential,
so that the JavaScript minifier will have an easier time
shrinking the data (later, when I get to the JavaScript version).
2021-04-11 10:30:32 -04:00
Don Cross
dcbd6fe243 Jupiter moons calculations are now consistent with Stellarium.
I translated the L1.2 FORTRAN code into C, and verified
that the calculations match the Stellarium code I modified
to produce EQJ coordinates. I still need to compare against
JPL Horizons data.
2021-04-10 16:29:10 -04:00
Don Cross
69eb06e6a8 Jupiter Moons: updated data and reference code to generate EQJ.
Instead of calculating ECL coordinates that I will later
have to convert to EQJ, I re-ran all the JPL Horizons test
data sets for EQJ, and updated the rotation matrix in the
Stellarium sample code to generate EQJ output. I'm still
getting reasonably good fit between the two: the max
error is about 1 part in 5000. I was hoping for better,
so I still wonder if I'm just a tiny bit off in some respect.
2021-04-08 21:02:36 -04:00
Don Cross
38a14301e6 Compare Stellarium data with JPL Horizons data for Jupiter's moons.
Stellarium uses the same L1.2 model for Jupiter's moons that
I am implementing. I wanted to confirm that I have valid test
data that matches something authoritative.
2021-04-07 21:00:04 -04:00
Don Cross
5b1671f994 Added JPL Horizons test data for Jupiter's moons state vectors.
The file README.txt contains my instructions for how to reproduce
all of this data using the JPL Horizons online tool.
2021-04-07 17:27:51 -04:00
Don Cross
881664a5f0 C: Stubbed function for calculating Jupiter's moons.
Work in progress.
Generating the data tables for Jupiter's moons, but not using them yet.
Created a stub function Astronomy_JupiterMoons(), but it just
returns invalid vectors. The formulas have not yet been implemented.
2021-04-06 16:42:29 -04:00
Don Cross
e8f4d1091a Script to validate the L1.2 model FORTRAN code for Jupiter's moons. 2021-04-05 15:04:52 -04:00
Don Cross
efc2f0d8cf Capturing some FORTRAN code for Jupiter's moons from ftp.imcce.fr.
I found some FORTRAN code for calculating the positions of Jupiter's
moons. I recorded its origin in README.md. I'm going to experiment
with using it as a basis for doing these calculations in Astronomy Engine.
2021-04-05 14:50:49 -04:00