There’s a fairly general result in the computational fluid dynamics folklore which may be useful for those interested in low precision computations. It’s often said that non-dimensionalization reduces round-off error, frequently without clear justification. I was recently intrigued by this [1] and spent a while looking into it. What I learned is that a non-dimensional form by itself is neither necessary or sufficient. You can get the same benefit with a dimensional form, and a poorly chosen non-dimensional form will not have the benefit. The heuristic I’ve come up with is to use a change of variables to place the variables in the simulation near zero as floating point number density is highest there. This can be done with both non-dimensional and dimensional variables. The change of variables may not even change the form of the governing equations.
Here are some papers I’ve found interesting on this subject:
- https://www.sciencedirect.com/science/article/abs/pii/S0021999199962113 (This is the most useful paper I’ve seen. It clearly shows that a benefit comes from writing variables in perturbation form, which places the values near zero, and is not necessarily non-dimensional. I figure that scaling could help too, but avoiding cancellation is the most important part in my view.)
- https://www.sciencedirect.com/science/article/abs/pii/S0021999113000478 (Figs. 16 and 17 and appendix B show and discuss the effect of pressure non-dimensionalization. While not rigorous, this paper certainly is suggestive. Long-time symmetry checks are easy to do, as well.)
- https://www.sciencedirect.com/science/article/abs/pii/S0010465519302954 (I’m not sure this is actually “optimal”, but based on my skim reading, it’s worth looking at for anyone interested in this problem.)
Also: You can find many examples of people saying that non-dimensionalization helps when all non-dimensional variables are of the same order of magnitude. That’s incorrect, as cancellation can be a major issue if the order of magnitude is large. This is why my heuristic is to place the numbers near zero (all order of magnitude of 1), which is more restrictive. I guess these folks want to avoid underflow? My approach would help there too.
(All of this may seem obvious to those with more experience than me, but since there’s so little written about this specific issue, I figure this post will be useful to someone anyway. I am in no way an expert on floating point computation, so I’d appreciate any corrections if my understanding is wrong.)
[1] I was reminded of this when reviewing some notes I wrote 5+ years ago, and was intrigued because I had been planning to write a CFD code using compile-time unit checking similar to quaff and single-precision for speed. Would my use of a dimensional code make round-off error unacceptable at low precision? I later realized that if the change of variables doesn’t change the form of the equations, you can run a “dimensional” code with non-dimensional numbers, so the answer is no.