IFC 4.3.2.20260714 (IFC4X3_ADD2) under development

8.15.3.25 IfcTShapeProfileDef(T形轮廓定义)

8.15.3.25.1 语义定义

IfcTShapeProfileDef 定义了一个截面轮廓,提供用于扫掠面积实体的T形截面的定义参数。其参数相对于位置坐标系的定向如下所示。位置坐标系的中心位于轮廓边界框的中心。

沿革 IFC2x2 中的新实体。

图1展示了T形轮廓定义的参数。

T形轮廓
图1 — T形轮廓

位置

参数化轮廓定义了其自身的位置坐标系。基础坐标系由使用该轮廓定义的扫掠面积实体定义。它是以下对象的xy平面:

通过使用位置偏移,参数化轮廓可以居中定位(使用x、y偏移=0.),或相对于轮廓位于任何位置。

8.15.3.25.2 实体继承

8.15.3.25.3 特性

# 特性 类型 描述
IfcProfileDef (4)
1 ProfileType IfcProfileTypeEnum

定义此轮廓定义应解析成的几何类型,即曲线或曲面区域。如果是曲线,轮廓应由扫掠曲面引用;如果是区域,轮廓应由扫掠实体引用。

2 ProfileName OPTIONAL IfcLabel

轮廓的人类可读名称,例如根据标准轮廓表。如上所述,机器可读的标准轮廓名称应在 IfcExternalReference.ItemReference 中提供。

HasExternalReference SET [0:?] OF IfcExternalReferenceRelationship FOR RelatedResourceObjects

与轮廓关联的外部信息(例如库、分类或文档信息)的引用。

HasProperties SET [0:?] OF IfcProfileProperties FOR ProfileDefinition

轮廓的附加属性,例如机械属性。

IfcParameterizedProfileDef (1)
3 Position OPTIONAL IfcAxis2Placement2D

参数化轮廓定义的位置坐标系。如果未指定,则不应用平移和旋转。

点击显示 5 个隐藏的继承特性 点击隐藏 5 个继承特性
IfcTShapeProfileDef (9)
4 Depth IfcPositiveLengthMeasure

深度,见上图(= h)。

5 FlangeWidth IfcPositiveLengthMeasure

翼缘长度,见上图(= b)。

6 WebThickness IfcPositiveLengthMeasure

腹板的恒定壁厚(= ts)。

7 FlangeThickness IfcPositiveLengthMeasure

翼缘的恒定壁厚(= tg)。

8 FilletRadius OPTIONAL IfcNonNegativeLengthMeasure

根据上图所示的圆角半径(= r1)。

9 FlangeEdgeRadius OPTIONAL IfcNonNegativeLengthMeasure

根据上图所示的边缘半径(= r2)。

10 WebEdgeRadius OPTIONAL IfcNonNegativeLengthMeasure

根据上图所示的边缘半径(= r3)。

11 WebSlope OPTIONAL IfcPlaneAngleMeasure

轮廓腹板的斜率。

12 FlangeSlope OPTIONAL IfcPlaneAngleMeasure

轮廓翼缘的斜率。

表 8.15.3.25.B

8.15.3.25.4 形式化命题

名称 描述
ValidFlangeThickness

翼缘厚度应小于深度。

FlangeThickness < Depth
ValidWebThickness

腹板厚度应小于翼缘长度。

WebThickness < FlangeWidth
表 8.15.3.25.C

8.15.3.25.5 属性集

  • Pset_ProfileMechanical
    • MassPerLength(单位长度质量)
    • CrossSectionArea(横截面面积)
    • Perimeter(周长)
    • MinimumPlateThickness(最小板厚)
    • MaximumPlateThickness(最大板厚)
    • CentreOfGravityInX(X轴重心)
    • CentreOfGravityInY(Y轴重心)
    • ShearCentreZ(Z向剪切中心)
    • ShearCentreY(Y向剪切中心)
    • MomentOfInertiaY(Y轴惯性矩)
    • MomentOfInertiaZ(Z轴惯性矩)
    • MomentOfInertiaYZ(YZ轴惯性矩)
    • TorsionalConstantX(X轴扭转常数)
    • WarpingConstant(翘曲常数)
    • ShearDeformationAreaZ(Z向剪切变形面积)
    • ShearDeformationAreaY(Y向剪切变形面积)
    • MaximumSectionModulusY(最大Y向截面模量)
    • MinimumSectionModulusY(最小Y向截面模量)
    • MaximumSectionModulusZ(最大Z向截面模量)
    • MinimumSectionModulusZ(最小Z向截面模量)
    • TorsionalSectionModulus(扭转截面模量)
    • ShearAreaZ(Z向剪切面积)
    • ShearAreaY(Y向剪切面积)
    • PlasticShapeFactorY(塑性形状系数Y)
    • PlasticShapeFactorZ(塑性形状系数Z)

8.15.3.25.6 概念用法

概念 用法 描述
IfcProfileDef (1)
Property Sets for Profiles(剖面属性集) 通用用法

此概念可应用于以下资源

点击显示 1 个隐藏的继承概念 点击隐藏 1 个继承概念
表 8.15.3.25.D

8.15.3.25.7 形式化表示

ENTITY IfcTShapeProfileDef
 SUBTYPE OF (IfcParameterizedProfileDef);
	Depth : IfcPositiveLengthMeasure;
	FlangeWidth : IfcPositiveLengthMeasure;
	WebThickness : IfcPositiveLengthMeasure;
	FlangeThickness : IfcPositiveLengthMeasure;
	FilletRadius : OPTIONAL IfcNonNegativeLengthMeasure;
	FlangeEdgeRadius : OPTIONAL IfcNonNegativeLengthMeasure;
	WebEdgeRadius : OPTIONAL IfcNonNegativeLengthMeasure;
	WebSlope : OPTIONAL IfcPlaneAngleMeasure;
	FlangeSlope : OPTIONAL IfcPlaneAngleMeasure;
 WHERE
	ValidFlangeThickness : FlangeThickness < Depth;
	ValidWebThickness : WebThickness < FlangeWidth;
END_ENTITY;

8.15.3.25.8 参考