I don’t think you’re entirely wrong.I've noticed this for a long time. If you look at the "Trips" app on the center screen, you will see those "forbidden" values. I'm of the opinion that the instrument cluster display truncates to 1 decimal position and the center rounds correctly to 1 place. (Software dev here) So I'm guessing that the higher precision values are something like 2.50, 2.59, 2.70, or something like that. Rouding would give you 2.5, 2.6, 2.7, but truncating gives you 2.5, 2.5, 2.7.
Disclaimer: I'm talking out my butt, but that doesn't mean I'm wrong.
| Binary representation of km (whole part . fractional part) | km (decimal) | Miles (rounded up to one decimal place) |
|---|---|---|
| 11.00 | 3.0 | 1.9 |
| 11.01 | 3.3 | 2.0 |
| 11.10 | 3.5 | 2.1 or 2.2 (is one of these never seen?) |
| 11.11 | 3.8 | 2.3 or 2.4 (is one of these never seen?) |
| 100.00 | 4.0 | 2.5 |
| 100.01 | 4.3 | 2.7 |
| 100.10 | 4.5 | 2.8 |
| 100.11 | 4.8 | 3.0 |
| ... | ... | ... |
| 1111.11 | 15.8 | 9.8 |
| 10000.00 | 16.0 | 10.0 |
It's the equivalent of missing Floor 13 in superstition ridden hotel design.I’ve been driving my Lightning for about 18 months now, and one thing that I have noticed on my daily trip is that I never can achieve 2.6M/KWh. I can do 2.5, I can do 2.7, but the truck will never show 2.6. Why?
Antone else notice this?
This is like why iPhones will not display 69°. It’s more than likely a conversion from metric to customary units that just doesn’t display it, ever.I don’t think you’re entirely wrong.
I think maybe it’s truncating in the binary representation's fractional part (two bits maximum for the fractional part) of the km/kWh calculation, rounding or truncating in the conversion from binary to decimal, and then rounding or truncating in the conversion from km to miles. I haven't tracked to check if other values are missing from the display, though.
Binary representation of km (whole part . fractional part) km (decimal) Miles (rounded up to one decimal place) 11.00 3.0 1.9 11.01 3.3 2.0 11.10 3.5 2.1 or 2.2 (is one of these never seen?) 11.11 3.8 2.3 or 2.4 (is one of these never seen?) 100.00 4.0 2.5 100.01 4.3 2.7 100.10 4.5 2.8 100.11 4.8 3.0 ... ... ... 1111.11 15.8 9.8 10000.00 16.0 10.0