var fDesc=new Array();
fDesc[0] = "CompHPis a compressor horsepower calculator. It replaces the cardboard circular slide rule that just about every natural gas engineer has received from a compressor vendor at some point; however, in addition to a horsepower calculation.
With CompHP you can also:
- See the effect of suction temperature on compressor horsepower
- See how gravity and diluent content affect compressor capacity
- Calculate intercooler and aftercooler heat duties
Determine the effect of valve pressure drop on compressor capacity at low suction pressures.";
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 = '';
}
}