-
Notifications
You must be signed in to change notification settings - Fork 73
Description
Problem
Sometimes I want to make a quick check to see how long a satellite stays in a given orbit, so that I can judge if an orbit works for a particular contract or mission. In these cases I run a check of 1000 days. In case of a reentry, I now have to binary search my way down to figure out when this reentry happens. 500 days? No reentry. 750 days? Reentry. 650 days? No reentry. So on and so forth. On my computer specs, this can take a very long time (1000 days take approximately a minute to search for me).
I assume the solver knows how many iterations it did to find the first failed orbit.
Suggested solution:
Show, instead of "reentry", "reentry on orbit x".
This might be less useful since there are a lot of orbits over that long time period, so that leads me to:
Alternative solution
Have it show, instead of "reentry", "reentry after x days, hours etc".