var fDesc=new Array(); fDesc[0] = "ABEC combines boundary and lumped element methods. Complicated acoustics is calculated with the help of BEM. Simple acoustics, structures and electronics is handled by the LEM.
ABEC stands for Acoustic Boundary Element Calculator. ABEC directly solves the Helmholtz Integral for the interior and exterior radiation problem. It's all acoustics, no mechanics. The integral is solved by decomposing the structure into triangles assuming constant pressure on each finite element."; 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 = ''; } }