var fDesc=new Array(); fDesc[0] = "ED-Elas2D is an educational program package for the analysis of 2D solids and structures using the Finite Element Method (FEM). The Finite Element Method is undoubtedly the most powerful numerical technique for solving a great variety of problems in science and industry.

Main features:
-calculate the element stiffness matrices,
-assemble the element stiffness matrices,
-calculate the element load vectors,
-assemble the the element load vectors,
-impose boundary conditions,
-impose external forces,
-calculate the displacement vector,
-calculate the strain field and
-calculate the stress field."; 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 = ''; } }