<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div>&gt;&nbsp;<span style="font-size: 12pt; ">We are doing numerical&nbsp;</span><span style="font-size: 12pt; ">integration of celestial bodies over large periods of time&nbsp;</span><span style="font-size: 12pt; ">(100 years is a norm).</span></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">I'm new to Scheme, so I may be totally wrong about this --- but, isn't a numerical program like this exactly what Scheme is *not* designed for? Isn't Scheme primarily for dynamic-OOP programs? Isn't this mostly a convenience to help people write programs
 quickly without having to worry about what type each datum is? I mean, isn't this mostly for writing scripts?</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">I would really write a program like yours in Forth. You don't have dynamic-OOP with all of the data types mushed together so that you don't know what type any particular datum is. You have explicit data types. It is an easy matter to implement another floating-point data stack that is 80-bit and all of the words are distinguished by a prefix --- like DF+ etc. (with the DF prefix meaning double-precision float, as compared to F+ which is just the usual floating point addition that is part of the standard). Also, you
 could modify your Forth system so that the standard floating-point stack is 80-bit rather than 64-bit, if you can be sure that everything you will be doing will be 80-bit --- that would make for cleaner source-code, and also allow your code to be ANS-Forth compliant.</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">If I couldn't use Forth, I would use assembly-language. Most modern assemblers have a pretty good macro system (although not as good as Forth's). I wouldn't want to use C, as it doesn't have macros at all (except #define string expansion, which doesn't count).&nbsp;</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new
 york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">If I was going to use Scheme, I would use Gambit or one of the other Scheme systems that compile into C, which does support 80-bit floats. I definitely wouldn't mess with any system that uses a VM and JIT, as that is horribly complicated (and it also tends to be slow).&nbsp;</div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">For the most part though, I would avoid using any dynamic-OOP language for a numerical program. That seems
 very clumsy, to have your data getting cast from one type to another without you explicitly casting it --- for numerical programming, you want to know what type (precision) your data is at all times.&nbsp;<span style="font-size: 12pt; ">I actually like Racket as a learning language, and I'm working on a game in Racket --- I'm just saying that a numerical application seems inappropriate. I'm new to Scheme though, so I could be wrong --- maybe what I'm saying is heresy, and Scheme is actually the best language for *every* program that could ever be written.&nbsp;</span></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; ">I'm certainly not saying that Forth is the&nbsp;<span
 style="font-size: 12pt; ">best language for *every* program that could ever be written --- over on comp.lang.forth I have argued many times that the Forth community should focus on using Forth for what Forth is good at, and not try to use Forth for what Forth is not good at. I have said that if we try to do this, Forth will become a "jack of all trades and a master of none." Your astronomy program, however, seems to be one of the few cases in which Forth is a good fit.</span></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent; font-style: normal; "><br></div><div style="color: rgb(0, 0, 0); font-size: 16px; font-family: 'times new roman', 'new york', times, serif; background-color: transparent;
 font-style: normal; "><br></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">Message: 1<br>Date: Sun, 11 Nov 2012 15:11:50 +0400<br>From: Dmitry Pavlov &lt;<a ymailto="mailto:dpavlov@ipa.nw.ru" href="mailto:dpavlov@ipa.nw.ru">dpavlov@ipa.nw.ru</a>&gt;<br>To: Matthias Felleisen &lt;<a ymailto="mailto:matthias@ccs.neu.edu" href="mailto:matthias@ccs.neu.edu">matthias@ccs.neu.edu</a>&gt;<br>Cc: <a ymailto="mailto:users@racket-lang.org" href="mailto:users@racket-lang.org">users@racket-lang.org</a><br>Subject: Re: [racket] 80-bit precision in Racket<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;CAA-Jc7GMds-Um3p0aaeg-X-Y6FzQB=<a ymailto="mailto:t1oS3gK-pNVmx5ZgSPpg@mail.gmail.com" href="mailto:t1oS3gK-pNVmx5ZgSPpg@mail.gmail.com">t1oS3gK-pNVmx5ZgSPpg@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=UTF-8<br><br>Neil,
 Matthias,<br><br>Certainly not #2, and I doubt that #4 is a problem for us<br>(although it may be, buried somewhere in specific calculations).<br><br>#1 and #3 definitely are our case. We are doing numerical<br>integration of celestial bodies over large periods of time<br>(100 years is a norm). The forces that act on bodies may be of<br>quite different orders of magnitude: for example, for near-Earth<br>objects the acceleration towards the Sun is about 2.9e-4 AU/days^2,<br>while corrections for peculiar relativistic effects (Lense-Thirring<br>acceleration etc.) can be as small as 1e-17 AU/days^2 (I do not<br>have exact numbers now). And those effects must be taken<br>into account. Yet the numerical integration procedure has its<br>numerical inaccuracies, too. So when we integrate these<br>accelerations over ten or more years, it sort of pushes the<br>limit of double precision representation. Again, I do not<br>(yet) have a precise mathematical proof of
 it, but it is<br>more or less obvious that we need to try 80-bit at least.<br><br>In addition to the above: it is known that the DE ephemeris<br>done at JPL, NASA were integrated with *quadruple* (128-bit)<br>precision:<br><a href="http://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/planets/a_old_versions/de414.cmt" target="_blank">http://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/planets/a_old_versions/de414.cmt</a><br>so it may be a clue that even 80-bit is not enough!<br>We are going to try 128-bit after we get 80-bit done.<br><br>#5 is also our case. Legacy system that we are porting to Racket<br>uses extended precision numbers.<br><br>Thanks for your help!<br><br>Best regards,<br><br>Dmitry<br><br> </div> </div>  </div></body></html>