-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decimal precision is not correct #72
Comments
This is largely an issue with the PLC using 32-bit IEEE 754 floating point and Node using 64-bit IEEE 754 floating point. Here is how Node stores 0.123456789 in hex (BE): Here is how the PLC stores it: When the data comes into the EIP driver, it it's as a byte array. Then it's converted to a float. The bytes match. The issue is the conversion to a float. Node stores it as a 64-bit number and fills the rest with zeros.
Maybe a custom float conversion could be written to handle it, but it hasn't been an issue for me in practice. You can get back to the original data and do the conversion yourself after the fact if you want. |
Interesting. Thanks for the insight. I'll have to look and see if there's a way I can do something in my script. The error, while very small, is actually a bigger deal for what I'm trying to do since I need to capture the exact value. |
If you want to do that, you might be better off encoding it in a DINT. Float/Real is typically okay if the binary error is less than your required precision, which doesn't sound like your use case. |
Yeah that's exactly what I thought about doing. |
Current Behavior
Returns extra decimal places that do not exist in PLC
Expected Behavior
Return exact value as exists in PLC
Possible Solution (Optional)
Unknown...
Context
Values are not true to what exist in the PLC.
Steps to Reproduce (for bugs only)
Your Environment
Package version (Use
npm list
- e.g. 1.0.6):[email protected]
Node Version (Use
node --version
- e.g. 9.8.0):v12.18.2
Operating System and version:
Ubuntu 18.04
Controller Type (eg 1756-L83E/B):
1756-L73 or 1769-L18ER/B
Controller Firmware (eg 30.11):
30.11 or 27.11, respectively
The text was updated successfully, but these errors were encountered: