var fDesc=new Array(); fDesc[0] = "Thermal Explosion in Liquids program is intended for the simulation of explosions in in fluids when convection and diffusion are of significant importance.

Simulation of a problem is implemented by simultaneous numerical solving the system of partial differential equations consisting of: the continuity equation, the momentum balance equation, the heat balance equation, the component balance equations (Boussinesq approximation of Navier-Stokes equations), and equation for chemical source of heat generation."; 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 = ''; } }