var fDesc=new Array(); fDesc[0] = "Export Revit to ETABS is a custom plug-in created to enhance Autodesk Revit's Structural Integration with CSI's structural Analysis software ETABS. The plug-in would be able to export the following Revit Elements:
- Columns
- Braces
- Walls
- Slabs
- Slab Openings
- Grids
- Levels
- Rigid Links
Features:
- The ability to rotate your analytical model about the global Z axis before exporting to ETABS.
- The ability to export all elements , or elements by worksets, or by selected elements.
- The option to auto-correct the analytical node coordinates that are close to each other by a specified distance."; 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 = ''; } }