01-03-2008 12:06 PM
Paulo,
The resistor in the 9944 is a dummy 120 Ohm resistor that will allow you to easily complete a quarter bridge connection. You will still need to connect your strain gauge to the terminals of the 9944. I found this link helpful.
01-12-2008 01:56 PM
1. Place a precision 100 KOhm resistor in parallel with my gauge by coding “Shunt Cal Enable = True” on the FPGA
2. Take an analog reading
3. Remove the precision 100 KOhm resistor in parallel by coding “Shunt Cal Enable = False” on the FPGA
4. Take an analog reading
5. Compare the two readings and ensure that the strain values returned indicate a resistance change of having your strain gauge of some resistance shunted by 100 KOhms.
Looking at my attachment is this the right idea that I have? I am unsure of how to take an analog reading of the voltage. Can you explain this and is this the correct set up to do this in the FPGA and then go about calibrating the module? Thanks for the help.
Jimmy
01-14-2008 01:46 PM
Jimmy,
What you have in that image will not result in a proper calibration. After the initial LSB, Offset and Data Rate steps, as seen in the Getting started example, you need three separate analog readings, each with their own start and stop. You will need one normal reading. You will need to turn on Shunt Cal, take a reading and then turn off Shunt Cal. You will need to turn on Offset Cal, take a reading and then turn off Offset Cal. The Offset and Shunt Cals make physical changes in the bridge. It is up to you to take reading and make the appropriate calculations.
01-14-2008 03:10 PM
Thanks for the reply, Charlie. I think I may understand the idea behind the calibration, but I am unsure of the set-up. First, when setting up this calibration procedure what I first need is a test material with a strain gage and an applied strain. Is this correct? I would think that this is my normal reading. Second, when you say analog reading do you mean just measure the voltage and then i would need to convert this to strain from the strain formula? I will use a 9944 quarter bridge completion. How would I take the "normal" reading without hooking up the 9944? It looks like the shunt cal. and offset cal. only deal with placing the resistor in parallel with the gage. So I guess I am unceratin about the specific steps to take. Would you or someone else who is reading this post be able to explain in fine detail what needs to be done?
Thank you.
01-15-2008 03:50 PM
1. Shunt Cal and Offset Cal are calibrations for your final set-up and wiring. Thus, you need your strain gauge glued to your test material and wired to the 9237/9944. .
2. All your readings, measurements, analog readings… (whatever you want to call them) are to be taken with your test material in a relaxed, unstressed state. These readings from the 9237 are a ratio of channel voltage to excitation voltage. The transition from a binary reading on the FPGA VI to a useful value is shown in the 9237 getting started example.
3. You should have the 9944 hooked up at all times.
4. The details of what is physically done by enabling Shunt Cal and Offset Cal is described in the manual. You can use these features to develop your own custom calibration procedures.
02-12-2008 09:21 AM
02-12-2008 09:56 AM
02-12-2008 10:23 AM
This example program shows how the Shunt Cal Enable and Offset Cal Enable I/O Properties of the NI 9237 can be used to calibrate a system. The system that this example calibrates for is a quarter bridge configured strain gauge system at rest.
The calibration performed in this example takes three unique readings. The first is a normal analog reading of the system. The second reading is done with the Shunt Cal Enable I/O Property set to true. The last reading is done with the Offset Call Enable I/O Property set to true.
The difference in the first two readings simulates a strain change by shunting one of the arms in the bridge with a precision 100 KOhm resistor. That change is read as a strain and compared to a theoretical calculation based on knowledge of the resistance of the strain gauges used. This test will indicate the effect of the resistance of the wires used to complete the bridge. The longer the external wires to the strain gauge, the greater the resistance. Such an increase in resistance can cause inaccuracies in strain readings. A normal % error should be less than 1%.
The difference in the first and last readings indicates how unbalanced the bridge is. The last reading, with the Offset Cal Enable I/O Property node set to true, returns a reading of the bridge perfectly balanced. It does this by internally disconnecting the external leads and shorting out the analog input channel. If the first reading of the unstrained system has a reading near the limit of the module, the system may move outside of the module’s range when it is loaded. The NI 9237 has a range of -25 mV/V to 25 mV/V.
This example requires LabVIEW 8.5, LabVIEW RT 8.5, LabVIEW FPGA 8.5 as well as the NI RIO 2.3 or 2.3.1 Driver.
02-12-2008 11:40 AM
02-12-2008 11:59 AM
Jimmy,
This has not been tested and will probably have some broken arrows that you will need to clean up. But, it should give you the basic idea.