Propagation without central body

Hi all,

I am trying to propagate orbits around Lagrange points and in order to validate the propagation, I use the JPL JWST Horizons’ ephemeris as reference and starting point of the propagation.
I face a very strange behaviour. Indeed, propagating without central body and with only Earth, Moon and Sun single body attractions, in Solar System Barycenter reference frame I end up with a position error of more than 2km after 1.5 days (I also added inertial acceleration but for SSB, I checked, the acceleration is indeed 0.). Introducing Jupiter perturbation reduces the error to ~200m.
The very strange thing is that I compared these 2 propagations with a classical propagation with an Earth-centered and luni-solar third body propagator (without jupiter then) and this propagator gives the best results.
The propagation without central body and Jupiter added is the second best at ~25m of the classical Earth-centered propagator (cf. plot).
I do not succeed to explain this behaviour. In my opinion, single body propagation (with Earth, Sun and Moon single body attraction) and earth-centered J2000 lunisolar propagation have to be equivalent.
The inertial acceleration of earth-centered J2000 reference frame seems to me (correct me if I am mistaking) taken into account in the differential acceleration of the solar 3rd body perturbation.
If you have any explanation for this, I would be very glad to hear it.
Many thanks in advance !

Please find attached the python script (I use Orekit with Python through Jpype) used to generate the data, and the reference OEM (sorry, I was mistaking, the test case was on Orion DRO instead of JWST but I have had the same behaviour with JWST case). Hope this could help.

valid_propags_orekit.py (7.2 KB)
CCSDS_OEM_Orion.txt (382.7 KB)

Hi @francois.thevenot,

I’m upping your question. Sorry I didn’t have time to look into it yet

1 Like

Hi @MaximeJ,

Thank you very much ! If you have any idea, I would be glad to hear it because I have no clue on my side.

Hi @francois.thevenot,

I’ve noticed that if I use the Sun instead of the Solar System Barycenter frame as integration_frame the results look more consistent (see below). But that’s not what I would call an explanation :sweat_smile:

I have noticed something else:

  • using SSB as ìntegration_frame`
  • the more gas giant planets you add to the propagator, the closer you get from the “central body (J2000)” case
  • if you add Venus you’re worst
  • but if you add Mars then you’re closer to JPL ephemeris than the “central body” case

See below

So I have no idea what’s happening. For the gas giants, I’d say it’s related to the movement of the Sun with respect to the SSB. For Mars, I have no clue because its impact on the movement of SSB is negligible.

Hi @MaximeJ,

Thank you very much to have taken the time to have a look into the problem. Very weird that adding Venus seems to give worser results than adding Mars…one other explanation could lie in the ‘reference’ trajectory. I mean, would it be possible that the JPL ephemeris for Orion be generated using simple Earth centered propagator with third body perturbations ? If so, what we would see as an improvement could be instead a degradation…I’ll dig a bit into this.
Again thanks a lot for your investigation !

François

1 Like

Hi again @MaximeJ,

I have tried something else to get rid of JPL ephemeris. To do so, I have started from a simply geo orbit I have propagated in two ways :

  • with classical propagator: Earth-centered propagator (0x0 Earth potential, only central attraction) + lunisolar third body acceleration
  • with no central body propagator: in some inertial reference frame, I add earth, Moon and Sun forces. I tried in two inertial reference frames : J2000 and Sun Solar Barycenter.

Here are the results of the differencies between the no central body propagation and classical Earth-centered propagation:

In blue, the differences using Sun Solar Barycenter as reference frame for the no central body propagation and in green using J2000.
The 2 propagators agree quite well when using Sun Solar Barycenter (less than 1km after 1.5 days) but not at all when integrating in J2000. I suspect a problem with the inertial forces, given that there are zero in Sun Solar Barycenter.
Secondly, I end up again with the similar behaviour that we have seen previously. Indeed, adding Jupiter and Saturn to the no central body propagator improves the results (gain of roughly one order of magnitude in position).


I supsect something with the bodies ephemerides that somehow must integrate the whole solar systems acceleration. But what I don’t understand is that these ephemerides are used in both propagators to compute the bodies accelerations (being 3rd body or single body attraction) so there is still a mystery to me…
Please find attached the new script corresponding to this case. If you have any illumination… :smiley:
valid_propags_orekit_2.py (6.9 KB)

1 Like