DNx-AI-208 Analog Input Layer
30
Tel: 508-921-4600
www.ueidaq.com
Vers:
4.6
Date: November 2013
File:
AI-208 App B.fm
© Copyright 2009
United Electronic Industries, Inc.
double measuredDeltaV = voltageWithShunt-
voltageWithoutShunt;
double calculatedDeltaV = -Vex*(Rgage/
(4.0*Rs+2.0*Rgage));
// Calculate gain adjustment factor.
double gaf = calculatedDeltaV/ measuredDeltaV;
// Turn off shunt resistor
pChannel->EnableShuntCalibration(false);
// Starts the session again
session.Start();
// Read calibrated measurements!!
double calibratedVoltage;
reader.ReadSingleScan(calibratedVoltage);
calibratedVoltage = calibratedVoltage * gaf;
session.CleanUp();
B.6
Shunt
Calibration
in LabVIEW
The following is an example of a typical LabVIEW procedure for performing
shunt calibration for strain gauges.
The procedure is as follows:
STEP 1:
Create a session to measure voltage with excitation.
STEP 2:
Measure bridge output without shunt.