advertisement
from the instrumentation department...
32 bit floating point measurement to 16 bit scaling
Engineering and workplace issues. topic
Posted by khalid on 21 February, 2012 - 1:49 pm
good night

we have a digital meter that supposed to be connected to a DCS system via modbus. the meter measurements are of the type 32bit floating point number while the DCS system only supports a 16 bit signed int format.
if we take the most significant 16 bits and ignores the least one - for example if the floatint point value is represented as (4167007B) hex we just take the (4167) hex value that means a 51.09% of the full scale value (7FFF)Hex - how much accuracy we get.


Posted by Jerry Miille on 22 February, 2012 - 12:45 am
That is not how a floating point number format works. Do a search on IEEE Floating Point and you will see several explanations.

One possible solution would be to use a Protocol Converter to translate this for you. We sell one that than can read in a floating point number and convert it to either two integers that when multiplied together will get you "close" to the number and another option to convert a float to a long integer. In both cases, you lose everything past the decimal point and with larger numbers (above 65,535) some precision there as well. But, if all you need to do is get "close" that might work for you. You can check here http://www.miille.com/PCds.htm or contact me off list for more information. The links are on the data sheets and web pages.

Jerry Miille


Posted by Rob on 22 February, 2012 - 8:24 am
32 bit IEEE floating point numbers don't work like that. You MUST read all 32 bits (ie 2 * 16 bit values) and then convert those two 16 bit words into an integer value. If your DCS has a function for converting IEEE format numbers to integers then great, otherwise google and other posts on this site are your friends.

Rob
www[.]lymac.co.nz


Posted by Ken E on 22 February, 2012 - 8:39 am
Accuracy is different than resolution, I'm assuming for now that you mean resolution.

You will get 16 bit resolution if the full signal you are measuring will be scaled/represented by the full 32 bit value. That is to say that if your full scale value that you are interested in is passed back by 0xFFFFFFFF (i.e. 2^32 ) then reading the upper 16 bit word is correct and you throw away the lower 16 bits. If you have control of how the meter value gets scaled than you are all set, make it so that 2^32 is the max value that you care about.

KEJR


Posted by Ken E on 22 February, 2012 - 9:14 am
Yikes, I replied earlier regarding throwing away the lower 16 bits, but Jerry has it right. If the meter REALLY sends back a IEEE floating point number than it is more difficult. I'd make sure of this.

Ken


Posted by khalid on 23 February, 2012 - 6:36 am
Thank you all for your quick replay and the valuable advices

yours
khalid

Your use of this site is subject to the terms and conditions set forth under Legal Notices and the Privacy Policy. Please read those terms and conditions carefully. Subject to the rights expressly reserved to others under Legal Notices, the content of this site and the compilation thereof is © 1999-2013 Nerds in Control, LLC. All rights reserved.

Users of this site are benefiting from open source technologies, including PHP, MySQL and Apache. Be happy.


Fortune
When someone says "I want a programming language in which I need only
say what I wish done," give him a lollipop.
Advertise here
Advertisement
our advertisers
Help keep our servers running...
Patronize our advertisers!
Visit our Post Archive