var fDesc=new Array();
fDesc[0] = "HeatHit -Arbitrary body shape editor and heat transfer analysis
Main Features:
- Easy creation of 3D bodies with holes, 3D views with different angles
- STL files import. You can import the body shape from STL files created by CAD/CAM or other 3Dsoftware
- Automatic net determination for heat transfer analysis, normally between 50,000 and 1,000,000 points
- User-defined points with fixed temperature and internal heat sources
- Two convection fronts and two radiation fronts
- Dynamic transient process analysis
- Various modes of graphical results display: temperature at sections by planes, 3D view of the whole body, plots of temperature changes as function of time, display for both temperature and temperature gradient
- Material parameters may be uniform or different in different parts of the body";
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 = '';
}
}