var fDesc=new Array(); fDesc[0] = "Heat duty calculator is a free software to help with computing the sensible heat duty and the latent heat transfer rate, the calculator uses the equations stated in the article available at WeBBusterZ Engineering Articles website. This article titled "How to calculate the heat duty". The software can accept input in SI Units or English Units of measurement. The flow rate can be specified by volume or mass flow. The answer will be shown in several units:
Flow rate input units - m3/s, m3/h, m3/day, ft3/s, ft3/h, ft3/day, kg/s, kg/h, kg/day, lb/s, lb/h, lb/day
The output heat rate (Duty) is calculated in kW, Btu/h, hp (British), hp (Metric)"; 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 = ''; } }