var fDesc=new Array(); fDesc[0] = "The gpfcalc application is a GTK+ frontend for pfcalc, a CLI pipe friction calculator.
The pfcalc stands for pipe friction calculator and is a CLI program that computes pressure drop in piping systems using the Darcy-Weisbach equation. The program is capable of computing minor and major pressure losses (pipe friction losses) for flow in pipes and ducts.
The aim is to provide an open source alternative to similar proprietary software.
The intended user base is made of those people working in the fields of mechanical and civil engineering, who need to estimate pressure drop in new or existing piping systems."; 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 = ''; } }