Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

CS105 code used incorrectly for a CS106 sensor


HRECOS Nov 2, 2011 01:27 PM

We recently realized that we were using the wrong coefficients for our CS106 Barometric Pressure Sensor. We were using those for CS105 and not the 106.
Specifically,
What we were using (CS105 code incorrectly used for a CS106 sensor): VoltSe(BP_inHg,1,mV2500,1,1,0,_60Hz,0.184,600.0)

What we should have been using (CS106 code): VoltSe(BP_inHg,1,mV2500,1,1,0,_60Hz,0.240,500.0)

We have fixed this problem for future measurements but I would like to correct the historic record.
Is there a simple equation I can use to convert the historic data to the correct measurements?

Thank you,
Alene Onion


Dizbert Nov 3, 2011 12:15 AM

Just use a speadsheet to backout the old mult and offset to get the original raw values and then apply the correct mult and offset.

correct_value = (((old_value-600)/0.184)*0.240)+500


HRECOS Nov 3, 2011 12:39 PM

Thank you! That's exactly what we needed.

Log in or register to post/reply in the forum.