question

Daniel Pavan avatar image
1 Like"
Daniel Pavan asked Ralf Gruber commented

Incorrect calculation values

Please run the following code in a script window with the output window open:

  1. int test1 = 138;
  2.  
  3. int test2 = 50;
  4.  
  5. double test3 = test1/test2;
  6.  
  7. pr();pt(\"dp number testx\");pt(numtostring(test3, 54, 50));
  8.  
  9. return test3;

The answer provided in the script window appears to be correct (2.7600) but the answer shown in the output windows shows the calulated value(2.75999999999999980). Why is the actual calculated value slightly wrong?

FlexSim (other - please specify)
FlexSim (other)
calculationdecimal precisioncomparisonfloating pointaccuracy
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Phil BoBo avatar image
2 Likes"
Phil BoBo answered Ralf Gruber commented

Danny,

That is the nature of how computers handle decimal precision values, particularly how C++ handles a division operation. There are lots of complicated explanations and papers about why it is done this way.

A relatively short explanation can be found on wikipedia: http://en.wikipedia.org/wiki/Floating_point

There is a section entitled "Accuracy problems" near the bottom of that article that explains it a bit.

Usually it doesn't matter that the precision is slightly off, but sometimes it messes with your logic when doing comparison operations as shown below.

The main issue is when you think it is going to get into one of the simple cases (==, <=, >=, <, >, or !) but it doesn't. There are a few things you can do to see if it is "close enough" though to avoid such precision comparison issues. I've included some of those in the following code as well. It happens that your example actually does work for the == test although ofttimes such division calculations wouldn't. You have to be careful in C++ with == when you are comparing to a double value that has been assigned based on a division or multiplication operation.

  1. int test1 = 138.0;
  2. int test2 = 50.0;
  3. double test3 = test1/test2;
  4.  
  5. pt("dp number testx");pt(numtostring(test3, 54, 50));
  6. pr();
  7. if(test3 == 2.76)
  8. {
  9. pt("exactly 2.76");
  10. pr();
  11. }
  12. if(fabs(test3 - 2.76) < 0.0001)
  13. {
  14. pt("close enough to equal 2.76");
  15. pr();
  16. }
  17. if(test3 <= 2.76)
  18. {
  19. pt("<= 2.76");
  20. pr();
  21. }
  22. if(test3-0.0001 <= 2.76)
  23. {
  24. pt("close enough to <= 2.76");
  25. pr();
  26. }
  27. if(test3 >= 2.76)
  28. {
  29. pt(">= 2.76");
  30. pr();
  31. }
  32. if(test3+0.0001 >= 2.76)
  33. {
  34. pt("close enough to >= 2.76");
  35. pr();
  36. }
  37. return test3;

I hope this helps. Good luck.

· 14
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.