var fDesc=new Array();
fDesc[0] = "Six additional calculations are now available with BeamView-USB for flat top beam analysis. These calculations are based upon the ISO 13694:2000 standards. The following calculations will allow for greater flexibility for the analysis of applications involving flat top beam shapes. These BeamView-USB calculations may assist in the analysis of Excimer and Nd:YAG laser customers looking to analyze beam uniformity in the near field.
Main Features:
- Plateau Uniformity
- Flatness Factor
- Edge Steepness
- Beam Uniformity
- Effective Irradiation Area
- Effective Average Power/Energy Density";
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 = '';
}
}