1. 使用RebarGroup创建钢筋组,需要把钢筋组的所有属性均赋值完,否则RebarGroup无法生成;
private bool CreateRebarGroup_InTekla(CXML_Object.Mesh_Bar mesh_Bar, TSM.ContourPlate cplate,
double width, double length)
{
TSM.Model model = new TSM.Model();
TSM.RebarGroup rg = new TSM.RebarGroup();
rg.Father = cplate;
rg.Polygons = GetRebarGroupPolygons(mesh_Bar, width, length);
rg.RadiusValues = new ArrayList() { mesh_Bar.RebarDiameter * 2.0 };
var spacings = GetRebarGroupSpacings(mesh_Bar.RebarSpace);
rg.Spacings = spacings;

本文介绍如何在Tekla软件中使用RebarGroup类创建钢筋组,并详细解释了设置钢筋组属性的过程,包括钢筋直径、间距类型等。
最低0.47元/天 解锁文章
765

被折叠的 条评论
为什么被折叠?



