var fDesc=new Array();
fDesc[0] = "STAR-View+: Bring your results to life with the new free, 3D interactive results viewer for STAR-CCM+.
STAR-CCM+ provides a free stand-alone results viewer, STAR-View+, that facilitates collaboration between engineering teams by giving everyone access to interactive visualization of the computed results.
STAR-CCM+ allows users to distribute post-processed simulation results as “scene files” containing a three-dimensional representation of the stored CAE plot. When viewed using STAR-View+, scene files allow the viewer to zoom, pan and rotate the stored model and post-processing data asw well as show and hide features within the scene.
Now anyone, whether a STAR-CCM+ user or not, can have the luxury of fully exploring the solution.
STAR-View+ is free to distribute, requires no license, which means that you can simply attach it to an e-mail with a selection of scene files.";
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 = '';
}
}