var fDesc=new Array(); fDesc[0] = "xEsoView is a file viewer for EnergyPlus .eso output files which gives the user a very fast overview of the simulation results.
xEsoView shows all reported variable names in a list, which can be sorted and filtered, on the left hand side. On the right hand side it shows the graphical representation of the selected variable."; 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 = ''; } }