09-13-2005 06:02 PM
09-14-2005 04:24 PM
09-15-2005 11:14 AM
09-16-2005 09:18 AM
What you are using is not a strain gage - it is a load cell, so it doesn't make sense to try and scale it's output using one of our strain gage equations. I would recommend creating a DAQmx Custom Voltage with Excitation Task, because you have all the information that you need to scale your signal into kilograms based on the raw voltage reading. Let me explain...
At full scale your voltage reading will be 2.6304 mV / V, where V is refering to the excitation voltage input. So, if you use 10V for your excitation voltage, then at 5kg (which is full capacity) you will read 2.6304mV/V * 10V = 26.304mV.
Vex = Excitation Voltage (V)
Max Load = 5kg
Vr = Voltage Reading (V)
Now, since your load cell is very linear, you can compute your slope of the y = mx+b equation by saying that m = (max load / (Vex * 2.6304)), which yields the equation:
Load = (Max Load / (Vex * 2.6304)) * Vr * 1000 (the 1000 accounts for the conversion from your reading which is in Volts to mV)
or: Load = (1000 * 5 / 2.6304) * (Vr / Vex)
or: Load = 1900 * Vr / Vex
I hope this helps!
09-16-2005 11:04 AM
Thank You!! Finally, someone who's knows what they're talking about!
When I started this thing, I never looked down the list of tasks, I saw Strain gage near the top, clicked it and went on to throuroughly confuse myself. While, of course, the load cell uses a strain gage method internally , the output is simple mV! Duh!
Thanks Again,
Rpulsifer
09-16-2005 11:09 AM
BTW, E LEE, I was so excited that my app worked, that it wasn't until after I posted my thank yous that I noticed that it was a different person that clarified my cross connected braincells. So, no offense from my first "Finally" remark (I thot it was you) Many thanks to both of your efforts.
RandyP