var fDesc=new Array(); fDesc[0] = "Boltzmann 3D is a kinetic theory demonstrator that visually illustrates principles of kinetic theory on your computer screen. Boltzmann 3D is written in Java using OpenGL graphics libraries and exists in Windows, Mac, and Linux versions.
Use Boltzmann 3D as a classroom demonstrator of molecular motion by projecting the computer image on a screen. It may also be used as a hands-on activity for students to understand how molecular motion leads to macroscopic properties like gas pressure, vapor pressure, chemical reaction rates, diffusion, effusion, thermal transport, and many more"; 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 = ''; } }