var fDesc=new Array();
fDesc[0] = "MicroCFD 2D Virtual Wind Tunnel lets you analyze 2D and axisymmetric subsonic, transonic, and supersonic flow (Mach 0.1 to 10) over multi-element configurations on a Cartesian cut-cell mesh. Flow visualization is provided through color maps of local Mach number, density, pressure, and temperature, including streamline plots. It can be used to model vehicles in ground effect through a 2D simulation of flow along their centerline.
2D Virtual Wind Tunnel is available in Educational and Professional editions.";
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 = '';
}
}