var fDesc=new Array();
fDesc[0] = "Professional Shunt Calibration Calculator application.
Features:
- Guides the user through the shunt calibration using a step wise approach
- Works with following bridge configurations:
- Quarter bridge: 2 wire and 3 wire
- Half bridge: bending, poisson, self temperature cancellation and bending cancellation
- Full bridge: bending, torsion, poisson's beam and poisson's column
- Can perform following calculations:
- Simulated microstrain using shunt resistance and bridge details
- Microstrain per volt using shunt resistance, bridge details, and one of instrument gain or voltage readout
- Voltage readout using shunt resistance, bridge details, and instrument gain
- Instrument gain using shunt resistance, bridge details, and one of voltage readout or microstrain per volt
- Shunt resistance using simulated microstrain and bridge details
- Saves the test reports in World/Excel
- Maintains a history of all calibration tests
- Includes a full featured excitation voltage calculator
- Features thermal correction and linearity chart";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}