var fDesc=new Array(); fDesc[0] = "With Moody diagram you can calculate the pressure drop in any flow system.
Given the flow parameter (Re) and the roughness parameter (k/d), you can get the friction factor (f). Using the (f) factor, you can work out the pressure drop from: dP = ½ ρ f L V2 / d. This program works for all fluids like water, air, refrigerant, glycol, etc."; 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 = ''; } }