var fDesc=new Array(); fDesc[0] = "Turbulence2D is the After Effects version of TurbulenceFD. TurbulenceFD's simulation pipeline implements a voxel-based solver founded on the incompressible Navier Stokes equations. That means it uses a voxel grid to describe the volumetric clouds of smoke and fire and solves the equations that describe the motion of fluid on that grid. For each voxel TurbulenceFD calculates the velocity of the fluid as well as several channels to describe properties like temperature, smoke density, amount of fuel, etc. This simulation process produces a voxel grid for each frame, which is cached on disk for use by the Volumetric Renderer."; 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 = ''; } }