ansys 定义横截面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansys 定义横截面相关的知识,希望对你有一定的参考价值。

梁单元,有几个不同尺寸的横截面,请问怎么用apdl的方式定义几个横截面及其尺寸。
举个例子最好。。。谢谢

!!!!!!直接建立有限元模型的属性设置
!!!!!!以下属性设置
ET,1,LINK180
SECTYPE,1,LINK, ,S1
SECDATA,As1,
SECCONTROL,0,1
MPTEMP,,,,,,,,
MPTEMP,1,0
MPDATA,EX,1,,EM1
MPDATA,PRXY,1,,
MPTEMP,,,,,,,,
MPTEMP,1,0
MPDATA,DENS,1,,rou1
!!!!!!将相应单元类型、材料属性、截面属性激活,赋予要生成的单元
TYPE,1
MAT,1
SECNUM,1
!!!!!!在上述属性下,生成单元
*do,i,1,18,1
EN,i,i,i+1
*enddo
第一段命令可以将用到的所有属性设置好;第二第三段命令联合使用,要生成 的单元需要什么属性,就在第二段激活相关设置。
参考技术A ANSYS帮助文件说的很清楚啊!
下面是我做的一个槽钢,对应帮助文件应该是没问题的
ET,2,BEAM188
keyopt,2,1,0 !约束beam188单元的一个自由度,使其与shell63单元协调
SECTYPE,1,BEAM,CHAN,HENGCHEN!槽型钢,ID为1,名称为hengcheng,
SECOFFSET, CENT
SECDATA,0.1,0.1,0.4,0.018,0.018,0.0105!槽钢40a尺寸本回答被提问者采纳

如何在给定梁的端点和横截面的情况下创建简单的 IFC 文件

【中文标题】如何在给定梁的端点和横截面的情况下创建简单的 IFC 文件【英文标题】:How to create a simple IFC file given end points of the beam and a cross section 【发布时间】:2019-09-09 21:20:19 【问题描述】:

我想创建一个代表梁的 IFC 文件。我的输入是 2 个点和一个横截面定义。目的是查看光束的形状。有人可以指出我正确的方向。 XBim 有什么东西可以做到这一点吗?

我试图通读从 Tekla 导出的只有一根梁的 IFC 文件。我试图通读 IFC Schema 定义规范。(找到一个不是很成功)

没有写代码

我期待的是输入个人资料。 (我不知道如何输入轮廓),输入起点和终点以创建代表梁的IFC文件。然后我应该能够在 IFC 查看器中打开文件并查看光束

【问题讨论】:

IFC 模式定义可以在这里找到:technical.buildingsmart.org/standards/ifc/… 【参考方案1】:

XBim 将所有 IFC 实体提供为 C# 类(早期绑定)。

例如,您可以通过这种方式创建交叉配置文件:

public IfcProfileDef getBasicProfileDescirption() 
    IfcPolyline polyline = new IfcPolyline(id++);
    model_.insertEntity(polyline);

    double Left = -OverallWidth_ / 2.0;
    double Right = OverallWidth_ / 2.0;
    double Top = OverallDepth_ / 2.0;
    double Bottom = -OverallDepth_ / 2.0;

    polyline.Points.add(createPoint(Left,Top) ); // coordinate (A)
    polyline.Points.add(createPoint(Right,Top) ); // coordinate (B)
    polyline.Points.add(createPoint(Right,Top-FlangeThickness_)); // coordinate (C)
    polyline.Points.add(createPoint(WebThickness_*0.5,Top-FlangeThickness_) ); // coordinate (D)
    polyline.Points.add(createPoint(WebThickness_*0.5,Bottom+FlangeThickness_) ); // coordinate (E)
    polyline.Points.add(createPoint(Right,Bottom+FlangeThickness_) ); // coordinate (F)
    polyline.Points.add(createPoint(Right,Bottom) ); // coordinate (G)
    polyline.Points.add(createPoint(Left,Bottom) ); // coordinate (H)
    polyline.Points.add(createPoint(Left,Bottom+FlangeThickness_) ); // coordinate (I)
    polyline.Points.add(createPoint(-WebThickness_*0.5,Bottom+FlangeThickness_) ); // coordinate (J)
    polyline.Points.add(createPoint(-WebThickness_*0.5,Top-FlangeThickness_) ); // coordinate (K)
    polyline.Points.add(createPoint(Left,Top-FlangeThickness_) ); // coordinate (L)
    // close profile
    polyline.Points.add(createPoint(Left,Top)); // coordinate (A)

    IfcArbitraryClosedProfileDef profile = new IfcArbitraryClosedProfileDef(id++);
    model_.insertEntity(profile);

    //profile.ProfileType = new IfcProfileTypeEnum(IfcProfileTypeEnum.AREA);
    profile.OuterCurve = polyline;

    return profile;
 

要创建笛卡尔二维点,我使用以下方法:

private IfcCartesianPoint createPoint(double x, double y) 
    IfcCartesianPoint point = new IfcCartesianPoint(id++);

    point.Coordinates.add(new IfcLengthMeasure(x));
    point.Coordinates.add(new IfcLengthMeasure(y));

    model_.insertEntity(point);

    return point;

可以通过这种方式创建挤压实体形状的轮廓:

private IfcExtrudedAreaSolid getBasicProfileDescirption() 
    IfcExtrudedAreaSolid baseMesh = new IfcExtrudedAreaSolid();
    baseMesh.SweptArea = getBasicProfileDescirption();
    baseMesh.ExtrudedDirection = createDirecton(0, 0, 1);
    baseMesh.Depth = new IfcPositiveLengthMeasure(scale_ * height_);
    return baseMesh;

IFC 定义了许多可以使用的交叉部分(配置文件):

顺便说一句,getDirection 方法如下所示:

private IfcDirection createDirecton(double x, double y, double z) 
    IfcDirection dir = new IfcDirection();
    dir.DirectionRatios.add(new IfcReal(x));
    dir.DirectionRatios.add(new IfcReal(y));
    dir.DirectionRatios.add(new IfcReal(z));
    return dir;

【讨论】:

【参考方案2】:

谢谢你,我会试试这个。

【讨论】:

请在您的回答中提供更多详细信息。正如目前所写的那样,很难理解您的解决方案。

以上是关于ansys 定义横截面的主要内容,如果未能解决你的问题,请参考以下文章

请教ansys的一个问题:Element 54174 integration 1 point is located outside of end statios.

ansys单元库在哪

ANSYS中如何施加如图右侧方向的约束?

ansys中如何合理定义接触对???

R-统计分析的一些R包和函数

IfcProfileResource(档案资源)